Questions

Q:

Who became the first wicketkeeper in world cricket to effect 100 stumpings in ODI's in 2017 ?

A) Mahendra Singh Dhoni B) Kumar Sangakkara
C) Mark Boucher D) Adam Gilchrist
 
Answer & Explanation Answer: A) Mahendra Singh Dhoni

Explanation:

Former India captain Mahendra Singh Dhoni became the first wicketkeeper in world cricket to effect 100 stumpings in One Day Internationals. He broke the record of former Sri Lankan captain Kumar Sangakkara.

Report Error

View Answer Report Error Discuss

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

8 2625
Q:

Which one of the following is true of tRNAs?

A) tRNAs are double-stranded. B) There are four types of tRNA.
C) Each tRNA binds a particular amino acid. D) All of the above
 
Answer & Explanation Answer: C) Each tRNA binds a particular amino acid.

Explanation:

tRNA abbreviated as A transfer RNA is an adaptor molecule composed of RNA, typically 76 to 90 nucleotides in length, that serves as the physical link between the mRNA and the amino acid sequence of proteins.

Report Error

View Answer Report Error Discuss

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

2 2625
Q:

What travels around the world but stays in one spot?

Answer

Therefore the answer for What travels around the world but stays in one spot is STAMP or any other thing that acts as a stamp does.


Ex. the letter in the envelope etc...


 


Since, Several things have the possibility, but the word travel evokes that it would move. 

Report Error

View answer Workspace Report Error Discuss

4 2625
Q:

Where is the headquaters of world health organisation

A) Geneve, Switzerland B) New Delhi, India
C) London,UK D) None of these
 
Answer & Explanation Answer: A) Geneve, Switzerland

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

2 2624
Q:

The Nobel Prize in Economics was started in

A) 1901 B) 1936
C) 1957 D) 1967
 
Answer & Explanation Answer: D) 1967

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

4 2624
Q:

Write a c program for binary search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0,l,u,mid;

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements in ascending order: ");
    for(i=0;i<n;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);

    l=0,u=n-1;
    while(l<=u){
         mid=(l+u)/2;
         if(m==a[mid]){
             c=1;
             break;
         }
         else if(m<a[mid]){
             u=mid-1;
         }
         else
             l=mid+1;
    }
    if(c==0)
         printf("The number is not found.");
    else
         printf("The number is found.");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements in ascending order: 4 7 8 11 21
Enter the number to be search: 11
The number is found.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2624
Q:

In Which three languages is the Rosetta Stone written?

Answer

Greek, demotic Egyptian and hieroglyphics.

Report Error

View answer Workspace Report Error Discuss

Subject: World History

0 2624
Q:

Choose odd one out

A) Cyberspace B) Internet
C) HTML D) WWW
 
Answer & Explanation Answer: C) HTML

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

0 2624