How many hours would you say you need per week to be ready for university
Junior C Developer Interview Questions
186 junior c developer interview questions shared by candidates
Tips: - test is performed on codingame website ( check it out before applying to get familiar ) - 20 questions in total of type what is the output of presented program and algorithm problem solving - get your favorite compiler / linker ready - big note here : you cant copy paste code in IDE / editor from codegame website - 17 questions where you have 3 minutes to copy code by hand into your IDE / editor from website, compile it and link it and then again manually write output of code to output text box - program lengths are 30 -60 lines in ranges - practice fast typing beforehand - 3 problems of algorithmic type , 20 minutes to solve using IDE on codingame website
Shortest path in graph: /// /// graph is a function that accepts the node name, and int*. It returns the /// neighbors of the node and the length of the neighbors in the int* /// /// Name of start node /// Name of goal node /// /// The shortest path with format start->...->goal char *shortestPath(Inner *(*graph)(const char *, int *), const char *start, const char *goal) { // int neighborsLength; // Inner *neighbors = graph(start, &neighborsLength); // std::cout << "name: " << neighbors[0].name << neighbors[0].cost << " // length: " << neighborsLength << std::endl; std::cout << "name: " << // neighbors[1].name << neighbors[1].cost << " length: " << neighborsLength // << std::endl; // neighbors = graph(neighbors[0].name.c_str(), &neighborsLength); // std::cout << "name: " << neighbors[0].name << neighbors[0].cost << " // length: " << neighborsLength << std::endl; std::cout << "name: " << // neighbors[1].name << neighbors[1].cost << " length: " << neighborsLength // << std::endl;
What was your Bachelor's thesis about? If I gave you 9 numbers, from 1 to 10 and no repeated, how would you find which number is missing checking each number only once and without keeping track of which numbers you have already seen?
Entity Framework, oop, Dependency injection..
First: simple "logic" test that took less than 30 mins,contained a bunch of simple math problems. The second one took 4-8 hours. You had 3 problems: the first one asked you to create 5 classes that were derivated from a base, in the second one you had to debug some code and the third one asked you to upgrade that code in 4 steps
What I was doing on my previous job
How do you plan on meeting the hourly client billable hours totals for the week?
four main principles of object oriented programming lots of sql query questions
Would you prefer to be a tech lead or a team lead?
Viewing 121 - 130 interview questions