Nuance Communications | 1.2 yr Exp | Feb 2021 | Pune | Reject
Anonymous User
691

The first round was with hiring manager with some behavioural questions.
The technical interview

  1. Implement function to read field inside a nested object:
const obj =
   				 { 
   					 a: {
   							b: {
   								  c: {
   									  d: {
   											  e: "Yes"
   									  }
   								  }
   							 }
   						}
   		 }

console.log(read (obj ,"a.b.c.d.e") )
// Result : Yes
  1. Write a method sum which gives the following output
    sum('2','3') // Outputs 5
    console.log(sum (2),(3))

    Subjective Questions

    1. What are 5 http code responses used for
    2. When to use post and put as an http response
    3. What is the result of 5 +2 + "7"
    4. Difference between local and session storage.
Comments (0)