O que você faz para não perder a concentração no que está fazendo?
Junior Programmer Analyst Interview Questions
22,745 junior programmer analyst interview questions shared by candidates
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"] ]
Previous experiences in video game industry?
Asked about HTTP, what happens when you go to a website, cookies, caching, XML, Network Developer tools, CSS methods
Can you explain how a REST API works, and how you would create one using Python?Can you explain how a REST API works, and how you would create one using Python?
Do you have any experience with Linux?
Tell me about yourself and how you got into software engineering.
I want to get a sense of how you learn and research a new skill or topic. Please share your screen and show me and talk through how you would answer the following question: "How many satellites are currently orbiting the earth?"
Oque você sabe sobre o software
Function taking a list of numbers, had to figure out how many triplets of numbers were even.
Viewing 1611 - 1620 interview questions