Skip to main content

Education System of Pakistan is Not according to current Challenges

Education is the primary need of any country and no one can deny from its importance. An up to mark  education system is much important for every country. Now a days we have much more facilities which we have not in the past like mobile phones, leds, luxury houses and cars it’s all just due to advancement in technology that is just due to education.

Unfortunately, like other third world countries in Pakistan education system is not up to date per current requirement and upcoming challenges.  Like Pakistan is far behind as compared to its neighbor country lndia  which has much advance education system and have high ranked universities of IT and Energy related field that are directly linked to industries. The education system in Pakistan is as old as Pakistan itself. No one pays serious attention to change the educational system. We are reading books which were published many years ago and there is no changings in the books. Even in universities Pakistani students do projects which are done 3-5 years ago in other countries. Universities are producing graduates that have nothing more than a piece of paper in their hands. In Pakistan there are only limited research centers. You can imagine education system of Pakistan by an idea that Pakistan has only one noble prize in sciences. 

Comments

Popular posts from this blog

Jeeto Pakistan Show Essay

Jeeto Pakistan Jeeto Pakistan is a popular and successful show  world wide. It is on aired twice a weak; on Friday and Sunday 11 month of the year and daily during Ramadan. It was started 4 years ago during Ramadan and it is hosted by Pakistan’s celebrity of showbiz industry Fahad Mustafa. Fahad Mostafa is youngest celebrity of Pakistan and he is hosting this show from the very first day till now. He has also done work in many drama serials and movies, his recent famous movie was Actor in Law. Jeeto Pakistan show is on aired at ARY channel in evening from 19:30 to 22:30. It is totally a commercial show which is sponsored by different companies like Q. Mobilejk , Sogo, Qarshi and many other companies. This show includes many segments and each segment offers different prizes like bikes, cars, gold, ummrah tickets, commercial plots and many other appliances are distributed among people. People are selected for this show by Lucky Draw and one can be selected by doing shopping of ...

Area Calculation By ImageJ

  Area Calculation By ImageJ      Open the Software      File => Open       Zoom in the Image and select the straight line        Mark the small line on graph and go to analyse => set scale      Set known distance 01, unit cm and click ok       Go to free hand and cover the area you want to calculate       Then press (ctrl + m) repeat the process for 3 time       After that go to the result and summarize 

Weight conversion program using functions in c++

#include<iostream> using namespace std; int num(int n) { cout<<"num of chocolate:"; cin>>n; return n; } int ounce(int a) { cout<<"weight in ounce:"; cin>>a; return a; } int pound(int b) { cout<<"weight in pound:"; cin>>b; return b; } int main () { int n, a, b; char choice; cout<<"enter choice 'o' for ounce and 'p' for pounds:"; cin>>choice; int x, y, z; x = num(n); y = ounce(a); z = pound(b); if (choice == 'o') {cout<<"total weight in ounce:"<<x*y;} if (choice == 'p') {cout<<"total weight in pounds:"<<x*z;} return 0; } ************************** Output: