1 votes
82
IF the propagation delay csma/cd network is 750 bit times then what is the slot if the jamming signal is 50 bits?
0 votes
83
1 votes
84
Consider a celluar system having 2023 duplex channels to cover 1925 sq km and each cell area is 5 sq km for 7 cell reuse system.Compute system capacity.
0 votes
85
3 votes
86
Which of the following is not a valid multicast MAC address?$\textsf{01:00:5E:00:00:00}$$\textsf{01:00:5E:00:00:FF}$$\textsf{01:00:5E:00:FF:FF}$$\textsf{01:00:5E:FF:FF:FF...
0 votes
87
The bandwidth of a 'N' bit binary coded PCM signal for modulating a signal having bandwidth of f Hz isa. f/N Hz.b. fc. Nfd. N
0 votes
88
What is the meaning of processing time at source and destination? Under processing time what task happens?
1 votes
90
This is the IP address : 198.7.3.8now how to find its hostid and netid
0 votes
92
Which protocol is most appropriate for the situation described below . High Defnition Video streamingTCPUDPFTPSMTP
2 votes
93
A certain population of ALOHA users manages to generate $70$ request/sec. If the time is slotted in units of $50$ msec, then channel load would be$4.25$$3.5$$450$$350$
0 votes
94
0 votes
95
The network $198.78.41.0$ is aClass A networkClass B networkClass C networkClass D network
0 votes
97
0 votes
98
Find the type of error produced by the following C code.main() { in/*comment t x; floa/*comment*/t gate; }Lexical errorsyntax errorboth a) and b) None of these
0 votes
99
Associativity and precedence of operators is defined by grammar. So C should be right.Please help
0 votes
100
No of token generated? int main() { int *p; printf("%d", *p); }
0 votes
103
Recursive descent parsing is an example ofTop-down parsersBottom-up parsersPredictive parsersNone of the above
0 votes
107
Match the algorithms with their time complexities:$$\begin{array}{|l|l|}\hline \textbf{Algorithms} & \textbf{Time Complexity} \\\hline \text{P. Tower of Hanoi with $n$...
1 votes
108
0 votes
109
Ans is C can anybody justify why compilation error
0 votes
110
output of program:void function(int); void main() { function(3); } void function(int num){ if(num>0) { function( num); printf("%d",num); function( num); } }will the argum...