Questions

Q:

When does land breeze occur?

A) Fall B) Winter
C) Both A & B D) Hot summer
 
Answer & Explanation Answer: C) Both A & B

Explanation:

Land breezes are more common during winter and fall season. It occurs as it becomes night, the air on the land colls fast and air on the water surface are warmth than that and begin to rise.

Report Error

View Answer Report Error Discuss

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

3 2211
Q:

Who among the following is the first woman lawyer to be directly appointed as a judge of the Supreme Court?

A) Vrinda Grover B) Menaka Guniswamy
C) Meenakshi Arora D) Indu Malhotra
 
Answer & Explanation Answer: D) Indu Malhotra

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams , CAT

0 2211
Q:

Which country is now the world's largest weapons importer?

A) Saudi Arabia B) Iran
C) Pakistan D) China
 
Answer & Explanation Answer: A) Saudi Arabia

Explanation:

The world's largest weapons importer is Saudi Arabia.

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 2210
Q:

The difference between Greenwich Mean Time & Indian Standard Time is

A) 6 1/2 Hours B) 6 Hours
C) 5 1/2 Hours D) 5 Hours
 
Answer & Explanation Answer: C) 5 1/2 Hours

Explanation:

The difference between Greenwich Mean Time & Indian Standard Time is 5 1/2 hours.

Report Error

View Answer Report Error Discuss

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

2 2210
Q:

Write a c program to print multiplication table

Answer

 #include<stdio.h>
int main(){
  int r,i,j,k;
  printf("Enter the number range: ");
  scanf("%d",&r);
  for(i=1;i<=r;i++){
      for(j=1;j<=10;j++)
           printf("%d*%d=%d ",i,j,i*j);
      printf("\n");
  }
  return 0;
}

Sample Output:
Enter the number range: 5

1*1=1 1*2=2 1*3=3 1*4=4 1*5=5 1*6=6 1*7=7 1*8=8 1*9=9 1*10=10
2*1=2 2*2=4 2*3=6 2*4=8 2*5=10 2*6=12 2*7=14 2*8=16 2*9=18 2*10=20
3*1=3 3*2=6 3*3=9 3*4=12 3*5=15 3*6=18 3*7=21 3*8=24 3*9=27 3*10=30
4*1=4 4*2=8 4*3=12 4*4=16 4*5=20 4*6=24 4*7=28 4*8=32 4*9=36 4*10=40
5*1=5 5*2=10 5*3=15 5*4=20 5*5=25 5*6=30 5*7=35 5*8=40 5*9=45 5*10=50

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2210
Q:

Point out the error, if any, in the following program.

main()

{

    int ( *p )() = fun;

    ( *P ) ();

}

fun ()

{

    Printf ( "\nLoud and clear" );

Answer

Here we are initalising the function pointer p to the address of the function fun(). But during this initialisation the function has not been defined. Hence an error.


To eliminate this error add the prototype of the fun() before declaration of p, as shown below:


extern int fun();    or simply  int fun();

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2210
Q:

What is the precise time of earth rotation on axis?

Answer

23 hrs, 56 minutes and 4.9 seconds

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

0 2209
Q:

In the question below, there is a word given in bold which is followed by five options. In each of the options, a pair of words is given which is either the pair of synonyms or antonyms or synonym & antonym of the word given in bold. Choose that pair as your answer.

Zealous

A) Droopy, Gigantic B) Tenacity, Assiduity
C) Fervent, Apathetic D) Conceited, Capacious
 
Answer & Explanation Answer: C) Fervent, Apathetic

Explanation:

The meanings of the given words are as follows:
Zealous: having or showing zeal
Droopy: hanging down limply
Gigantic: of very great size or extent; huge or enormous
Tenacity: the quality or fact of being able to grip something firmly; grip
Assiduity: constant or close attention to what one is doing
Fervent: having or displaying a passionate intensity
Apathetic: showing or feeling no interest, enthusiasm, or concern
Conceited: excessively proud of oneself; vain
Capacious: having a lot of space inside; roomy
Hilarity: extreme amusement, especiallywhen expressed by laughter
Livid: furiously angry
Therefore, it can be observed that option C i.e. ‘fervent, apathetic’ forms a synonym- antonym pair of ‘zealous’.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

0 2209