A scenario was given where one should choose between work and family.
Software Junior Interview Questions
12,103 software junior interview questions shared by candidates
Implement LRU cache using data structures
What super could you have if you could pick any?
Describe a data structure that would be used for a real life example situation.
Why is man hole circle?
Given an index of an open parentheses, find the proper closed parentheses index number and return it.
How can you join two tables in SQL
We have some input that describes the steps of a workflow. The input consists of pairs of steps, each one indicating that one step must be completed before another. For example, in sample input 1, "clean" must occur before "build" and "build" must occur before "link". The input can occur in any order. We want to write a function to separate a given workflow's steps into multiple stages in such a way that all the steps in each individual stage can run at the same time. The function should return a list of lists. In which each list represents one stage. Each step should run in the earliest possible stage. Sample Input 1: precursor_steps = [ ["clean", "build"], ["metadata", "binary"], ["build", "link"], ["link","binary"], ["clean", "metadata"], ["build","resources"] ] Sample Output: [ ["clean"], ["build", "metadata"], ["resources","link"], ["binary"] ]
Asked about HTTP, what happens when you go to a website, cookies, caching, XML, Network Developer tools, CSS methods
Do you have any experience with Linux?
Viewing 861 - 870 interview questions