Skip to main content

Who is going to be the next prime minister of Pakistan?

Hello Everyone,



   Lets talk about the previous Prime Ministers of Pakistan before proceeding to the next PM. Nawaz Sharif from PMLN(Pakistan Muslim League Nawaz)  has been the PM of Pakistan for three times and Pakistan Military has ruled over the Pakistan for 39 years, now in General Elections 2018 Pakistan Tehreek-e-Insaf has emerged as the largest vote gaining party of Pakistan with 115 seats. But, will the PTI chairman Imran Khan be able to become the next PM of Pakistan? Well, there is something called number game. PTI needs 137 seats to form a federal government. There are some independent candidates as well who will unite with PTI to help form a government.
Pakistani Rocket ready to fly
 
     On the other hand, PMLN and PPP (Pakistan People's Party: a previous ruling party) has joined hands and united with some other parties with a small number of seats, are willing to form a federal government. It also had displayed the names of PM, CM of Punjab, Speaker and deputy speaker if it forms government. Nawaz Sharif, being in jail, and not able to fight any elections, his brother would be the opposition leader in the other case.
 
     On 11th August, there would be the oath taking ceremony, so the PM, CM of Punjab, Speaker and Deputy Speaker will be announced. After all the hypothesis there is a very bright chance that we will see Imran Khan emerging as the next PM, he has the lead, All thanks to Jahangir tareen.

     Well just hope for the best, lets wish whoever will be the next PM of Pakistan stays loyal to the country and fulfills his promises.
    

Comments

Popular posts from this blog

CEME NUST, another aspect of story....

    There has been a rise in the controversy that the students of the College of Electrical and Mechanical Engineering, NUST are not treated nicely. However, I can assure that there is no other institution in Pakistan which can provide a healthy and grooming environment for the freshmen. They may provide you the advanced technology labs and buildings, but as a matter of fact, they will not train you for your better tomorrow as CEME does.      I am a student of CEME, and most importantly the most junior DE-40 in the CEME. I am against any of the rumors trying to damage the reputation of CEME, NUST. We are taught to be better persons for our society, we are taught to speak in front of public, we are taught to take responsibilities, we are taught to deal with the things calmly, we are taught to respect our elders and peers, we are taught to make decision quickly and precisely, we are taught to lead our life in a disciplined way.     As far as tha...

C++ Program for solving 2nd equatiion of motion (Kinematics)

As we know the 2nd equation of motion   #include<iostream> #include<cmath> using namespace std; void main() { double vi, vf, a, s; int eq; cout << "Press 1 to solve for acceleration, 2 for distance, 3 for initial velocity and 4 for final velocity \n"; cin >> eq; if (eq == 1) { cout << "Enter vf, vi and s \n"; cin >> vf >> vi >> s; a = (pow(vf, 2) - pow(vi, 2)) / (2 * s); cout << "Acceleration is " << a << endl; } else if (eq == 2) { cout << "Enter vf, vi and a \n"; cin >> vf >> vi >> a; s = (pow(vf, 2) - pow(vi, 2)) / (2 * a); cout << "Distance is " << s << endl; } else if (eq == 3) { cout << "Enter vf, s and a \n"; cin >> vf >> s >> a; vi = sqrt(pow(vf, 2) - 2 * a*s); cout << "Initial velocity is " <...