Questions

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

Who is the Chief Election Commissioner of India 2018?

A) Ashok Lavasa B) Om Prakash Rawat
C) Montek Singh Ahluwalia D) Sunil Arora
 
Answer & Explanation Answer: B) Om Prakash Rawat

Explanation:

Om Prakash Rawat is the Chief Election Commissioner of India where Ashok Lavasa & Sunil Arora are the Election Commissioners of India. The Election Commission of India had announced Assembly elections for 5 states recently.

Report Error

View Answer Report Error Discuss

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

3 2729
Q:

Synchronous motor can operate at

A) Lagging power factor only B) Unity power factor only
C) Leading power factor only D) At any power factor
 
Answer & Explanation Answer: D) At any power factor

Explanation:

synchronous motor can operate at lag lead and unity power factor also why because it is mainly depends on excitation

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: CAT , GATE , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

0 2728
Q:

A homogeneous mixture is also called

A) Compound B) Pure substance
C) Solution D) None of the above
 
Answer & Explanation Answer: C) Solution

Explanation:

A homogeneous mixture is also called as solution.

The term "solution" is more frequently used when a homogeneous mixture is a liquid, although it is sometimes used if the homogeneous mixture is a gas.

 

Another name for a solid homogeneous mixture of metals is an alloy.

Report Error

View Answer Report Error Discuss

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

2 2728
Q:

Which of the following Articles of Indian Constitution guarantees freedom to press?

A) Article 16 B) Article 19
C) Article 22 D) Article 31
 
Answer & Explanation Answer: B) Article 19

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

1 2728
Q:

What happens the first time buck is beaten?

A) He swears that he'll someday have his revenge on Spitz. B) He learns that he can't get away with stealing another dog's food.
C) He learns he has to obey men, but decides never to surrender inside. D) He has his spirit as well as his body crushed.
 
Answer & Explanation Answer: C) He learns he has to obey men, but decides never to surrender inside.

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2727
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

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

  printf("Enter %d elements: ",size);
  for(i=0;i<size;i++)
    scanf("%d",&x[i]);

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2726
Q:

Which virus is not associated with cancer?

A) Epstein-Barr virus B) Papillomavirus
C) Retrovirus D) Hepatitis virus
 
Answer & Explanation Answer: C) Retrovirus

Explanation:

In the above given options, Retrovirus is the only virus which is not associated with cancer. Here the viruses which are associated with different types of cancer. They are:

Hepatitis virus which is associated with Liver cancer

Papillomavirus which is associated with Cervical cancer

Epstein-Barr virus which is associated with Burkitt's lymphoma.

Report Error

View Answer Report Error Discuss

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

1 2725