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

Coir, Copra, Coconut , Cashew are mainly exported from

A) Mumbai B) Cochin
C) Tuticorin D) Chennai
 
Answer & Explanation Answer: B) Cochin

Explanation:

Because Kerala is the major producer of these products.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography

8 3760
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 3760
Q:

Which of the following is the mixture

A) distilled water B) gasoline
C) liquified petroleum gas D) both (b) & (c)
 
Answer & Explanation Answer: D) both (b) & (c)

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

3 3759
Q:

Which Airport ranked first in Customer Satisfaction Index Survey in India ?

A) Udaipur Airport B) Raipur Airport
C) Amritsar Airport D) Dehradun Airport
 
Answer & Explanation Answer: B) Raipur Airport

Explanation:

Raipur’s Swami Vivekananda Airport was ranked first in Customer Satisfaction Index (CSI) Survey among 49 airports in the country. It has achieved 4.84 score on a five point scale index. It was followed by Udaipur (2nd), Amritsar (3rd) and Dehradun (4th) airports which have scored 4.75, 4.74 and 4.73 respectively. This is third consecutive time in the past two years, Raipur airport has received this recognition.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

11 3759
Q:

What is NVT?

Answer

It is a set of rules defining a very simple virtual terminal interaction. The NVT is used in the start of a Telnet session.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

1 3758
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 3757
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 3757