What is your experience with embedded systems?
Engineering Intern Interview Questions
56,373 engineering intern interview questions shared by candidates
Java code to make a remote http call to an open NASA API and receive some data, business logic to play with data, write code in online coding tool.
use mutex and semaphore to implement producer-consumer problem
what is your sleeping hours?
Signed a non-disclosure agreement so can't give exact questions. Though they're pretty standard interview questions based on Data Structures, String manipulations etc. My best advice would be think about what you would like to ask the interviewer. I totally forgot to prepare questions and I felt like they were waiting for me to ask them something.
explain binary search, running time, when is it advantageous
Describe the project on your resume
find the smallest node in BST that falls into a given range find intersections of two arrays
Given a list of words and a list of letters return the words of maximum length which can be formed with those letters. Example Input: words: ["abc", "acbb", "caab", "xyz"] letters: ['a' 'c', 'a', 'x', 'b', 'b', 'c'] Output: ["acbb", "caab"]
You are building a house. You hire multiple contractors to finish your house. Each person has a list of tasks they have to finish and each depends on other task(s) being finished. Example: Fusebox has to be installed before wiring can you convert their tasks into a single ordered list? Elevator -> Move in Fusebox -> Wiring Fusebox, Wiring -> Lamps Wiring -> Elevator Expected output: Fusebox, Wiring, Lamps, Elevator, Move In class Task { string TaskName Set<string> DependsOnTaskName } Personal Note. I thing the code Set<string> is tricky I thing the interviewer is expecting that you propose a code refactor, change it to a Set<Task>
Viewing 611 - 620 interview questions