Questions

Q:

What is Mail Gateway

Answer

It is a system that performs a protocol translation between different electronic mail delivery protocols

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2305
Q:

What goes Up and Down without Moving ?

A) Balloon B) Temperature
C) Lift D) Rain
 
Answer & Explanation Answer: B) Temperature

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Word Puzzles
Exam Prep: Bank Exams

19 2304
Q:

What is CPU Scheduler?

Answer

Selects from among the processes in memory that are ready to execute, and allocates the CPU to one of them. CPU scheduling decisions may take place when a process: 1.Switches from running to waiting state. 2.Switches from running to ready state. 3.Switches from waiting to ready. 4.Terminates. Scheduling under 1 and 4 is non-preemptive. All other scheduling is preemptive.

Report Error

View answer Workspace Report Error Discuss

2 2304
Q:

Write a program to generate the Fibonacci series in c?

Answer

 #include<stdio.h>
int main(){
    int k,r;
    long int i=0l,j=1,f;

    //Taking maximum numbers form user
    printf("Enter the number range:");
    scanf("%d",&r);

    printf("FIBONACCI SERIES: ");
    printf("%ld %ld",i,j); //printing firts two values.

    for(k=2;k<r;k++){
         f=i+j;
         i=j;
         j=f;
         printf(" %ld",j);
    }
 
    return 0;
}

Sample output:
Enter the number range: 15
FIBONACCI SERIES: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2303
Q:

Who is the founder of the Indian Premier League (IPL)?

A) N. Srinivasan B) Samir Modi
C) Rajeev Shukla D) Lalit Modi
 
Answer & Explanation Answer: D) Lalit Modi

Explanation:

The founder of the Indian Premier League (IPL) is Lalit Modi.

Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

3 2303
Q:

A solution that is hypotonic to a cell has

A) more water molecules surrounding the cell than inside the cell B) more water molecules inside the cell than outside the cell
C) equal water molecules inside and outside the cell D) None of the above
 
Answer & Explanation Answer: A) more water molecules surrounding the cell than inside the cell

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

1 2303
Q:

Economics is the study of how society manages its

A) Limited resources & limited wants B) Unlimited wants & unlimited resources
C) Limited wants & unlimited resources D) Limited resources & unlimited wants
 
Answer & Explanation Answer: C) Limited wants & unlimited resources

Explanation:

Economics is the study of how society manages its scarce resources i.e, Limited wants & unlimited resources.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2302
Q:

The headquaters of food and agriculture organisation is in

A) Paris B) Rome
C) Madrid D) Washington
 
Answer & Explanation Answer: B) Rome

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

0 2302