Thursday, September 28, 2017

Which of the following cricket teams are not directly qualified for the ICC Cricket World Cup 2019?




     answer : West Indies

Explanation:
Recently Sri Lanka has qualified for the ICC Cricket World Cup 2019 after West Indies lost the first ODI against England at Old Trafford on September 19, 2017. With this, Sri Lanka has become the eighth and last team to qualify directly, joining Australia, Bangladesh, England, India, New Zealand, Pakistan and South Africa. Now, West Indies will progress to the 10-team ICC Cricket World Cup Qualifier 2018, where they will be joined by the bottom three sides on the ICC ODI team rankings – Afghanistan, Zimbabwe and Ireland as well as the top four sides from the ICC World Cricket League Championship and the top two sides from the ICC World Cricket League Division 2. The top two sides from the World Cup Qualifier will complete the 10-team line-up for the ICC Cricket World Cup 2019, which will be played in United Kingdom (UK) from 30 May to 15 July.

Tuesday, September 19, 2017

How to Download all e-paper any Language (कोई भी न्यूज़ पेपर किसी भी भा...



  • Learn how to download any news paper(e-paper) in PDF
  • You can download news paper in any language, any state and any city in the PDF.
  • You can also download any supplement that comes with the news paper.
  •  Read and download any book and magazine
    -Learn how to help with this video






Monday, September 18, 2017

17)WAP to enter any number and check it is armstrong No or not. in CPP



Program




#include

#include

class armstrong

{

int n,no,r,c;

public:

palindrom()

{ r=0;

}

void getdata()

{
cout<<"\n\t\t Enter Number:";

cin>>no;

}

void putdata()

{ c=no;

for( ;no>=1; )

{

n=no%10;

r=r+(n*n*n);

no=no/10;

}

if(c==r)

{

cout<<"\n\t\t A Number Is Armstrong !!";


}

else

{

cout<<"\n\t\t A Number Not Armstrong !!";

}

}

};

void main()

{

clrscr();

armstrong p1;

p1.getdata();

p1.putdata();

getch();

}


-------------------------------Output---------------------------



Enter Number:153

A Number Is Armstrong !!