Questions

Q:

World Wrestling Championship has recently begun at

A) Hungary B) Poland
C) Belgium D) None of the above
 
Answer & Explanation Answer: A) Hungary

Explanation:

Hungarian capital city Budapest is where the World Wrestling Championship has begun in which Bajrang Punia resembles India.

Report Error

View Answer Report Error Discuss

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

2 2307
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 2307
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 2307
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 2306
Q:

The NAM sumit which demanded expansion of the United Nation Security Council had met at

A) Cairo B) Jakarta
C) Teheran D) Harare
 
Answer & Explanation Answer: B) Jakarta

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2306
Q:

M is a 7 letter word, M is impossible for GOD, The poor have M and The rich look for M from the poor, If you eat M you will die, M is more important than your life. I swear i will give you M if you get the answer. What is M?

Answer

The required 7 letter English word is NOTHING.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: Bank Exams

7 2305
Q:

Five statements are given below, labelled A, B, C, D and E, among these, four statements are in logical order and form a coherent paragraph/passage. From the given options, choose the option that does not fit into the theme of the passage.

A) The global cooperation that has emerged lately is certainly welcome. B) The ocean has suffered decades of abuse and neglect.
C) It has been treated as a free-for-all garbage bin and race-to-the-bottom buffet. D) We have financed its destruction, with no regard for the consequences.
 
Answer & Explanation Answer: A) The global cooperation that has emerged lately is certainly welcome.

Explanation:

All statements except ‘A’ are based about the same theme which is The Fight for Ocean Health while sentence A talks about The Next Phase of Climate Action.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2305
Q:

Sushma Swaraj is _________ by profession.

A) Advocate B) Teacher
C) Engineer D) Doctor
 
Answer & Explanation Answer: A) Advocate

Explanation:

Other than being the politician of India, Sushma Swaraj is Advocate by profession. She was the first women chief minister of Delhi for a brief period, Second women Minister for External Affairs after Indira Gandhi.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

9 2305