Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      NiCE

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: NiCE reviews | NiCE jobs | NiCE salaries | NiCE benefits
      NiCE interviewsNiCE Junior C# and .NET developer interviewsNiCE interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Centre
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy and Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" and logo are proprietary trademarks of Glassdoor LLC.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalised job recommendations and updates by starting your searches.

      Top companies for "Compensation and Benefits" near you

      avatar
      SAP
      3.9★Compensation and benefits
      avatar
      Capgemini
      3.7★Compensation and benefits
      avatar
      Salesforce
      4.4★Compensation and benefits
      avatar
      Thomson Reuters
      3.8★Compensation and benefits

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Junior C# and .NET developer Interview

      Jun 6, 2024
      Anonymous interview candidate
      Ra`ananna
      No offer
      Positive experience
      Average interview

      Application

      I applied online. The process took 1 day. I interviewed at NiCE (Ra`ananna) in Jun 2024

      Interview

      This was interview day at the company site in Raanana. The day was divided into 2 parts. The first part is a small exam with 4 questions(On paper) and the second part and the second part is a design question and an HR Interview. ( I failed in the first part, so don't i didn't was in the second part)

      Interview questions [4]

      Question 1

      class Program { static void Main(string[] args) { B obj = new B(); Console.ReadKey(); } } abstract class A { public A() { Console.WriteLine("This is the A class"); //calc(); } public abstract void calc(); } class B : A { public B() { Console.WriteLine("This is the B class"); } public override void calc() { Console.WriteLine("This is the abstract methode"); } } Questions: 1. What will be printed on the console? 2. what will be printed to the console if we remove this "//" before the calc() in the contractor of class A;
      1 Answer

      Question 2

      What will be printed to the Console at the end of this code? int global = 0; Thread t1 = new Thread(() => { int local = 0; while(global < 3) { local += 1; global += 1; } Console.WriteLine(local); }); Thread t2 = new Thread(() => { global += 1; }); t1.Start(); t2.Start();
      Answer question

      Question 3

      Describe a data sturcture that you can do: Get[x] by key in O(1), Set(x,y) by key in O(1), and setAll(y) by O(1) The setAll does not must really put the value at all the places, its just need to be seen like this(when you do get, you need to get the correct value)
      Answer question

      Question 4

      Write pseudo code for a method that gets a random number "x" and print all the numbers between 0 and x in a random order: Example for x = 7 => 61532740
      1 Answer