Sunday, November 13, 2011

[discussion_vu] mth001 assignemnt solved by Shujaat Hussain

Asslam O Alikum
mth001 assignemnt solved by Shujaat Hussain

Remember Me in Your Prayers

Best regard's
Ch. Muhammad Afaaq (Arrien)

MBA (Finance) Completed
Islamabad
Afaaq_Tariq@yahoo.com

0346-5329264

For latest assignments solved quizzes files GDB, Solve & Unsolved Past Papers come join us in

http://groups.google.com/group/vustudymania

If u like me than raise your hand with me
If not then raise ur standard
That's about me … !


--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

[discussion_vu] PLz add me in this group....

I am MBA 3rd semester student.. plz add me...

--
  • If at first you don't succeed, look in the trash for the instructions.
  • If we all are here to help others , then what exactly are others here for?
  • The meaning of life is to give life meaning

With Best Regards
MBA (3rd semester)
      Zohaib Butt
      Gujranwala.

--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

[discussion_vu] cs 101 bundles of solved quizzes

Asslam O Alikum
cs 101 bundles of  solved quizzes

Remember Me in Your Prayers

Best regard's
Ch. Muhammad Afaaq (Arrien)

MBA (Finance) Completed
Islamabad
Afaaq_Tariq@yahoo.com

0346-5329264

For latest assignments solved quizzes files GDB, Solve & Unsolved Past Papers come join us in

http://groups.google.com/group/vustudymania

If u like me than raise your hand with me
If not then raise ur standard
That's about me … !


--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

[discussion_vu] Its Urgent .. Must Read..!!!

Aslam o Alikum to All ..
 
agr meray kisi behan bhai k pass  IT 430 (E-Commerce)  ki 2nd assingment ka solution hai to plz is email k replay main attach kr k bejh dein .. buhat mehrbani ho gi aap ki... 
its very urgent .. aaj last date hai plz...
plz file attach kr k bejhna ..us ka link matt bejhna ..mery PC py wo open nhi hoga ..
 
buhat nwazish ho gi .. 

--

ادھورا ارمان

دل کی رگ رگ نچوڑ لیتا ہے 
عشق میں یہ بڑی مصیبت ہے
 
جانے اس دل میں کیسا آسیب رہتا ہے
جو بھی رہا آخر یہ مکاں چھوڑ گیا
 
مجھے چا ہے بھول جانا
مت یاد رکھنا  !
پر خدا کے لیے
اپنا خیال رکھنا  !


MBA 3rd Semester
Cell # 03007768543
 

--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

[discussion_vu] solutions

solutions

Remember Me in Your Prayers

Best regard's
Ch. Muhammad Afaaq (Arrien)

MBA (Finance) Completed
Islamabad
Afaaq_Tariq@yahoo.com

0346-5329264

For latest assignments solved quizzes files GDB, Solve & Unsolved Past Papers come join us in

http://groups.google.com/group/vustudymania

If u like me than raise your hand with me
If not then raise ur standard
That's about me … !


--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

[discussion_vu] solutions

#include <iostream.h>
#include <string.h>

using namespace std;
class Node{
public:
int value;
string Name;
Node * next;
Node(int a, string b)
{
this->value=a;
this->Name=b;
this->next=NULL;
}
};
Node *Head;


void addNod(int value, string name)
{
Node *p;
if(Head==NULL)
{
Head = new Node(value,name);
}
else
{
p=Head;
while(p->next!=NULL)
{
p=p->next;
}
p->next = new Node(value,name);
}
}
void SearchThis(string a)
{
while(Head->Name!=a)
{
Head=Head->next;
}
cout<<"found: "<< Head->value<<" "<<Head->Name<<endl;
}
void DeleteFunction(string nameToDelete)
{
Node *Current, *NextCurrent;


if(Head->Name==nameToDelete)
{
Current=Head;
Head=Head->next;
delete Current;
}
else
{
Current=Head;
while(Current!=NULL && Current->Name!=nameToDelete)
{
NextCurrent = Current;
Current = Current->next;
}
if(Current)
{
NextCurrent->next = Current->next;
delete Current;
}
}
}
void PrintList()
{
Node *Print;
Print = Head;
while(Print!=0)
{

cout<<Print->value<<" "<<Print->Name<<endl;
Print=Print->next;
}

}






int main()
{
cout<<"\Welcome to Student Information System (Pakyouth)\n"<<endl;
int choice;
cout<<"1- Enter student information"<<endl;
cout<<"2- Search student by ID"<<endl;
cout<<"3- Search student by Name"<<endl;
cout<<"4- Delete student information"<<endl;
cout<<"5- Print all students"<<endl;
cout<<"6- Quit"<<endl;
int rol;
string na;
while(choice!=6)
{
cout<<"\n\n \t\tenter ur choice \n "<<endl;
cin>>choice;

if(choice==1)
{

cout<<"enter roll number ";
cin>>rol;
cout<<"enter name ";
cin>> na;
addNod(rol,na);
}
else if(choice==3){
cout<<"enter student name to search "<<endl;
cin>>na;
SearchThis(na);
}else if(choice==4){
cout<<"cout enter student name "<<endl;
cin>>na;
DeleteFunction(na);
}else if(choice==5){
PrintList();
}else if(choice==2){
cout<<"sorry, not codded this function "<<endl;
}else{
return 0;
}



}


system("pause");
};
solutions

Remember Me in Your Prayers

Best regard's
Ch. Muhammad Afaaq (Arrien)

MBA (Finance) Completed
Islamabad
Afaaq_Tariq@yahoo.com

0346-5329264

For latest assignments solved quizzes files GDB, Solve & Unsolved Past Papers come join us in

http://groups.google.com/group/vustudymania

If u like me than raise your hand with me
If not then raise ur standard
That's about me … !


--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

[discussion_vu] solutions

//*Come and Join us*//
//http://groups.google.com/group/mcs-mit//
#include
<stdio.h>
#include <windows.h>

char Strip_Bckgrd_Array[] = {BACKGROUND_RED,BACKGROUND_BLUE,BACKGROUND_GREEN };
int main ( void )
{
HANDLE h = GetStdHandle ( STD_OUTPUT_HANDLE );
WORD ColorAtt;
CONSOLE_SCREEN_BUFFER_INFO Nimi;


GetConsoleScreenBufferInfo(h, &Nimi);
ColorAtt = Nimi.wAttributes;

int rux;
for(rux = 0;rux<25;rux++){

//color strip code here


}

SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[1] | Strip_Bckgrd_Array[0] ); // Backgroup Color strip 1
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[1] | Strip_Bckgrd_Array[2] ); // Backgroup Color strip 2
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[1] | BACKGROUND_INTENSITY ); // Backgroup Color strip 3
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] | BACKGROUND_INTENSITY ); // Backgroup Color strip 4
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] | Strip_Bckgrd_Array[2] ); // Backgroup Color strip 5
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[1] | Strip_Bckgrd_Array[2] ); // Backgroup Color strip 6
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] | Strip_Bckgrd_Array[2] | BACKGROUND_INTENSITY ); // Backgroup Color strip 7
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] | Strip_Bckgrd_Array[1]| Strip_Bckgrd_Array[2] ); // Backgroup Color strip 8
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] | Strip_Bckgrd_Array[1] ); // Backgroup Color strip 9
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[1] ); // Backgroup Color strip 10
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[2] | BACKGROUND_INTENSITY ); // Backgroup Color strip 11
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[1] | Strip_Bckgrd_Array[2] | BACKGROUND_INTENSITY ); // Backgroup Color strip 12
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] | Strip_Bckgrd_Array[2] | BACKGROUND_INTENSITY ); // Backgroup Color strip 13
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[2] ); // Backgroup Color strip 14
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] | Strip_Bckgrd_Array[1]| BACKGROUND_INTENSITY ); // Backgroup Color strip 15
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] | Strip_Bckgrd_Array[1]| Strip_Bckgrd_Array[2] ); // Backgroup Color strip 16
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] | Strip_Bckgrd_Array[2] ); // Backgroup Color strip 17
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[1] | Strip_Bckgrd_Array[2] | BACKGROUND_INTENSITY ); // Backgroup Color strip 18
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] ); // Backgroup Color strip 19
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[1] ); // Backgroup Color strip 20
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[2] ); // Backgroup Color strip 21
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] | Strip_Bckgrd_Array[1]| BACKGROUND_INTENSITY ); // Backgroup Color strip 22
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[0] | Strip_Bckgrd_Array[1]| Strip_Bckgrd_Array[2] | BACKGROUND_INTENSITY ); // Backgroup Color strip 23
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[1] | BACKGROUND_INTENSITY ); // Backgroup Color strip 24
printf ( " " );
SetConsoleTextAttribute ( h, Strip_Bckgrd_Array[2] | BACKGROUND_INTENSITY ); // Backgroup Color strip 25
printf ( " " );




SetConsoleTextAttribute ( h, ColorAtt);
system("pause");
return 0;

}

//mc110201162
//Aziz Ahmed Aasi
//Program for virtual Billing System

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

main()
{

int MealPrice, NoOfCustomer=1;
float SaleTax,TotalAmount,GrandTotal=0;
char Aziz;

cout<<"*** Virtual Restaurant *** ";
StartAgain:
cout<<"\n Enter the Price of the meal: ";
cin>>MealPrice;

if(MealPrice>0 && MealPrice<=1000)
{
cout<<"\n Price of Meal: "<<MealPrice;
SaleTax=MealPrice*0;
cout<<"\n Sales Tax : "<<SaleTax;
cout<<"\n-----------------------------------";
TotalAmount=MealPrice+SaleTax;
cout<<"\n Total Amount : "<<TotalAmount;
cout<<"\n This customer should be served with Candies ";
}

else if(MealPrice>1000 && MealPrice<=2000)
{
cout<<"\n Price of Meal: "<<MealPrice;
SaleTax=MealPrice*(.01);
cout<<"\n Sales Tax :"<<SaleTax;
cout<<"\n-----------------------------------";
TotalAmount=MealPrice+SaleTax;
cout<<"\n Total Amount : "<<TotalAmount;
cout<<"\n This customer should be served with Sweet Bread ";
}

else if(MealPrice>2000 && MealPrice<=3000)
{
cout<<"\n Price of Meal: "<<MealPrice;
SaleTax=MealPrice*(.02);
cout<<"\n Sales Tax :"<<SaleTax;
cout<<"\n-----------------------------------";
TotalAmount=MealPrice+SaleTax;
cout<<"\n Total Amount : "<<TotalAmount;
cout<<"\n This customer should be served with Pudding ";
}

else if(MealPrice>3000 && MealPrice<=4000)
{
cout<<"\n Price of Meal: "<<MealPrice;
SaleTax=MealPrice*(.02);
cout<<"\n Sales Tax :"<<SaleTax;
cout<<"\n-----------------------------------";
TotalAmount=MealPrice+SaleTax;
cout<<"\n Total Amount : "<<TotalAmount;
cout<<"\n This customer should be served with Cake ";
}

else if(MealPrice>4000)
{
cout<<"\n Price of Meal: "<<MealPrice;
SaleTax=MealPrice*(.02);
cout<<"\n Sales Tax :"<<SaleTax;
cout<<"\n-----------------------------------";
TotalAmount=MealPrice+SaleTax;
cout<<"\n Total Amount : "<<TotalAmount;
cout<<"\n This customer should be served with Trifle ";
}

GrandTotal =GrandTotal+TotalAmount;

cout<<"\n\n Do You Want to process another customer: ?";
cout<<"\n\n Enter'Y' for Yes or 'N' for exit>:";
cin>>Aziz;

switch (Aziz)
{
case'Y':
case'y':
NoOfCustomer++;

goto StartAgain;
break;

case'N':
case'n':
cout<<"\n\nGrand Totals: ";
cout<<"\nTotal Customers: "<<NoOfCustomer;
cout<<"\nTotal Amount for all Bills: "<<GrandTotal;
break;
}



getch();
}
solutions

Remember Me in Your Prayers

Best regard's
Ch. Muhammad Afaaq (Arrien)

MBA (Finance) Completed
Islamabad
Afaaq_Tariq@yahoo.com

0346-5329264

For latest assignments solved quizzes files GDB, Solve & Unsolved Past Papers come join us in

http://groups.google.com/group/vustudymania

If u like me than raise your hand with me
If not then raise ur standard
That's about me … !


--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

Re: [discussion_vu] Fwd: Idea Solution of CS606 Assignment #02

Plz share solved assignments of IT 430 & cs 507.

On Sun, Nov 13, 2011 at 4:05 PM, CoooL <asad.coool786@gmail.com> wrote:



     

Phr Yaad-e-Khuda Se Ghafil Iss Duniya Ki Hawass Mein

Iss Mukhtasir Si Zindgi Ka Ik Aor Din Beet Gaya...!!!

                <<<<<<<<<< sAd pAncHi >>>>>>>>>>


--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

[discussion_vu] ``**`` Daily Quran and Hadith 13 Nov 2011``**``


 
 
 
 
 I
N THE NAME OF "ALLAH"
Assalamu'alaikum Wa Rahmatullah e Wa Barakatuhu,

 

 



 




 

Note : If Quran and Hadith is not viewable CLICK HERE to Read Today Quran and Hadith.


Visit
www.quranurdu.com
www.tafheemonline.com
www.quranenglish.com
www.daroos.com
www.islamicrishta.com


 

Subscribe / UnSubscribe to QuranUrdu.com Group
Enter your Email Address for Subscribe or Unsubscribe

OR
To Subscribe
Click here
To Unsubscribe
Click here

 
"""Don't worry if people hate you because there are many others who love and care you in the earth. But be worried if ALLAH hates you because there is no other who loves and cares you in akhirat."""
 
 
*~*$H!N!NG $T@R*~*
SUHANALLAH HI WABIHAMDIHI SUBHANALLAH HIL AZEEM

--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

[discussion_vu] Fwd: Idea Solution of CS606 Assignment #02




     

Phr Yaad-e-Khuda Se Ghafil Iss Duniya Ki Hawass Mein

Iss Mukhtasir Si Zindgi Ka Ik Aor Din Beet Gaya...!!!

                <<<<<<<<<< sAd pAncHi >>>>>>>>>>


--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

Re: [discussion_vu] hello

what is intrsting mam?

On Tue, Nov 8, 2011 at 2:11 AM, anira koroma <anirakoroma@yahoo.com> wrote:
Hello,
 my name is miss Anira i saw your profile today at (www.pctechmagazine.com) and become interesting to know more about you ,i will like you to send me an e-mail to my box my dear please send mail to me directly with my email address so that i will send you my nice pictures and also tell you my purpose of contacting you thanks.
 from miss Anira.
--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

--
You received this message because you are subscribed to the Google Groups "Virtual University of Pakistan" group.
To post to this group, send email to discussion_vu@googlegroups.com.
To unsubscribe from this group, send email to discussion_vu+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/discussion_vu?hl=en.

[discussion_vu] Attaning The Impossible.

 
 
Thanx & Regards,
 
 
 


__________ Information from ESET NOD32 Antivirus, version of virus signature database 6605 (20111106) __________

The message was checked by ESET NOD32 Antivirus.

http://www.eset.com

PAID CONTENT