Introduce yourself. OOPS Concepts and about my project.
Software Developer Interviews
Software Developer Interview Questions
Software development is an in-demand career path, and it's also a job that can provide opportunities for high earnings and professional fulfillment. When interviewing for software developer positions, you'll likely face questions about your hard and soft skills and how you manage projects efficiently.
Top Software Developer Interview Questions & How to Answer
Question #1: What type of software development do you currently do?
Question #2: Describe a development issue you faced and how you solved it.
Question #3: How do you handle the QA process?
96,343 software developer 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