Some sequencing questions in reasoning section.
Development Engineer Interview Questions
37,106 development engineer interview questions shared by candidates
NDA
given an array of lenght 2n+2 in which every number except for two numbers repeat twice each.. and we have to figure out what they are.
Second Round: This was a bit difficult. The question is to generate sample math problems(additions) for a 8th grade student and the results should be stored in such a way that they can be printed when required. Sample problem is 7+8=_____ The constraints are:- 1) The numbers that are to be added should be <=9 2) The result should be <=17
Pretend that an end user is providing you with input. In this case, it's a math equation, such as (3+2)*4-1. Parse the input and display the answer.
The general approach problem was: search for phone numbers in 50,000 files. This is a one time need. You have 2 days.
Q: forgot the specifics but there were many questions
leadership principle questions
Write a function that accepts an array of tickets, where ticket has format [source: string, destination: string] and returns comma separated countries in order of visiting. function getRoute(tickets){ return 'USA,BRA,UAE,JPN,PHL'; // implement logic here } const result = getRoute([['JPN', 'PHL'], ['BRA', 'UAE'], ['USA', 'BRA'], ['UAE', 'JPN']]); console.log(result); Example: Tickets: [["JPN", "PHL"], ["BRA", "UAE"], ["USA", "BRA"], ["UAE", "JPN"]] Result: "USA, BRA, UAE, JPN, PHL
Many data structure and algorithmic questions
Viewing 651 - 660 interview questions