Questions

Q:

Why are yeast cells frequently used as hosts for cloning?

A) they are eukaryotic cells B) they do not have plasmids
C) only yeast cells allow the gene to be cloned D) they easily form colonies
 
Answer & Explanation Answer: A) they are eukaryotic cells

Explanation:

If you were to produce a protein in bacterial cloning systems, you would not get the same post transcriptional and post translational modifications because the prokaryotic and eukaryotic systems work differently on the modifications.

Thus human recombinant protein genes are usually cloned in yeast cells. Also since they have a short generation time, they can be easily culture.

Report Error

View Answer Report Error Discuss

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

4 3749
Q:

The office of  the UN general Assembly is in

A) Vienna B) Paris
C) Newyork D) Zurich
 
Answer & Explanation Answer: C) Newyork

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

4 3748
Q:

Which of the following is the world's most poisonous snake called Hydrophis ?

A) Adder B) Boa
C) Cobra D) Sea Snake
 
Answer & Explanation Answer: D) Sea Snake

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank PO

20 3748
Q:

The wing of a bat and the wing of a bird are the examples of ______ limbs.

 

A) Homogenous B) Heterogeneous  
C) Analogous D) Homologous
 
Answer & Explanation Answer: C) Analogous

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams

10 3748
Q:

Which states of India have oil fields?

A) Andhra Pradesh & Telangana B) Telangana & Tripura
C) Bihar & Mizoram D) Tamilnadu & Odisha
 
Answer & Explanation Answer: D) Tamilnadu & Odisha

Explanation:

Indian states having oil fields are

  • Andhra Pradesh
  • Arunachal Pradesh
  • Mizoram
  • Odisha
  • Tamilnadu
  • Rajasthan
Report Error

View Answer Report Error Discuss

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

6 3747
Q:

Which of the following countries is a permanent member of the UN Security Council?

A) Switzerland B) People's Republic of china
C) Japan D) Ukraine
 
Answer & Explanation Answer: B) People's Republic of china

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

2 3747
Q:

Answer the following puzzle

Answer

To the 6


Explanation:


Starting with the top left clockface and working clockwise around the others, the sum of the numbers pointed to by the 2 hands starts at 3 and increases by 2 each time.

Report Error

View answer Workspace Report Error Discuss

Subject: Clock puzzles

13 3746
Q:

Write a c program to find out sum of diagonal element of a matrix.

Answer

#include<stdio.h>

int main(){

  int a[10][10],i,j,sum=0,m,n;

  printf("\nEnter the row and column of matrix: ");
  scanf("%d %d",&m,&n);

  printf("\nEnter the elements of matrix: ");
  for(i=0;i<m;i++)
      for(j=0;j<n;j++)
           scanf("%d",&a[i][j]);
  printf("\nThe matrix is\n");

  for(i=0;i<m;i++){
      printf("\n");
      for(j=0;j<m;j++){
      printf("%d\t",a[i][j]);
      }
 }
 for(i=0;i<m;i++){
     for(j=0;j<n;j++){
          if(i==j)
              sum=sum+a[i][j];
     }
 }
 printf("\n\nSum of the diagonal elements of a matrix is: %d",sum);

 return 0;
}

Sample output:

Enter the row and column of matrix: 3 3
Enter the elements of matrix:
2
3
5
6
7
9
2
6
7
The matrix is
2       3       5
6       7       9
2       6       7
Sum of the diagonal elements of a matrix is: 16

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 3745