Questions

Q:

Which country declared sugarcane juice as 'National drink'?

A) Indonesia B) Afghanistan
C) Pakistan D) India
 
Answer & Explanation Answer: C) Pakistan

Explanation:

The country Pakistan declared sugarcane juice as 'National drink'.

Report Error

View Answer Report Error Discuss

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

3 2024
Q:

Select the odd word/letters/number/number pair from the given alternatives.

A) 81 B) 125
C) 64 D) 198
 
Answer & Explanation Answer: D) 198

Explanation:
Report Error

View Answer Report Error Discuss

2 2024
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 2024
Q:

Groundwater is found underground in the zone of

A) Penetration B) Aeration
C) Saturation D) Both B & C
 
Answer & Explanation Answer: D) Both B & C

Explanation:

Groundwater is all the water that has penetrated the earth's surface and is found in one of two soil layers. The one nearest the surface is the "zone of aeration", where gaps between soil are filled with both air and water. Below this layer is the "zone of saturation", where the gaps are filled with water.

Report Error

View Answer Report Error Discuss

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

2 2024
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 2023
Q:

Who has become first Indian player in ODI history to score three consecutive 100s as captain?

A) Virat Kohli B) Rohit Sharma
C) MS Dhoni D) Shikar Dhawan
 
Answer & Explanation Answer: A) Virat Kohli

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2023
Q:

What goes in dry and comes out wet?

Answer

A Bath towel or a tea bag are suitable answers.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

1 2023
Q:

What will be output of following c code?

#include <stdio.h>
int main()

{
    int i;
    for(i=10;i<=15;i++){
         while(i){
             do{
                 printf("%d ",1);
                 if(i>1)
                      continue;
             }while(0);
             break;
         }
    }
    return 0;
}

Answer

Output: 1 1 1 1 1 1
For loop will execute six times.


 


 


 


Note: continue keyword in do-while loop bring the program its while condition (while(0)) which is always false.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2023