If (211)x = (152)8, then the value of base x is
Assuming all numbers in 2’s complement representation, which of the following numbers is divisible by 11111011
Which of the following internet services is operate at network layer ?
A source generates three symbols with probability 0.25, 0.25, 0.50 at a rate of 3000 symbols per second. Assuming independent generation of symbols, the most efficient source encoder would have average bit rate of
The angle between two vectors a = i + 2j – k and b = 2i + j + k is
Consider the following program
#include<stdio.h>
int main()
{
float a ;
int x = 6, y = 5;
a = x/y;
printf(“Value of a = %f\n”, a);
return 0;
}
The value printed for a is
For a binary search tree, which of the following holds?
Consider the following code segment
main ( )
{
int a = 5;
f (a, a);
print a;
}
f (int x, int y)
{
x --;
y = y + 15;
}
What will be printed if call by copy restore mechanism is used for passing parameters?The following C declaration
struct node {
int i ;
float j ;
} ;
struct node * S[10] ;
Define S to be
What would the following function return for the input x = 95 ?
int fun(int x)
{
if (x > 100)
return x – 10 ;
else
return fun (fun(x + 11))
}
Consider the following statements.
I. TCP connections are full duplex
II. TCP has no option for selective acknowledgement
III. TCP connections are message streamsIf a body gives out 109 electrons every second, how much time is required to get a total charge of 1C from it?