Why can't you put a struct of two ints into std::map and how can you fix it
Junior C Entwickler Interview Questions
40 junior c entwickler interview questions shared by candidates
Single coding question with 4 hours to complete
What is your favorite programming language? Why is it your favorite?
What is your "ideal boss"?
What web frameworks and technologies you are acquainted to?
Recursive Method and OOP Trivia
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;
Would you prefer to be a tech lead or a team lead?
What did you do before software development? Which programming languages do you know? In which programming language do you feel the most confident? Which frameworks do you use or are you familiar with?
Q: What is an abstract class?
Viewing 21 - 30 interview questions