Write is a binary search tree? Write an algo and tell complexity?
What is long in c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.
How much do coding jobs pay?
What is near, far and huge pointers? How many bytes are occupied by them?
What header file is needed for exit(); a) stdlib.h b) conio.h c) dos.h
What is the use of object in c++?
implement stack using stack.h headerfile functions
1 Answers Exilant, GMG, Subex, University,
What is the most useful programming language?
Explain how an exception handler is defined and invoked in a Program.
Is map ordered c++?
Explain the difference between 'operator new' and the 'new' operator?