Questions

Q:

Where does transcription occur in the cell?

A) Cytoplasm B) Nucleus
C) Ribosome D) None of the above
 
Answer & Explanation Answer: B) Nucleus

Explanation:

Transcription is a process of production of mRNA which occurs in the nucleus of the cell. After transcription, translation which occurs in the cytoplasm.

Report Error

View Answer Report Error Discuss

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

2 2087
Q:

Why we use do-while loop in c?

Answer

It is also called as post tested loop. It is used when it is necessary to execute the loop at least one time. Syntax:

do {
Loop body
} while (Expression);

Example:

int main(){
    int num,i=0;  
    do{
         printf("To enter press 1\n");
         printf("To exit press  2");
         scanf("%d",&num);
         ++i;
         switch(num){
             case 1:printf("You are welcome\n");break;
             default : exit(0);
         }
    }
    while(i<=10);
    return 0;
}

Output: 3 3 4 4

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2087
Q:

In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?

Answer

For load-time dynamic linking: Load module to be loaded is read into memory. Any reference to a target external module causes that module to be loaded and the references are updated to a relative address from the start base address of the application module.


With run-time dynamic loading: Some of the linking is postponed until actual reference during execution. Then the correct module is loaded and linked.

Report Error

View answer Workspace Report Error Discuss

0 2087
Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Develop project management plan phase?

Answer

I. Inputs



  • Preliminary project scope statement

  • Project management processes

  • Enterprise environmental factors

  • Organizational process assets


II. Tools and Techniques



  • Project management methodology

  • Project management information system

  • Expert Judgment


III. Outputs



  • Project management plan

Report Error

View answer Workspace Report Error Discuss

0 2087
Q:

Aryabhatta and Kalidasa were in the court of which Gupta Emperor?

A) Kumara Gupta I B) Chandra Gupta II
C) Samudra Gupta D) Skanda Gupta
 
Answer & Explanation Answer: C) Samudra Gupta

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 2087
Q:

A passage is given with 5 questions following it. Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.

 

Man's attitude to various animals changed many times in the course of centuries. From indifference or practicality, he went on to adoration and deification, and then to hatred. Ancient Egyptians, for example, highly appreciated the cat's ability to destroy rodents. The cat was much superior in this respect to the grass­snakes and weasels they had kept in their houses before. These proved unable to cope with hordes of rats which invaded Egypt from Asia. So the cat, a very useful animal, was ranked as a sacred animal and one of the most important animals, too. The goddess of the Moon, fertility and child­birth, Bast herself was portrayed by the Egyptians as a woman with a cat's head.

Sumptuous temples were built to this goddess, where cats were kept in luxury and fed the choicest of foods. They had their own priests and votaries, more numerous as a matter of fact than any other sacred animal could boast. According to the Greek historian Herodotus, the festival in the city of Bubastis, which had a temple dedicated to cats, was attended by as many as 700 thousand, who brought their offerings to the goddess in the shape of figurines of her made of gold, silver and bronze and adorned with precious stones.

 

Hordes of rats invaded Egypt. They came from _____ .

A) Europe B) Asia
C) Asia Minor D) Africa
 
Answer & Explanation Answer: B) Asia

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2087
Q:

Project Human Resource Management

What are the Project Management Processes included in the Project Human Resource Management?

Answer

Human Resource Planning - Identifying and documenting Project roles, responsibilities, and reporting relationships, as well as creating the staffing management plan.


Acquire Project Team - Obtaining the human resources needed to complete the project


Develop Project Team - Improving the competencies and interaction of team members to enhance project performance.


Manage Project Team - Tracking team member performance, providing feedback, resolving issues, and coordinating changes to enhance project performance.

Report Error

View answer Workspace Report Error Discuss

0 2086
Q:

What's the maximum hard drive size for FAT16-based Windows system?

Answer

Maximum hard drive size for FAT16-based windows system is 2GB.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2085