When a web page loads, what gets loaded first, the javascript or the html?
Software Engineer 1 Interview Questions
372 software engineer 1 interview questions shared by candidates
Given two sequences pushed and popped with distinct values, return true if and only if this could have been the result of a sequence of push and pop operations on an initially empty stack. Example 1: Input: pushed = [1,2,3,4,5], popped = [4,5,3,2,1] Output: true Explanation: We might do the following sequence: push(1), push(2), push(3), push(4), pop() -> 4, push(5), pop() -> 5, pop() -> 3, pop() -> 2, pop() -> 1
Array question in which we have to find the missing number and print it in a number sequence.
Basic concepts of Object Oriented Programming.
Difference between statically and dynamically typed languages
They tested me on problem solving because I know Java and c ,but their requirement was c++.They asked some questions on arrays , strings ,bfs ,DFS , sortings etc..They want applications of data structures and algorithms,not implementations.
a situation where u faced a major problem and how u tackled it?
Description of life cycle hooks in angular
Q: What is a time you had to take a risk?
They asked me to solve the “Container With Most Water” problem and explain my approach.
Viewing 11 - 20 interview questions