Which of the following regex states the character set of FORTRAN?
Which file sets the Unix environment for the user when the user logs into his HOME directory?
1 Crore+ students have signed up on EduRev. Have you? Download the App |
Which programming language is called the mother of programming languages?
Which of the following is not a computer language?
I. C++
II. Java
III. Linux
Consider the following C declaration
struct {
short s[5];
union {
float y;
long z;
}u;
}t;
Assume that objects of type short, float and long occupy 2 bytes, 4 bytes and 8 bytes, respectively. The memory requirement for variable t, ignoring alignment considerations, is
Which of the following sorting algorithms can be used to sort a random linked list with minimum time complexity?
Which of the following is true about linked list implementation of stack?
Suppose a circular queue of capacity (n – 1) elements is implemented with an array of n elements. Assume that the insertion and deletion operation are carried out using REAR and FRONT as array index variables, respectively. Initially, REAR = FRONT = 0. The conditions to detect queue full and queue empty are
Suppose the numbers 7, 5, 1, 8, 3, 6, 0, 9, 4, 2 are inserted in that order into an initially empty binary search tree. The binary search tree uses the usual ordering on natural numbers. What is the in-order traversal sequence of the resultant tree?
55 docs|215 tests
|
55 docs|215 tests
|