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

      Cornix 10

      Is this your company?

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: Cornix 10 reviews | Cornix 10 jobs | Cornix 10 salaries | Cornix 10 benefits
      Cornix 10 interviewsCornix 10 Senior Backend Engineer interviewsCornix 10 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.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

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

      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
      KPMG
      3.6★Compensation and benefits
      avatar
      US Navy
      4.0★Compensation and benefits
      avatar
      Deloitte
      3.5★Compensation and benefits
      avatar
      Amazon
      3.7★Compensation and benefits

      Senior Backend Engineer Interview

      30 May 2023
      Anonymous interview candidate
      Tel Aviv-Yafo
      No offer
      Positive experience
      Average interview

      Application

      I applied through an employee referral. The process took 2 weeks. I interviewed at Cornix 10 (Tel Aviv-Yafo) in May 2023

      Interview

      I applied via a company employee that I know. The process took about 2 weeks, 1st Zoom is with the HR person, telling you about the company and the role and lets you ask some of your questions and asks you about the expected salary, took about 30 minutes. 2nd Zoom is the 1st technical interview with a Senior Developer of the company about 1.5 hours. A small talk about the company and the role and moving on to the tech part: Ask you about a project you implemented and a bit deep diving into it, I wasn't asked to draw the parts of my project but be ready to draw. Then, I was to implement a tech question.

      Interview questions [1]

      Question 1

      1. Tell about a project you did and how was implemented. 2. Given a String comprised out of all the chars possible (the string isn't necessarily long, but can contain all char types), return the number of removeLetter actions that would result in the input string to be valid. I'll explain: A "Valid String" is a string that each unique char in it has a count (number of appearances) which is a unique number. For example: given "abcaba", it's valid because 'a' appears 3 times, 'b' appears 2 times and 'c' appears once. In the contrary, "aabb" isn't valid because both 'a' & 'b' appears 2 times in the string. So the question is: implement a method in your lang, that would return the number of remove-letter actions that would convert an invalid string to a valid string. Given "aabb", the function will return 1 (because we can remove 'a' or 'b' and by that making the string valid).
      1 Answer