Questions

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 2310
Q:

Where does glycolysis take place?

A) Mitichondria B) Cytoplasm
C) Mitochondrial outer membrane D) None of above
 
Answer & Explanation Answer: B) Cytoplasm

Explanation:

"Glycolysis" means the splitting of glucose. The first step of the process occurs in the cytoplasm of the cell and yields a small amount of energy (measured in units of ATP) and two molecules of pyruvate.

The other steps occur in the mitochondria. It is an ongoing process as your cells have a constant need for energy.

Report Error

View Answer Report Error Discuss

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

3 2310
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 2309
Q:

What is Log Shipping?

Answer

Log shipping defines the process for automatically taking backup of the database and transaction files on a SQL Server and then restoring them on a standby/backup server. This keeps the two SQL Server instances in sync with each other. In case production server fails, users simply need to be pointed to the standby/backup server. Log shipping primarily consists of 3 operations:


Backup transaction logs of the Production server.


Copy these logs on the standby/backup server.


Restore the log on standby/backup server.

Report Error

View answer Workspace Report Error Discuss

2 2309
Q:

Who conquered Sind in 712 AD?

A) Arabs B) French
C) Greeks D) Mongols
 
Answer & Explanation Answer: A) Arabs

Explanation:

By 712 AD, Arabs conquered Sindh.

Report Error

View Answer Report Error Discuss

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

7 2309
Q:

The first attempt in printing was made in England by

A) James Watt B) Isaac Newton
C) William Caxton D) James Arkwright
 
Answer & Explanation Answer: C) William Caxton

Explanation:

The first attempt in printing was made in England by William Caxton.

 

The_first_attempt_in_printing_was_made_in_England_by1552110131.jpg image

 

William Caxton was an English merchant, diplomat, and writer. He is thought to be the first person to introduce a printing press into England, in 1476, and as a printer was the first English retailer of printed books.

Report Error

View Answer Report Error Discuss

Filed Under: World History
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2309
Q:

Which one of the following is the cause for a change in the season?

A) Earth’s Rotation and Revolution B) Earth’s Rotation
C) Earth’s Revolution D) None of the above
 
Answer & Explanation Answer: C) Earth’s Revolution

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2309
Q:

Which ocean takes up about half of the surface of the earth?

A) Southern B) Pacific
C) Atlantic D) Indian
 
Answer & Explanation Answer: B) Pacific

Explanation:

The Pacific Ocean is the largest and deepest of Earth's oceanic divisions. It extends from the Arctic Ocean in the north to the Southern Ocean in the south. We know that, Earth is made up of 70% of water and 30% of land. Pacific Ocean covers 1/3rd of the water on the Planet Earth.

Which_ocean_takes_up_about_half_of_the_surface_of_the_earth1560167440.jpg image

Report Error

View Answer Report Error Discuss

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

3 2309