Recent activity by Anjali_aspirant

2 answers
2
Match the following with respect to various memory management algorithms :$\begin{array}{clcl} & \textbf{List-I} & & \textbf{List-II} \\ \text{(a)} & \text{Demand pagin...
1 answer
7
What will be the output of the following segment of the program?main() { char *s=”hello world”; int i=7; printf(“%, *s, i, s); }syntax errorhello whello...
1 answer
8
Match the following :$\begin{array} {} \text{a.}& \text{Context sensitive language} & \text{i.} & \text{Deterministic finite automation} \\ \text{b.}& \text{Regular gram...
2 answers
9
Choose the correct answer and explain also why ?What is a Flip Flop a)A Binary cell capable of storing one bit informationb)An analog device capable of giving the synchro...
1 answer
10
#include<stdio.h>int sum(int,int);main(){int res = sum(10,20);}int sum(int n1,int n2){return(n1+n2);}
1 answer
11
#include<stdio.h #include<math.h int main(){ int M_PI=25; printf("%d",M_PI); return 0; }Run Time ErrorCompile Time Error25Gargabe value
1 answer
13
Convert 11012 to corresponding excess-3 binary number.(A) 10000(B) 10110 10110(C) 100110(D) 01000110
2 answers
14
The register or main memory location which contains the effective address of the operand is known aspointerspecial locationindexed registerNone of the above
2 answers
17
Q:which of the following can run in parallel on different processors in a multiprocessorsa)user level thread b)kernel level thread c)processesd) processes and kernel leve...
1 answer
19
S 0S1S >0SS >S1S >0THE LANGUAGE GENERATED BY THIS GRAMMAR IS_____?A. regular languageB. Context free languageC. Context sensitive languageD. Recursively enumerable lan...
4 answers
20
The output of the following program ismain() { static int x[] = {1,2,3,4,5,6,7,8} int i; for (i=2; i<6; ++i) x[x[i]]=x[i]; for (i=0; i<8; ++i) printf("%d", x[i]); }1 2 3 ...
2 answers
21
Please Tell me where I can find Gate-2017 official syllabus .and please guide me how to prepare.
1 answer
22
To find out the Eigen values we put the |A-&#8907;I | =0 why we put the determinant =0 .Is there any specific reason For this
3 answers
24
How many relations are reflexive or symmetric on set of n element?
1 answer
25
Please explain the dearrangement concept with example
1 answer
26
main () { struct xx { int x = 3; char name[] = "hello"; }; struct xx *s; printf("%d", s->x); printf("%s", s->name); }The output is :3hello104ello104helloCompiler error
3 answers
28
3 answers
30
Which of the following is a valid word of the language (1*(01*01*)*) U (0*(10*10*)*) ?101100101011010101010000101010000001010001010