How would you implement a stack in Java?
Desenvolvedor De Software Junior Interview Questions
4,394 desenvolvedor de software junior interview questions shared by candidates
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;
MCQ round 40 question 20 minute
Self intro About project Question related to project SQL queries What is variable Diff btw c and Java Data types Can a number is assigned to string.Then what is the need of integer How to free up space Can a variable declared outside function used inside it Will u work if given a technology which is new to you Willing to relocate Work in shifts Do you have any questions
Collection Framework OOP's example of each priciples Living coding
Why do you want to work here? What is an api? What is MySQL? Tell me about yourself?
1) reverse a string 2) remove the duplicates in an sorted array. 3) sort array of objects 4) filter the array based on a condition.
They asked to reverse a linked list(leetcode easy), and one more problem such as longest substring such that it has no repeating character, it was supposed to be solved in O(N).
"Do you have experience in Java and Angular"
FizzBuzz problem and SQL problem for codility. Three lion three zebra river bank problem for technical round in addition to personality questions
Viewing 2871 - 2880 interview questions