|
2.multi cast addressing range...
3.subnet was given how many computer can be connected
??? 255.255.255.242 ??
4.RS232C binary 0 ---- +4v (+ve)..
5.socket programming --- select (not related to
socket system calls)
6.HDLc --- a) GO back n b) Go back n-1 c)select
repeat n d)none of the above..
7.piggy backing --- acknowledgements..
8.ATM -- basic question.
9.Max no. of outstanding acknowledgements...
10.int a;
static int a;
int fun() { return a;}
static int fun() { return a; }
which of the above 2 statements can't exist in the
same file...
11.some program
main()
{
extern int i;
print i;
}
ans ) linker error..
12.Advantage of digital over analog signal ??
13.study digital modulation techniques..
int j=3;
int *p=&j;
printf("%d %d", *p++,++*p);
it will not increment j value as ++ is done first
on p before *, so address gets incremented and
garbage value will be there
14.Which is non-deterministic structure a)ethernet
b)802.4 c) 802.5 d)none ans)ethernet check..
15.3 bits on size of structures...
16.Linux --- memory model a) small b)hughe c) flat
d)none. see..
17.Which one does not involve direct recursion..
a) backtracking
b) divide and conquer
c) dynamic programming
d) none of the above..
18. sort time complexity based on
a) No of comparisions
|
|