basic JavaScript qs
Sr Software Engineer Interview Questions
71,625 sr software engineer interview questions shared by candidates
Data stucture and algo question combining hash, lists, sorting and logic, more on the real world application side of these things, than theory.
Round 1 Q1 Given a log file with list of tuples(TIMESTAMP, USER, PAGE_TYPE) where page type being the page visited. Form sequence of pages the user had visited and then find the most common sequence. The question was later changed to form triplets of sequences. e.g if the sequence is A->B->C->D->E->F, the triplet sequences would be A B C B C D D E F and then find the most common sequence.
1. Class A has variable a, Class B extends from A which has b, Class C extends from Class B which has c. Set values for those variables. Write a clone method which returns a deep copy. For example ClassA a = new ClassC(5); which will print 5,4,3 set by constructors in those classes. ClassA x = a.myClone(); x.print() should also print 5,4,3.
Write a web based system using Heroku and AWS SDK using Route53
They expecting us to write the code and how the oops concepts in practicle
Show a data structure for LRU cache.
Count amount of 1-bits in byte
Find all the islands (connected components) in a graph.
Given two arrays: arr1[0..m-1] and arr2[0..n-1]. Find whether arr2[] is a subset of arr1[] or not. Both the arrays are not in sorted order. It may be assumed that elements in both array are distinct.
Viewing 821 - 830 interview questions