Questions

Q:

What is the name of person which controls a football match

A) A referee B) An Umpire
C) A spectator D) A goalkeeper
 
Answer & Explanation Answer: A) A referee

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

125 26197
Q:

G-15 is an economic grouping of

A) First World Nations B) Second World Nations
C) Third World Nations D) Fourth World Nations
 
Answer & Explanation Answer: C) Third World Nations

Explanation:

G-15 is an economic grouping of Third World Nations.

The countries listed in G-15 group are Algeria, Argentina, Brazil, Chile, Egypt, India, Indonesia, Iran, Jamaica, Kenya, Malaysia, Mexico, Nigeria, Peru, Senegal, Sri Lanka, Venezuela, and Zimbabwe.

The G-15 membership has expanded to 18 countries, but the name has remained unchanged. 



    • The First World described countries whose views aligned with NATO and capitalism. The United States was considered a member of the First World.

 

    • The Second World referred to countries that supported communism and the Soviet Union. Russia was considered a member of the Second World.

 

    • The Third World referred to countries whose views did not align with NATO and capitalism or the Soviet Union and communism. A Third World country is a developing nation characterized by poverty and a low standard of living for much of its population. Third World countries referenced the nations, mostly in Asia and Africa.
Report Error

View Answer Report Error Discuss

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

115 26185
Q:

Lover of nature is called

A) Autophile B) Green panther
C) Dendrophile D) Petrichor
 
Answer & Explanation Answer: B) Green panther

Explanation:

Lover of nature is called nature lover or Green Panther.

nature_lover1533114089.jpg image

 

Autophile is a person who loves being alone.

 

Dendrophile is a person who loves trees and forests.

 

Petrichor is an earthy smell that follows a rainfall.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , GATE , CAT , Bank Exams
Job Role: IT Trainer , Bank PO , Bank Clerk , Analyst

22 26100
Q:

The sampling distribution of a statistic is

 

 

A) A normal curve, for which probabilities are obtained by standardizing.  B) A distribution of all possible summary statistics from a single random sample, from the same population.
C) A distribution of all parameters from the population that is to be randomly sampled. D) The mechanism that determines whether the random sampling was effective. 
 
Answer & Explanation Answer: A) A normal curve, for which probabilities are obtained by standardizing. 

Explanation:

The sampling distribution of a statistic is the distribution of the statistic for all possible samples from the same population of a given size.

 

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

3 26064
Q:

Solve the missing number puzzle?

number_puzzle31533710656.jpg image

Answer

Here in the above puzzle,


Consider the columns.


Column 1 = Row 1 + Row 2 = Row 3


That is,


44 + 12 = 56


Similarly,


48 + 30 = 78


Hence, 14 + 51 = 65.


 


Hence, the missing number in the given puzzle = 65.

Report Error

View answer Workspace Report Error Discuss

Subject: Number Puzzles Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO

118 26049
Q:

The biggest public sector undertaking in the country is

A) Iron and steel Plants B) Roadways
C) Railways D) Airways
 
Answer & Explanation Answer: C) Railways

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

130 26049
Q:

What are the typical elements of a process image?

Answer

User data: Modifiable part of user space. May include program data, user stack area, and programs that may be modified.


User program: The instructions to be executed.


System Stack: Each process has one or more LIFO stacks associated with it. Used to store parameters and calling addresses for procedure and system calls.


Process control Block (PCB): Info needed by the OS to control processes.

Report Error

View answer Workspace Report Error Discuss

26 25920
Q:

What will output when you compile and run the following code?

#include <stdio.h>
struct student
{

int roll;
int cgpa;
int sgpa[8];

};

void main()
{

struct student s = { 12,8,7,2,5,9 };
int *ptr;
ptr = (int *)&s;
clrscr();
printf( "%d", *(ptr+3) );
getch();

}

A) 8 B) 7
C) 2 D) Compiler error
 
Answer & Explanation Answer: C) 2

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 25897