Questions

Q:

Where does protein synthesis take place in a cell?

A) Ribosomes B) Mitochondria
C) Cytoplasm D) Nucleus
 
Answer & Explanation Answer: A) Ribosomes

Explanation:

The protein synthesis take place in a cell outside the nucleus in the structures called ribosomes. Ribosomes link amino acids together in the order specified by messenger RNA molecules.

Where_does_protein_synthesis_take_place_in_a_cell1563603813.png image

Report Error

View Answer Report Error Discuss

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

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

Which startup acquired Google's satellite imaging business in 2017 ?

A) NovaWurks B) PlanetiQ
C) Planet Labs D) UrtheCast
 
Answer & Explanation Answer: C) Planet Labs

Explanation:

American startup Planet Labs, that launches small satellites into orbit and sells the imagery, has announced its acquisition of Google's 'Terra Bella' satellite business. As part of the agreement, 60 Google employees will join the startup founded by ex-NASA scientists. Terra Bella, was acquired by Google in 2014 for $500 million and that time it was known as Skybox Imaging.

Report Error

View Answer Report Error Discuss

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

4 2714
Q:

Movement of cell against concentration gradient is called

A) active transport B) diffusion
C) osmosis D) passive transport
 
Answer & Explanation Answer: A) active transport

Explanation:

The only transport method that can move species against their concentration gradient i.e, from low to high concentration is called Active transport.

 

Facilitated diffusion only moves species down their concentration gradient i.e, from high to low concentration.

Report Error

View Answer Report Error Discuss

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

2 2714
Q:

If there is a lock on an adjacent key, an insert will fail if the isolation level is set to what?

A) committed read B) repeatable read
C) share read D) indexed read
 
Answer & Explanation Answer: B) repeatable read

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

1 2713
Q:

Selecting and managing marketing channels :

How are the channel members managed and motivated, once they are selected?

Answer

These days channel members are being accepted by companies as their partners. The intermediaries are even being asked to integrate their business with the companies which results in lesser costs, greater efficiency and improved customer service. Corporates like Airtel are adopting PRM (Partner relationship management) software to give that added advantage to their supply chain. They organise rewards and recognition programs for their channel partners and also organise proper channels though which partners can vent any of their grievances relating to payments, violation of codes etc.

Report Error

View answer Workspace Report Error Discuss

0 2713
Q:

Translator program used in assembly language

A) Assembler B) Interpreter
C) Compiler D) Operating system
 
Answer & Explanation Answer: A) Assembler

Explanation:

Assemblers are used to translate a program written in a low-level assembly language into a machine code (object code) file so it can be used and executed by the computer.

 

Hence, Assembler is the translator program used in assembly language.

Report Error

View Answer Report Error Discuss

0 2713
Q:

What is market risk?

Answer

It refers to the possibility for an investor to experience  losses due to  factors that affect the overall performance of the financial markets. Market risk cannot be eliminated through diversification, though it can be hedged against. The sources of market risk include natural disasters, recessions, political turmoil, changes in interest rates and terrorist attacks.

Report Error

View answer Workspace Report Error Discuss

0 2712