Questions

Q:

Which state declared dolphin as State aquatic animal?

A) Telangana B) Uttar Pradesh
C) Punjab D) Goa
 
Answer & Explanation Answer: C) Punjab

Explanation:

The Punjab state declared dolphin as State aquatic animal.

Report Error

View Answer Report Error Discuss

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

1 2006
Q:

Magnesium (Mg) + Oxygen (O2) = ?

A) Mg2O B) MgO4
C) O2Mg D) MgO
 
Answer & Explanation Answer: D) MgO

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

4 2006
Q:

Differ between static and dynamic RAM?

Answer

Static RAM: no refreshing, 6 to 8 MOS transistors are required to form one memory cell, information stored as voltage level in flip flop. 


Dynamic RAM: refreshed periodically, 3 to 4 transistors are required to form one memory cell, information is  stored as a charge in the gate to substrate capacitance.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 2006
Q:

Queen Elizabeth I ascended the throne of England in the year

Answer

1558 AD

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 2006
Q:

Improve the bracketed part of the sentence.
The workers are bent (on) getting a full months pay as bonus.

A) for B) upon
C) to D) no improvement
 
Answer & Explanation Answer: B) upon

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2006
Q:

The Twelfth Five-year Plan focused on inclusive growth. Which of the following were considered as challenges for inclusiveness?

1.Poverty

2.Group inequality

3.Regional imbalance

4.Unemployment

Select the correct answer using the code given below.

A) 1, 3 and 4 only B) 1, 2, 3 and 4
C) 1, 2 and 4 only D) 2 and 3 only
 
Answer & Explanation Answer: A) 1, 3 and 4 only

Explanation:
All are correct except 2, as group inequality was not a challenge.
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 2005
Q:

Project Communications Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Manage stakeholders?

Answer

I. Inputs



  • Communications management plan 

  • Organizational process assets


II. Tools and Techniques



  • Communications methods

  • Issue logs


III. Outputs



  • Resolved issues

  • Approved change requests

  • Approved corrective actions 

  • Organizational process assets (updates)

  • Project management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 2005
Q:

C program to find the factorial of a given number

Answer

 #include<stdio.h>
int main(){
  int i=1,f=1,num;

  printf("Enter a number: ");
  scanf("%d",&num);

  while(i<=num){
      f=f*i;
      i++;
  }

  printf("Factorial of %d is: %d",num,f);
  return 0;
}

Sample output:
Enter a number: 5
Factorial of 5 is: 120

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2005