Introduce yourself. OOPS Concepts and about my project.
Software Developers Interview Questions
96,344 software developers interview questions shared by candidates
how can I recognize crash from set of frames from car
given a matrix (two-dimentional array), a row index i, column index j, width and lengh, return the average of a single position in the sub-matrix of size width*length starting at (i,j)
1) What does the following code do? 2) What changes would you make to improve the code (not regarding performance)? void func(int array[ARRAY_SIZE]) { int p = 0; for (int r = 0; r < 4; r++) { for (int i = p; i < ARRAY_SIZE; i++) { if (array[i] % 5 == r) { if (i != p) { int temp = array[p]; array[p] = array[i]; array[i] = temp; } p++; } } } }
Introduce yourself
How many layer are there in OSI model
Find the Max & min number in array
Reverse alternate levels of binary tree
Depth of a binary search tree ? linkedlist traversal type and string based some.
write a code to find all the child node in the tree
Viewing 2901 - 2910 interview questions