0 votes
1
which memory segment will share ???kindly provide the explaination
4 votes
2
An email contains a texual birthday greeting, a picture of a cake and a song. The order is not important. What is the content-type?Multipart/mixedMultipart/parallelMultip...
0 votes
3
Do we have to submit(How to submit) the Declaration / Undertaking – for OBC Candidates? I mean I understand that we have to submit the obc-ncl certificate but do we hav...
1 votes
5
how to solve this type of question plz explain
2 votes
6
0 votes
7
0 votes
8
1 votes
10
Where is fragmentation is done in ipv4 ?..(at source or router or ob both )where is segmentation is done in ipv4 ?(at source or router or ob both)
0 votes
12
In CRC, if the degree of Generator polynomial is n, then the number of bits in divisor is?
0 votes
14
what is actual meaning of recognition and enumeration in turing machine??
0 votes
15
3 votes
16
The subnet mask for a particular network is 255.255.252.0. Which of the following pairs ofIP addresses could belong to this network?A. 172.57.88.62 and 172.57.87.233B. 10...
0 votes
17
please explain how to start solving such circuital questions..I always get confused..plzz help someone asap.What will be the final output?
0 votes
18
is something missing in this question? if not please solve
0 votes
19
1 votes
20
0 votes
21
If L is Turing-recognizable. Then(a) L and ̅L must be decidable.(b) L must be decidable but ̅ L need not be.(c) Either L is decidable or ̅ L is not Turing recognizable...
1 votes
23
The following code fragment: int x, y= 2, z, a; x= (y* =2) + (z= a =y); printf(“%d”, x); (a) prints 8(b) prints 6(c) prints 6 or 8 depending on the compile...
0 votes
24
main() {static char a[3][4] = { "abcd", "efgh", "ijkl"};putchar( a); } a) compilation error b) run time errorc)garbage d) none of these
0 votes
25
What will be the output of this program?#include<stdio.h>int main(){typedef static int *i;int j;i a = &j;printf("%d", *a);return 0;}