TECHNICAL QUIZ (ROUND-2) assesses knowledge in programming and computer science fundamentals, such as data structures, algorithms, and C programming. It evaluates understanding of trees, binary search, variable naming, and basic output in C programs. Suitable for learners aiming to enhance technical skills.
VERTEX ,EDGES
PONTER, EDGES
LIST,VERTEX
PATH,VERTEX
ALL OF THE ABOVE
Rate this question:
* (asterisk)
| (pipeline)
- (hyphen)
-_(underscore)
None of the above
Rate this question:
Extern int a is declaration, int a = 20 is the definition
Int a = 20 is declaration, extern int a is the definition
Int a = 20 is definition, a is not defined
A is declared, a is not defined
Rate this question:
-1
1
0
Yes
No
Rate this question:
Ceil(1.66)
Floor(1.66)
Roundup(1.66)
Roundto(1.66)
None
Rate this question:
Ptr is array of pointers to 10 integers
Ptr is a pointer to an array of 10 integers
Ptr is an array of 10 integers
Ptr is an pointer to array
Rate this question:
Strchr()
Strrchr()
Strstr()
Strnset()
None
Rate this question:
Value of elements in array
First element of the array
Base address of the array
Address of the last element of array
Rate this question:
Infinite times
32767 times
65535 times
Till stack overflows
None
Rate this question:
Both are identical
No difference, except extern int fun(); is probably in another file
Int fun(); is overrided with extern int fun();
None of these
Rate this question:
I=4,j=0,k=4
I=5,j=0,k=4
I=4,j=0,k=5
I=5,j=0,k=5
None of the above
Rate this question:
LogN
N/2
N(N-1)/2
NlogN
None
Rate this question:
((((a+i)+j)+k)+l)
*(*(*(*(a+i)+j)+k)+l)
(((a+i)+j)+k+l)
((a+i)+j+k+l)
None of the above
Rate this question:
PATH OF THE TREE
LENGTH OF THE TREE
DEGREE OF THE TREE
ORDER OF THE TREE
NONE OF THE ABOVE
Rate this question:
X is a pointer
X is an array of three pointer
X is an array of three function pointers
Error in x declaration
Rate this question:
Returns a random number.
Returns a random number generator in the specified range.
returns a random number generator with a random value based on time.
Return a random number with a given seed value.
Rate this question:
Stdio.h
Stddef.h
Stdio.h and stddef.h
Math.h
None
Rate this question:
Rem = 3.14 % 2.1;
Rem = modf(3.14, 2.1);
Rem = fmod(3.14, 2.1);
Remainder cannot be obtain in floating point division.
Rate this question:
Quiz Review Timeline (Updated): Oct 4, 2023 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.