Which of the following statements is/are incorrect?
Which of the following computer language is used for artificial intelligence?
Which one of the following is not correct when we define either a class that does not implement either a mathematical entity like a matrix or a complex number or a low level type such as linked list?
Consider the following code.
Consider the following pseudo-code fragment, where a and b are integer variables that have been initialized: /* Pre-conditions : (a > 1 ∧ a < b) */ /* Assume that overflow never occurs */ int x = 0; int p = 1; while (p < b) { p = p * a; x = x + 1; } When the while loop terminates, what will be the value of x in terms of a and b ?
When we perform in order traversal on a binary tree, we get the ascending order array. The tree is:
When a circular queue is implemented in an array of the following condition holds when there is only one element in the queue?
What is the sequence of nodes when applying in-order traversal on the binary tree given below?
Ads