about my projects and one question on programming
C Software Interview Questions
5,483 c software interview questions shared by candidates
Hands On Coding Questions were asked
Tell me about yourself ? Oops concepts
Implement a parenthesis, bracket and brace validator.
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;
3. HR Round Project Discussion Company-related discussion
Was ist Dependency Injection und wofür wird es genutzt
General object oriented programming questions, such as as “what’s encapsulation, function overloading”. Some questions pertaining to C, such as “what’s the difference between structs and unions”, “where does execution start in a C program”. Then finally some basic Linux command line questions, “how to create files”, “how to check system resources”, “difference between grep and egrep”. If you use Linux and know C/C++ you will cruise through the first 2 rounds.
In the programming round, I encountered a question that required me to join three SQL tables and use a GROUP BY clause. This was followed by a programming question that involved data structures like matrices and arrays. Finally, there was a question that tested my knowledge of front-end web technologies, specifically HTML, CSS, and JavaScript.
CODING ROUND->sql join queries HR ROUND->SECENERIO BASED QUESTIONS
Viewing 3581 - 3590 interview questions