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

What is the currency of Japan?

A) yen B) dirham
C) yuan D) None of the above
 
Answer & Explanation Answer: A) yen

Explanation:

The currency of Japan is Japanese yen.

Report Error

View Answer Report Error Discuss

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

1 2304
Q:

Which Indian woman boxing player made the world record by winning the sixth World Championship gold medal in 2018?

A) Pinki Rani B) Sarjubala Devi
C) Mary Kom D) Harmanpreet Kaur
 
Answer & Explanation Answer: C) Mary Kom

Explanation:

Indian_woman_boxing_player_made_the_world_record_by_winning_the_sixth_World_Championship_gold_medal1543296993.jpg image

Chungneijang Mary Kom Hmangte, better known as Mary Kom is an Indian Olympic boxer from Manipur. She is the only woman to become World Amateur Boxing champion for a record six times, and the only woman boxer to have won a medal in each one of the seven world championships.

Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

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 propounded 'Deen-E-Llahi'?

A) Jahangir B) Akbar
C) Shah Jahan D) Humayun
 
Answer & Explanation Answer: B) Akbar

Explanation:

Mughal emperor, Abu'l-Fath Jalal ud-din Muhammad Akbar popularly known as Akbar propounded a syncretic religion called 'Din-i-ilahi' which literally means that "Religion of God".

akbar1533011882.jpg image

His intention in propounding this religion is to merge the best elements of the religions of his empire, and thereby reconcile the differences that divided his subjects.

Report Error

View Answer Report Error Discuss

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

4 2303
Q:

In a parliamentary system, from where are cabinet members drawn

A) Judicial branch B) Legislative branch
C) Executive branch D) All of the above
 
Answer & Explanation Answer: B) Legislative branch

Explanation:

In a parliamentary system, the members of the cabinet are drawn from the legislative branch.

Report Error

View Answer Report Error Discuss

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

5 2303
Q:

What was established by the Americans, the British and the Canadians at Bretton woods in 1944?

Answer

The International Monetary Fund and the international Bank for Reconstruction and development.

Report Error

View answer Workspace Report Error Discuss

0 2303
Q:

How to get dissertation introduction writing ideas

Answer

Most of the students do not know anything about the dissertation writing and the services.So always students are depending on the dissertation writing services.Students can get the dissertation introduction writing ideas from the dissertation writing services, this will benefit for your future.

Report Error

View answer Workspace Report Error Discuss

0 2302