How many days experience do u have? Why u quit your previous job? Do u need sponsorship for this job?
Junior Designer Interview Questions
50,327 junior designer interview questions shared by candidates
How can you join two tables in SQL
Quem sou eu?
Porque devemos te contratar?
Qual a minha formação.
O que você faz para não perder a concentração no que está fazendo?
Qual a melhor coisa a se fazer quando se quer aumentar o desempenho entre o acesso a um banco de dados relacional
Questões técnicas sobre testes automatizados.
Por que você acha que devo te contratar, uma vez que não tem experiência?
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"] ]
Viewing 2871 - 2880 interview questions