ADITI Company Programming Program

Q. What is the output of the program given below

#include
main()
{
char i=0;
for(;i>=0;i++) ;
printf("%dn",i);
}

Read Solution (Total 1)

ADITI Other Question

SECTION - COMPUTER AWARENESS

NOTE : The questions are of multiple choice format in the paper

1. What is the number of functions of a three variable boolean function?

2. Which is the most commonly used replacement algorithm?
Ans. LRU

3. Which memory management technique involves dividing the memory into fixed sized blocks?
Ans. Paging

4. What is video resolution ?

5. The processing speed of a microprocessor depends on _____?
Ans. data bus width
Q. What is the output of the following program

#include
main()
{
int i=0;
fork();
printf("%d",i++);
fork();
printf("%d",i++);
fork();
wait();
}