This test is designed to check the analytical, logical and computer programming skills of an individual.
Double
Int
Char
Word
Rate this question:
True
False
Rate this question:
Buffer
Array
Function
Rate this question:
True
False
Rate this question:
First in Few Out
Few In Few out
First In First Out
Few In First Out
Rate this question:
A is assinged t
A and t are equal
A is not equal to t
T is add to a
Rate this question:
Loop in loop
Nested
Double loops
Rate this question:
Array
Int
Stacks
Queues
Rate this question:
True
False
Rate this question:
An error you will never find
An error you find at the end when the program gives out a wrong value due to logic error
An error caused by language rules being broken.
An error due to user error
Rate this question:
Cin
Cout>>
Cout
Output>>
Rate this question:
Processor and memory
Complexity and capacity
Time and space
Data and space
Rate this question:
Counting microseconds
Counting the number of key operations
Counting the number of statements
Counting the kilobytes of algorithm
Rate this question:
Counting the maximum memory needed by the algorithm
Counting the minimum memory needed by the algorithm
Counting the average memory needed by the algorithm
Counting the maximum disk space needed by the algorithm
Rate this question:
Best case
Worst case
Average case
Null case
Rate this question:
Item is somewhere in the middle of the array
Item is not in the array at all
Item is the last element in the array
Item is the last element in the array or is not there at all
Rate this question:
When Item is somewhere in the middle of the array
When Item is not in the array at all
When Item is the last element in the array
When Item is the last element in the array or is not there at all
Rate this question:
Much more complicated to analyze than that of worst case
Much more simpler to analyze than that of worst case
Sometimes more complicated and some other times simpler than that of worst case
None or above
Rate this question:
O(n)
O(log n)
O(n2)
O(n log n)
Rate this question:
O(n)
O(log )
O(n2)
O(n log n)
O(n)
O(log n)
O(n2)
O(n log n)
Rate this question:
O(n)
O(log n)
O(n2)
O(n log n)
Rate this question:
Internal change
Inter-module change
Side effect
Side-module update
Rate this question:
Arrays
Linked lists
Both of above
None of above
Rate this question:
Trees
Graphs
Arrays
None of above
Rate this question:
Sorting
Merging
Inserting
Traversal
Rate this question:
Traversal
Search
Sort
None of above
Rate this question:
For relatively permanent collections of data
For the size of the structure and the data in the structure are constantly changing
For both of above situation
For none of above situation
Rate this question:
For relatively permanent collections of data
for the size of the structure and the data in the structure are constantly changing
For both of above situation
For none of above situation
Rate this question:
The name of array
the data type of array
The first data from the set to be stored
The index set of the array
Rate this question:
By this way computer can keep track only the address of the first element and the addresses of other elements can be calculated
the architecture of computer memory does not allow arrays to store other than serially
Both of above
None of above
Rate this question:
1,2,3,4
1,3,4,5
2,4,5,6
3,4,5,6
Rate this question:
1,2,4
1,3,6
3,5
5 only
New Inner(); //At line 5
New Inner(); //At line 10
New ot.Inner(); //At line 10
New Outer.Inner(); //At line 10
Rate this question:
Float[ ] f = new float(3);
Float f2[ ] = new float[ ];
Float[ ]f1 = new float[3];
Float f3[ ] = new float[3];
Rate this question:
True
False
Rate this question:
Small
Tiny
Huge
Compilation fails
Rate this question:
0
7
8
14
Rate this question:
AC
BC
ACD
ABCD
Rate this question:
Compilation fails
"odd" will always be output.
"even" will always be output.
"odd" will be output for odd values of x, and "even" for even values.
Rate this question:
True
False
Rate this question:
Java.util.ArrayList
Java.util.LinkedHashMap
Java.util.HashMap
Java.util.TreeMap
Rate this question:
No statement required.
Import java.io.*;
Import java.io.PrintWriter;
#include java.io.*;
Rate this question:
Constant
Null
Default
Implement
Rate this question:
True
False
Rate this question:
Thread t = new Thread(X);
Thread t = new Thread(X); t.start();
X run = new X(); Thread t = new Thread(run); t.start();
Thread t = new Thread(); x.run();
Rate this question:
1,2 and 4
2,5 and 6
3,4 and 7
4,5 and 7
Quiz Review Timeline (Updated): May 29, 2024 +
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.