Take home challenge
Sr Engineer Interview Questions
113,933 sr engineer interview questions shared by candidates
Why do you want to move - You have a perfect job already!
A movie theatre sells the three concession stand items listed below: · Popcorn = $3 · Snickers = $4 (or five for the price of three) · Soda = $2 Implement a web application for the movie theatre that allows a user to add the above items to a shopping cart and calculates the total for the given collection of items. For example, the following basket should total up to $23. · 3x Popcorn · 5x Snickers · 1x Soda Deliver your solution as a web application using a modern client-side framework such as Angular, Ember, Backbone, etc. Your solution should be able to run in Chrome.
how to check sum of two elements in a given array of integers equal to a particular number K.
1. Find duplicate files in a folder 2. Display time on the screen as a digital clock
How would you implement capturing a bit stream of input coming in from a device in Java?
Form a maximum number from given list of integer array.
/* Write a query to find all duplicate jobs in the People table */ select count(*) from People p1 join People p2 on p1.Job = p2.job and p1.FirstName <> p2.FirstName; /* Write a query to find all duplicate FirstName, and Job values in the People table and number of duplicates */ with cte as( select row_number() over(order by FirstName, job) as num, FirstName, job from People ) select count(*) from cte p1 join cte p2 on p1.Job = p2.job and p1.FirstName = p2.FirstName and p1.num <> p2.num; /* Write a query to find all duplicate First Names with different jobs in the People table */ select p1.FirstName from People p1 join People p2 on p1.Job < p2.job and p1.FirstName = p2.FirstName;
Since you've quit your previous job, do you consider yourself jobless?
If you're only given the data without knowing anything about the dataset, how would build a machine learning model from it?
Viewing 561 - 570 interview questions