Questions

Q:

Read the passage carefully and select the best answer to each question out of the given four alternatives.

 

India’s title triumph in the Under-19 cricket World Cup at the Bay Oval in New Zealand seemed inevitable. Prithvi Shaw’s boys, astutely coached by Rahul Dravid, maintained an unbeaten record through their three-week sojourn. The rousing campaign commenced with a 100-run win against Australia on January 14; in subsequent games, Papua New Guinea, Zimbabwe, Bangladesh and Pakistan were all emphatically defeated. There were no big-game nerves and even in the much- hyped semifinal against Pakistan, India pocketed a facile 203-run victory. In the summit clash against Australia, Shaw’s boys followed their template of dominance.

Australia was bowled out for 216 and India cruised home in 38.5 overs with eight wickets to spare, and enjoyed the added lustre of opener Manjot Kalra’s unbeaten 101. Through the tournament India found diverse heroes. Fittingly, its batting troika of Shaw, Kalra and Shubman Gill, along with seamer Kamlesh Nagarkoti and spinner Anukul Roy, found a berth in the International Cricket Council’s Under-19 World Cup team, essentially a tribute to the best players on view in the championship. Cricketing excellence allied with the resultant celebrity status, especially during the teenage years, can be a double-edged sword and it helped that in the dressing room there was the calming presence of Dravid. As the ecstatic players leapt and photo-bombed after clinching the trophy, Dravid cut through the hype and said that this win should not be the team’s defining memory as each individual cricketer has much more to achieve in his career. Dravid has a point. India has won the Under-19 World Cup on four occasions, including the previous golden runs in 2000, 2008 and 2012. From among these champion sides, only a few graduated to the big stage. Yuvraj Singh and Virat Kohli came through the under-19 ranks and managed to carve a niche for themselves, but Unmukt Chand, who led the team to the Cup in 2012, and then featured in a soft drink advertisement besides writing a book, has been unable to make it to the Indian senior team.

 

According to the passage, who is the captain of the U-19 Cricket World Cup team?

A) Prithvi Shaw B) Rahul Dravid
C) Manjot Kalra D) Shubman Gill
 
Answer & Explanation Answer: A) Prithvi Shaw

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2219
Q:

If m+n=1, then the value of m3+n3+3mn is equal to

A) 0 B) 1
C) 2 D) 3
 
Answer & Explanation Answer: B) 1

Explanation:
Report Error

View Answer Report Error Discuss

0 2219
Q:

Other things equal an improvement in productivity will

A) shift the aggregate demand curve to the left B) shift the aggregate supply curve to the right
C) increase the equilibrium price level D) shift the aggregate supply curve to the left
 
Answer & Explanation Answer: B) shift the aggregate supply curve to the right

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2219
Q:

Project Quality Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Quality Planning ?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Project scope statement

  • Project management plan


II. Tools and Techniques



  • Cost - benifit analysis

  • Benchmarking

  • Design of experiments

  • Cost of quality(COQ)

  • Additional quality planning tools


III. Outputs



  • Quality management plan

  • Quality metrics 

  • Quality checklists

  • Process improvement plan

  • Quality baseline

  • Project management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 2219
Q:

Explain Data Definition Language

Answer

Data Definition Language (DDL):- are the SQL statements that define the database structure.


Example:



  1.  CREATE

  2.  ALTER

  3.  DROP

  4.  TRUNCATE

  5.  COMMENT

  6.  RENAME

Report Error

View answer Workspace Report Error Discuss

1 2219
Q:

Project Risk Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Risk Management Planning?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Project Scope statement

  • Project Management plan


II. Tools and Techniques



  • Planning meetings and analysis


III. Outputs



  • Risk Management Plan

Report Error

View answer Workspace Report Error Discuss

0 2218
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 2218
Q:

Who becomes world's No.1 ranked boxer in latest AIBA Rankings ?

A) Mary Kom B) Muhammad Ali
C) Sindhu D) All of the above
 
Answer & Explanation Answer: A) Mary Kom

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2218