Basic Hr and Tr questions.
C Interview Questions
5,483 c interview questions shared by candidates
Q. Introduce yourself Q. What projects you made? Q. Can you show your projects? Q. What is SQL (some commands)? Q. Write a program ( Easy one)
basic aptitudes (profit loss,probability )etc basic program(swap,palindrom)
Introduce yourself, your educational and family background
I do not remember the questions
about my projects and one question on programming
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;
Viewing 3581 - 3590 interview questions