rss
twitter
    Find out what You Want :)
Home    Downloads    Corner    Market    News sites    About Us

Thursday, February 3

PAK 301 GDB Solution

PAK301 GDB Solution

How do you see the 18th Amendment Bill recently passed by the National assembly of Pakistan? Do you think that the constitutional dilemmas have been resolved with this Bill? Post your comments after inferring the above topic. Your comments should NOT exceed from 100 to 120 words.
How do you see the 18th Amendment Bill recently passed by the
National assembly of Pakistan?

Solution:
Parliament of Pakistan recently (April2010) passed the 18th
amendment bill that guarantees federal parliamentary system and
reduced presidential powers. The 18th amendment makes several
fundamental changes to the Constitution including the renaming of
the NWFP province to "Khyber Pakhtunkhwa." In addition, through
the, 18th amendment any attempt to subvert, abrogate, or suspend the
constitution is now defined as an act of high treason. The 18th
amendment has also provided more provincial autonomy to the
provinces through diverting resources to the federating units,
allowing to explore natural resources, establish power generation
units and get royalty on natural resources.

Do you think that the constitutional dilemmas have been resolved with this Bill?
solution:
No constitutional delimits of Pakistan is not going to be resolved by
18th amendment due to following reasons as per my knowledge.
Legalization of corruption, encouraging non democratic political
culture and sowing ethnic loathing in nation are few heinous things
18th amendment is going to give to already problematic pakistan. It
would bring more corruption to Pakistani politics by uprooting rule
of law, it would promote sham democracy in Pakistan by allocating
powers to non-elected people, it would shake national integrity and
18th amendment would undermine vital national institutes.

Tuesday, February 1

CS201 Assignment#5


CS201 Assignment#5 Solution


#include <iostream.h>
#include<conio.h>
#include<math.h>

class CRectangle
{
int width, height;
public:
void set_values (int, int);
int area (void)
{
return (width * height);
}
};

void CRectangle::set_values (int a, int b)
{
width = a;
height = b;
}

int main ()
{
CRectangle a, *b, *c;
CRectangle * d = new CRectangle[2];
b= new CRectangle;
c= &a;
a.set_values (2,4);
b->set_values (6,8);
d->set_values (10,12);
d[1].set_values (14,16);
cout<<"a area: " <<a.area()<<endl<<endl;
cout<<"*b area: " <<b->area()<<endl<<endl;
cout<<"*c area: " <<c->area()<<endl<<endl;
cout<<"d[0] area: "<<d[0].area()<<endl<<endl;
cout<< "d[1] area: " <<d[1].area()<<endl<<endl;
getch();
return 0;
}
 

Discus Your Study Problems Here

Is This Blog Is Useful For You?

Face Book Fans