Tip 1 : Must know basic concepts of JavaScript
Tip 2 : Be SQL proficient
Tip 3 : Practice array questions
Tip 1 : Modify according to the job description
Tip 2 : Must know everything that you write in your resume
SQL, javascript pseudocodes
What will be the output of the following JavaScript code? var a= 0; var b = 0; while (a < 3) { a++; b += a; console.log(b); }
a) 135 b) 123 c) 013 d) 01
Tip 1: Do practice JavaScript pseudocodes
Tip 2: Do practice SQL queries
It was a online technical interview. There were two interviewers from Uber. They asked five coding questions easy to hard. The interview was for forty-five minutes.
SQL query had missing syntax and some errors which I had to find and solve
Tip 1: Practice array questions
Tip 2: Practice SQL queries
Tip 3: Revise JavaScript concepts
[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.
Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?