How to implement a calculator?
Software Development Engineer Interview Questions
32,863 software development engineer interview questions shared by candidates
int main() { int i = 3; switch (i & 1) { case EVEN: printf("Even"); break; case ODD: printf("Odd"); break; default: printf("Default"); } return 0; }
Phone screening was the most difficult for me. You need to code on a shared document and discuss what you are doing by asking relevant questions and thinking out loud.
GIVEN: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Sample Title</title> </head> <body> <div class="wrapper"> <div>A</div> <div>B</div> <div>C</div> </div> </body> USING CSS: // Make a 3 column layout that is: // • Is the full width of the page // • Has even width columns // • Gutter space in between (width doesn't matter, just an even gap between each is fine.) // • Responsive. Stack the columns on displays narrower than 320px // For a challenge try: // • Make the center column wider than the outer two. // • Make the first column (A) appear farthest too the right- without changing the markup order // // Browser should look like this: // ------------- // |A |B |C | // | | | | // | | | | // | | | | // ------------- //
Merge intervals.
1. What was a good experiences you get for a difficult situation in a previous job? 2. What would you change if you have the opportunity to come back to resolve that problem? 3. What did you learn for that experience?
Questions based on Resume and questions from our syllabus
Determine elements ordering of Kindle feature requests to return given the top requests, possible features, and feature requests.
Asked about times I'd messed up and how I'd dealt with it and learned from it.
What is an abstract class?
Viewing 2491 - 2500 interview questions