Questions

Q:

A republic is a form of government where a state or country is

A) ruled by no one B) ruled by public
C) ruled by peoples representatives D) ruled by kings family
 
Answer & Explanation Answer: C) ruled by peoples representatives

Explanation:

A republic is a form of government where a state or country is ruled by peoples representatives. These representatives were elected by the people and must follow the rule of law under the constitution in his ruling.

Report Error

View Answer Report Error Discuss

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

3 2308
Q:

In the following questions, one part of the sentence may have an error. Find out which part of the sentence has an error and click the button corresponding to it. If the sentence is free from error, click the "No error" option.

Neither of the scout leaders know (A)/ how to trap wild animals (B)/ or how to prepare them for mounting (C)/ No Error (D)

A) A B) B
C) C D) D
 
Answer & Explanation Answer: A) A

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 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:

Who was Shivaji’s Guru?

A) Eknath B) Tukaram
C) Dnyanesh D) Samartha Ramadas
 
Answer & Explanation Answer: D) Samartha Ramadas

Explanation:

Shivaji’s Guru was Shree Samarth Ramdas was a noted 17th-century saint and spiritual poet of Maharashtra. He is most remembered for his Advaita Vedantist text, the Dasbodh. Ramdas was a devotee of Hanuman and Rama.

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

The term "Birdie" is related to which game?

A) Golf B) Baseball
C) Basketball D) Polo
 
Answer & Explanation Answer: A) Golf

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

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