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

      Zehn Solutions

      Is this your company?

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: Zehn Solutions reviews | Zehn Solutions jobs | Zehn Solutions salaries | Zehn Solutions benefits
      Zehn Solutions interviewsZehn Solutions Sr React Native Developer interviewsZehn Solutions 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
      Amazon
      3.7★Compensation and benefits
      avatar
      TD
      3.6★Compensation and benefits
      avatar
      RBC
      3.6★Compensation and benefits
      avatar
      Google
      4.5★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.

      Sr React Native Developer Interview

      Mar 13, 2025
      Anonymous interview candidate
      Nāgpur, Maharashtra
      No offer
      Positive experience
      Difficult interview

      Application

      I applied online. The process took 2 days. I interviewed at Zehn Solutions (Nāgpur, Maharashtra) in Mar 2025

      Interview

      I have applied threw linkedIn and get call from HR and she schedule my interview 1st Javascript Coding round 2nd technical interview. Please use Skype as they conduct interview on it and if you do not have so asked HR to share google meet link

      Interview questions [4]

      Question 1

      Each First char of string Should be capital Input :- i am chirag Output :- I Am Chirag
      1 Answer

      Question 2

      Write a javascript code of sort array without inbuilt functions
      1 Answer

      Question 3

      Write a javascript program without build in function armstrong number
      1 Answer

      Question 4

      1. const shape = { radius: 10, diameter() { return this.radius * 2; }, perimeter: () => 2 * Math.PI * this.radius, }; console.log(shape.diameter());// console.log(shape.perimeter());//
20 NaN 
let obj = { x: 2, getX: function() { setTimeout(() => console.log('a'), 0);// new Promise( res => res(1)).then(v => console.log(v));// setTimeout(() => console.log('b'), 0);// } } obj.getX();

o/p :- promise , first SetTimeOut and then second SetTimeOut :- 1,a,b



var a = 10; function abc(){ console.log(a);// var a = 20; console.log(a);// } console.log(a);// abc();//


10
10, error can not redeclare a as it is global scoped

10 undefined 20 


var a = {'key': 100}; var b = [] b[a] = 90; console.log(b);//

[object Object]: 90 var a = 50; var b = { name : 'abc' }; function abc(a,b){ console.log(a,b);// b.name = 'cde'; console.log(a,b);// } abc();// abc(a,b);// console.log(a,b);//

50, { name : 'abc' } -> 50, { name : ‘c’de }
50, { name : 'abc' } -> 50, { name : ‘c’de }
50, { name : 'abc' }


undefined undefined undefined undefined 50 { name: 'abc' } 50 { name: 'cde' } 50 { name: 'cde' } 

function foo() { let a = b = 0; a++; return a; } foo(); console.log(typeof a); // console.log(typeof b); //

1
undefined number 

 let a =10 { var a = 20 } console.log(a);//
SyntaxError: Identifier 'a' has already been declared
      Answer question