Skip to content
SDE SHEET - A Complete Guide for SDE Preparation
What is SDE Sheet?SDE Sheet is a list of the most important topics or the most popular questions that are asked in the Software Development Engineer Interviews.How is this...Read More
Suppose a, b, c and d are int variables. For ternary operator in C ( ? : ), pick the best statement. (A) a>b ?… Read More
For the following “typedef” in C, pick the best statement typedef int INT, *INTPTR, ONEDARR[10], TWODARR[10][10]; (A) It will cause compile error because typedef is… Read More
“typedef” in C basically works as an alias. Which of the following is correct for “typedef”? (A) typedef can be used to alias compound data… Read More
In a C program, following variables are defined: float      x = 2.17; double   y = 2.17; long double z = 2.17; Which of the following… Read More
What’s the meaning of following declaration in C language? int (*p)[5]; (A) It will result in compile error because there shouldn’t be any parenthesis i.e.… Read More
Assuming int size is 4 bytes, what is going to happen when we compile and run the following program?   C #include “stdio.h” int main() {… Read More
Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down… Read More
An online test(2 hours) which has two sections. They asked 16 questions in the first section (20 minutes) which were objective. It consisted of questions… Read More
A Pythagorean triplet is a set of three positive integers a, b and c such that a2 + b2 = c2. Given a limit, generate… Read More
This was an on-campus recruitment process.There were 4 rounds. Round:1 This was the CV shortlisting round.They didn’t disclose the shortlisting criteria.For full time hiring 30… Read More
Initial round was CV shortlisting. They didn’t declare any criteria.Just selected 50 random CV’s I guess. I guess i was lucky to get through this… Read More
Round-1 General aptitude, verbal, technical java questions Round – 2- programming round Custom Exception Demaged Gift-Logic Encryption-IO Inheritance and Overriding-OOPS Runnable Thread Vowel Counter and… Read More
First Round: Apti + technical + coding (1hr 30mins) Multiple Choice Questions: 19 MCQs, consisting of some output questions, conceptual questions of DS, OS, also… Read More
Given an array of distinct integers, find if there are two pairs (a, b) and (c, d) such that a+b = c+d, and a, b,… Read More
If the sum of two numbers is 13 and the sum of their square is 85. Find the numbers? (A) 6 & 7 (B) 5… Read More