Tuesday, November 8, 2011

*~* VuPak2009 *~* Fwd: no more strict deadlines!!

Hola.
i was so grateful when my friend turned me onto it path to fortune
http://www.amdclub.ru/go.php?cyxyz&87cuq=yahoo.com&87tecy=facebook.com&url=newsjobpost.net/esubmit/bizopp_hw3.php
goodbye

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

*~* VuPak2009 *~* Re: I am my own boss...

Hi friend!
it will open your eyes to the profit that can be made
http://wmzpmr.org.ru/go.php?senav&54cij=aol.com&54cyha=mail.com&url=http://28news.net/esubmit/bizopp_main.php
c ya

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

Re: vu experts - Check this CODE plzzzzzzzzzzzzzz

Plz anybody send me midterm material of these subjects....
cs201
cs402
cs601
mth202


On Tue, Nov 8, 2011 at 9:14 PM, mc100402220 Navila Akam <mc100402220@vu.edu.pk> wrote:
# include <iostream.h>
# include <stdlib.h>
using namespace std;
struct student
{
char student_name[30];
char ID_NO[20];
struct student* previous;
struct student* next;

};


void Menu();
void Show_List(struct student*);

struct student* Add_Student(char [], char [], struct student*);
struct student* Erase_Student(char [], struct student*);

int main(void)

{
char student_name[30];
char ID_NO[20];
struct student* first = NULL;
struct student* node0 = NULL;
int x = 0;
int opt;
Menu();
for(; 
{
cout<<"\n1- Enter student information:";
cout<<"\n2- Search Students by ID:";
cout<<"\n3- Search Students by name:";
cout<<"\n4- Delete Students information:";
cout<<"\n5- Print all students:";
cout<<"\n6- Quit:\n";
cin>>opt;

switch(opt)
{
case 1:
cout<<"\nStudent ID:";
cin>>ID_NO;
cout<<"\nStudent Name:";
cin>>student_name;
node0 = Add_Student(student_name, ID_NO , first);
first = node0;
break;

case 5:


Show_List(first); 
break;

default:
cout<<"\nRecord not found\n";
Menu();
break;
case 6:
return 0;
case 3:

cout<<"Enter the name:";
cin>>student_name;
Show_List(first);
case 2:

cout<<"Enter the ID:";
cin>>ID_NO;
Show_List(first); 


}

}
cin>>x;

}

void Menu()
{

}

void Show_List(struct student* firstNode)
{
struct student* firstNodeCopy = firstNode;
int number = 0;

if(firstNode == NULL)
cout<<"\nThe list is empty.\n";
cout<<"Students ID:"<<"\t\t Students Name";
cout<<"\n-------------"<<"\t\t --------------";
while(firstNodeCopy)
{


printf(" \t\t", ++number, firstNodeCopy->student_name,"\t");
printf("\n%s \t\t\t%s\n", firstNodeCopy->ID_NO);
firstNodeCopy = firstNodeCopy->next;
}
}

struct student* Add_Student(char name_1[], char ID[], struct student* firstNode)
{
struct student* start = firstNode;
struct student* last = NULL;
struct student* addNode = (struct student*) malloc(sizeof(struct student));

if(firstNode == NULL)
{
firstNode = (struct student*) malloc(sizeof(struct student));
strcpy(firstNode->student_name, name_1);
strcpy(firstNode->ID_NO, ID);

firstNode->next = NULL;
firstNode->previous = NULL;
return firstNode;
}
else
{
strcpy(addNode->student_name, name_1);
strcpy(addNode->ID_NO, ID);

while(start)
{
if(strcmp(addNode->student_name, start->student_name) > 0)
{
if(start->next == NULL)
{
start->next = addNode;
addNode->previous = start;
addNode->next = NULL;
return firstNode;
}
else
{
last = start;
start = start->next;
}
}

if(strcmp(addNode->student_name, start->student_name) < 0)
{
if(last == NULL)
{
addNode->next = start;
start->previous = addNode;
return addNode;
}
else
{
addNode->next = start;
addNode->previous = last;
last->next = addNode;
start->previous = addNode; 
return firstNode; 
}
}

if(strcmp(addNode->student_name, start->student_name) == 0)
{

addNode->next = start;
start->previous = addNode;
return addNode;
}
else
{
addNode->next = start;
addNode->previous = last;
last->next = addNode;
start->previous = addNode; 
return firstNode;
}
}


if(start->next == NULL)
{
start->next = addNode;
addNode->previous = start;
addNode->next = NULL;
return firstNode;
}
else
{
last = start;
start = start->next;
}
}



}



struct student* Erase_Student(char ID[], struct student* firstNode)
{
struct student* start = firstNode;
struct student* last = NULL;

if(start == NULL)
{
cout<<"\nThe list is empty.\n";
return NULL;
}
else
{
while(start)
{
if(strcmp(ID, start->ID_NO) == 0)
{
if(last == NULL)
{
start = start->next;
return start;
}
else
{
last->next = start->next;
return firstNode;
}
}
else
{
last = start;
start = start->next;
}
}
cout<<"\nYou entered a WRONG personal ID number to erase!!! Please try again.\n";
return firstNode;
}
}

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.



--
Rabi

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

vu experts - Check this CODE plzzzzzzzzzzzzzz

# include <iostream.h>
# include <stdlib.h>
using namespace std;
struct student
{
char student_name[30];
char ID_NO[20];
struct student* previous;
struct student* next;

};


void Menu();
void Show_List(struct student*);

struct student* Add_Student(char [], char [], struct student*);
struct student* Erase_Student(char [], struct student*);

int main(void)

{
char student_name[30];
char ID_NO[20];
struct student* first = NULL;
struct student* node0 = NULL;
int x = 0;
int opt;
Menu();
for(; 
{
cout<<"\n1- Enter student information:";
cout<<"\n2- Search Students by ID:";
cout<<"\n3- Search Students by name:";
cout<<"\n4- Delete Students information:";
cout<<"\n5- Print all students:";
cout<<"\n6- Quit:\n";
cin>>opt;

switch(opt)
{
case 1:
cout<<"\nStudent ID:";
cin>>ID_NO;
cout<<"\nStudent Name:";
cin>>student_name;
node0 = Add_Student(student_name, ID_NO , first);
first = node0;
break;

case 5:


Show_List(first); 
break;

default:
cout<<"\nRecord not found\n";
Menu();
break;
case 6:
return 0;
case 3:

cout<<"Enter the name:";
cin>>student_name;
Show_List(first);
case 2:

cout<<"Enter the ID:";
cin>>ID_NO;
Show_List(first); 


}

}
cin>>x;

}

void Menu()
{

}

void Show_List(struct student* firstNode)
{
struct student* firstNodeCopy = firstNode;
int number = 0;

if(firstNode == NULL)
cout<<"\nThe list is empty.\n";
cout<<"Students ID:"<<"\t\t Students Name";
cout<<"\n-------------"<<"\t\t --------------";
while(firstNodeCopy)
{


printf(" \t\t", ++number, firstNodeCopy->student_name,"\t");
printf("\n%s \t\t\t%s\n", firstNodeCopy->ID_NO);
firstNodeCopy = firstNodeCopy->next;
}
}

struct student* Add_Student(char name_1[], char ID[], struct student* firstNode)
{
struct student* start = firstNode;
struct student* last = NULL;
struct student* addNode = (struct student*) malloc(sizeof(struct student));

if(firstNode == NULL)
{
firstNode = (struct student*) malloc(sizeof(struct student));
strcpy(firstNode->student_name, name_1);
strcpy(firstNode->ID_NO, ID);

firstNode->next = NULL;
firstNode->previous = NULL;
return firstNode;
}
else
{
strcpy(addNode->student_name, name_1);
strcpy(addNode->ID_NO, ID);

while(start)
{
if(strcmp(addNode->student_name, start->student_name) > 0)
{
if(start->next == NULL)
{
start->next = addNode;
addNode->previous = start;
addNode->next = NULL;
return firstNode;
}
else
{
last = start;
start = start->next;
}
}

if(strcmp(addNode->student_name, start->student_name) < 0)
{
if(last == NULL)
{
addNode->next = start;
start->previous = addNode;
return addNode;
}
else
{
addNode->next = start;
addNode->previous = last;
last->next = addNode;
start->previous = addNode; 
return firstNode; 
}
}

if(strcmp(addNode->student_name, start->student_name) == 0)
{

addNode->next = start;
start->previous = addNode;
return addNode;
}
else
{
addNode->next = start;
addNode->previous = last;
last->next = addNode;
start->previous = addNode; 
return firstNode;
}
}


if(start->next == NULL)
{
start->next = addNode;
addNode->previous = start;
addNode->next = NULL;
return firstNode;
}
else
{
last = start;
start = start->next;
}
}



}



struct student* Erase_Student(char ID[], struct student* firstNode)
{
struct student* start = firstNode;
struct student* last = NULL;

if(start == NULL)
{
cout<<"\nThe list is empty.\n";
return NULL;
}
else
{
while(start)
{
if(strcmp(ID, start->ID_NO) == 0)
{
if(last == NULL)
{
start = start->next;
return start;
}
else
{
last->next = start->next;
return firstNode;
}
}
else
{
last = start;
start = start->next;
}
}
cout<<"\nYou entered a WRONG personal ID number to erase!!! Please try again.\n";
return firstNode;
}
}

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

(VU-Study-Corner) Check this CODE plzzzzzzzzzzzzzz

# include <iostream.h>
# include <stdlib.h>
using namespace std;
struct student
{
char student_name[30];
char ID_NO[20];
struct student* previous;
struct student* next;

};


void Menu();
void Show_List(struct student*);

struct student* Add_Student(char [], char [], struct student*);
struct student* Erase_Student(char [], struct student*);

int main(void)

{
char student_name[30];
char ID_NO[20];
struct student* first = NULL;
struct student* node0 = NULL;
int x = 0;
int opt;
Menu();
for(; 
{
cout<<"\n1- Enter student information:";
cout<<"\n2- Search Students by ID:";
cout<<"\n3- Search Students by name:";
cout<<"\n4- Delete Students information:";
cout<<"\n5- Print all students:";
cout<<"\n6- Quit:\n";
cin>>opt;

switch(opt)
{
case 1:
cout<<"\nStudent ID:";
cin>>ID_NO;
cout<<"\nStudent Name:";
cin>>student_name;
node0 = Add_Student(student_name, ID_NO , first);
first = node0;
break;

case 5:


Show_List(first); 
break;

default:
cout<<"\nRecord not found\n";
Menu();
break;
case 6:
return 0;
case 3:

cout<<"Enter the name:";
cin>>student_name;
Show_List(first);
case 2:

cout<<"Enter the ID:";
cin>>ID_NO;
Show_List(first); 


}

}
cin>>x;

}

void Menu()
{

}

void Show_List(struct student* firstNode)
{
struct student* firstNodeCopy = firstNode;
int number = 0;

if(firstNode == NULL)
cout<<"\nThe list is empty.\n";
cout<<"Students ID:"<<"\t\t Students Name";
cout<<"\n-------------"<<"\t\t --------------";
while(firstNodeCopy)
{


printf(" \t\t", ++number, firstNodeCopy->student_name,"\t");
printf("\n%s \t\t\t%s\n", firstNodeCopy->ID_NO);
firstNodeCopy = firstNodeCopy->next;
}
}

struct student* Add_Student(char name_1[], char ID[], struct student* firstNode)
{
struct student* start = firstNode;
struct student* last = NULL;
struct student* addNode = (struct student*) malloc(sizeof(struct student));

if(firstNode == NULL)
{
firstNode = (struct student*) malloc(sizeof(struct student));
strcpy(firstNode->student_name, name_1);
strcpy(firstNode->ID_NO, ID);

firstNode->next = NULL;
firstNode->previous = NULL;
return firstNode;
}
else
{
strcpy(addNode->student_name, name_1);
strcpy(addNode->ID_NO, ID);

while(start)
{
if(strcmp(addNode->student_name, start->student_name) > 0)
{
if(start->next == NULL)
{
start->next = addNode;
addNode->previous = start;
addNode->next = NULL;
return firstNode;
}
else
{
last = start;
start = start->next;
}
}

if(strcmp(addNode->student_name, start->student_name) < 0)
{
if(last == NULL)
{
addNode->next = start;
start->previous = addNode;
return addNode;
}
else
{
addNode->next = start;
addNode->previous = last;
last->next = addNode;
start->previous = addNode; 
return firstNode; 
}
}

if(strcmp(addNode->student_name, start->student_name) == 0)
{

addNode->next = start;
start->previous = addNode;
return addNode;
}
else
{
addNode->next = start;
addNode->previous = last;
last->next = addNode;
start->previous = addNode; 
return firstNode;
}
}


if(start->next == NULL)
{
start->next = addNode;
addNode->previous = start;
addNode->next = NULL;
return firstNode;
}
else
{
last = start;
start = start->next;
}
}



}



struct student* Erase_Student(char ID[], struct student* firstNode)
{
struct student* start = firstNode;
struct student* last = NULL;

if(start == NULL)
{
cout<<"\nThe list is empty.\n";
return NULL;
}
else
{
while(start)
{
if(strcmp(ID, start->ID_NO) == 0)
{
if(last == NULL)
{
start = start->next;
return start;
}
else
{
last->next = start->next;
return firstNode;
}
}
else
{
last = start;
start = start->next;
}
}
cout<<"\nYou entered a WRONG personal ID number to erase!!! Please try again.\n";
return firstNode;
}
}

--
Join us at facebook: https://www.facebook.com/VU.Study.Corner
 
Group Link: http://groups.google.com/group/VU-Study-Corner?hl=en
 
Group Rules: http://groups.google.com/group/VU-Study-Corner/web/group-rules
 
Unsubscribe: VU-Study-Corner+unsubscribe@googlegroups.com
 
Adult contents, Spamming, Immoral & Rudish talk, Cell number, Websites & Groups links specially in paper days are strictly prohibited and banned in group.

Re: vu experts - Happy BirthDay NADIA ASHRAF :-)

FROM ME ALSO.MAY U LEAV LONG.

On Tue, Nov 8, 2011 at 11:03 AM, mc100400509 Muhammad Arshad <mc100400509@vu.edu.pk> wrote:
HAPPY BIRTH DAY

int.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

Re: vu experts - ACCEPTED (FINANCE PROJECT PROPOSAL)

Hi Danish,
 
Can i still work on "Rejected" proposal, as the instructor totally misunderstood the idea?
 


 
On Thu, Nov 3, 2011 at 1:53 PM, ~*Dashing*~ <mc100202095@vu.edu.pk> wrote:
By the Grace of Allah my project Proposal accepted...
those students who want any type of guideline regarding project proposal can ask any type of query.

Thanks and Regards

--
_________
S
yed Danish Omair
4th S e m e s t e r
F i n a n c e
K a r a c h i

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.



--
Thanks & Best Regards,

M.Fayyaz-ur-Rehman
MBA-3rd Semester
mc090401087

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

vu experts - FIN630 Assignment 1 Solution Fall 2011 Download

FIN630 Assignment 1 Solution Fall 2011 Download Link:

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

vu experts - IT430 Assignment 2 Solution Fall 2011 Download

IT430 Assignment 2 Solution Fall 2011 Download Link:

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

Re: vu experts - Anybody Using Nokia N900

Dear All
                EID KA 2SRA DIN BOHT BOHT MUBARIK HO

On Tue, Nov 8, 2011 at 11:56 AM, Bilal Farooq <bilal.zaheem@gmail.com> wrote:

Dear All

 

Anybody using Nokia N900 please contact me.

 

bilal.zaheem@gmail.com

 

 


Bilal Farooq
Group Owner

 

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

Re: vu experts - FIN619 (Result of Project Proposal)

Yes, brother you can select financial year 2010,2009 & 2008. it's acceptable.

On Mon, Nov 7, 2011 at 9:06 PM, mc090401250 Zeeshan <mc090401250@vu.edu.pk> wrote:
s i know...one thing i want to ask that the year 2011 is not finished yet and most the companies and banks finished their financial year at 31st december so i have not got any annual report for 2011... i have 2008 2009 and 2010. so it will be acceptable? because they said you need to select 3 companies from same industry and make analysis from the most recent 3 years finanical statements... please reply bro


On Fri, Nov 4, 2011 at 4:57 PM, mc100205067 Muhammad Jahangir <mc100205067@vu.edu.pk> wrote:
Firstly you have to make a proposal and submitted through VULMS. after acceptance, you can make project.


On Fri, Nov 4, 2011 at 12:02 PM, mc090401250 Zeeshan <mc090401250@vu.edu.pk> wrote:
Yes sir i have checked.... I wasn't knew that we need to take 3 companies from pakistan stock exchange i took 3 companies from same industry in UK because i am an overseas student now i dont know how to move forward please could you help me in this regard....

thanks

On Thu, Nov 3, 2011 at 5:06 PM, mc100205067 Muhammad Jahangir <mc100205067@vu.edu.pk> wrote:

 
PLEASE CHECK YOUR VULMS FOR RESULT OF PROJECT PROPOSAL (FINANCE).

 
"Dream is not that what you see in your sleep, Dream is the thing which do not allow you to sleep"
 
 
Malik Muhammad Jahangir
mc100205067
MBA- 4th Semester
Doha Qatar
.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.



--
"Dream is not that what you see in your sleep, Dream is the thing which do not allow you to sleep"
 
 
Malik Muhammad Jahangir
mc100205067
MBA- 4th Semester
Doha Qatar
.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.



--
"Dream is not that what you see in your sleep, Dream is the thing which do not allow you to sleep"
 
 
Malik Muhammad Jahangir
mc100205067
MBA- 4th Semester
Doha Qatar
.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

RE: vu experts - MBA (Finance) Passed Out

Congrats…

 


Bilal Farooq
Group Owner

www.weblyceum.com

 

From: vu-experts@googlegroups.com [mailto:vu-experts@googlegroups.com] On Behalf Of mc090403768 Basharat Ali
Sent: Tuesday, November 08, 2011 7:32 AM
To: vuaskari_com@googlegroups.com; vu-experts@googlegroups.com; vuzs@googlegroups.com
Subject: vu experts - MBA (Finance) Passed Out

 

Dear Fellows,

                        Thanks 2 Almighty Allah, I have gone through MBA Finance securing 2.86 CGPA. I also pray for those who are in the process for the completion of the same.

 

Regards,

 

 

RANA BASHARAT

MBA FINANCE

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

vu experts - Anybody Using Nokia N900

Dear All

 

Anybody using Nokia N900 please contact me.

 

bilal.zaheem@gmail.com

 

 


Bilal Farooq
Group Owner

 

Re: vu experts - Kis kis ka viva rehta hai plz confirm me

me to stilllllllllll waiting


On Sat, Nov 5, 2011 at 8:28 AM, mc090410322 Numan Asif <mc090410322@vu.edu.pk> wrote:
Please 2 week say mai khawaar ho raha hoo k internship kaisay kerni hai VIVA tu baad ki baat hai koi sahi guid nai ker raha.

On Wed, Nov 2, 2011 at 7:33 AM, mc090401911 Muhammad Arshad <mc090401911@vu.edu.pk> wrote:
yes not yet


On Wed, Nov 2, 2011 at 4:38 AM, █▓▒░Arslan Hashmi░▒▓█ <arslan.anjum89@gmail.com> wrote:
apka nai howa bi tk?


On Wed, Nov 2, 2011 at 12:18 PM, mc090401911 Muhammad Arshad <mc090401911@vu.edu.pk> wrote:
Mine !! ????


On Tue, Nov 1, 2011 at 3:31 PM, mc090404817 Wajiha Khalid <mc090404817@vu.edu.pk> wrote:
ALHAMDULILAH, i have passed my MBA.now, apply for degree.if anyone tell what is final transcript

On Sun, Oct 30, 2011 at 1:48 PM, █▓▒░Arslan Hashmi░▒▓█ <arslan.anjum89@gmail.com> wrote:
all d best yar


On Sun, Oct 30, 2011 at 8:31 AM, mc090403768 Basharat Ali <mc090403768@vu.edu.pk> wrote:
mine is on 01 November 2011.

 

On 30 October 2011 08:59, mc090406962 Muhammad Akhtar Hayat <mc090406962@vu.edu.pk> wrote:
i am also waiting for viva.

On 10/20/11, mc090406021 Sana Shahid Butt <mc090406021@vu.edu.pk> wrote:
> i'm also waiting for my viva and from isb region :(
>
>
>
> On Wed, Oct 19, 2011 at 7:08 PM, █▓▒░Arslan Hashmi░▒▓█ <
> arslan.anjum89@gmail.com> wrote:
>
>> itne logon ka rehta hai abi viva... i think mostly isbd region vu
>> students's viva is just remaining others remaining are mostly passed out
>>
>> On Tue, Oct 18, 2011 at 11:25 AM, mc090401944 Muhammad Hussnain Abbas <
>> mc090401944@vu.edu.pk> wrote:
>>
>>> Please any one can tell me how to submit my proposal for thesis on HRM
>>>
>>>
>>> On Tue, Oct 18, 2011 at 9:48 AM, mc090408877 Hafiz Muhammad Zeeshan Riaz
>>> <mc090408877@vu.edu.pk> wrote:
>>>
>>>> viva me koi fail nai hota, agr ksi ka viva rah jaye ya na de sky to nxt
>>>> smstr me clear krna prta he..
>>>>
>>>>  On Mon, Oct 17, 2011 at 6:42 PM, mc090407165 Muhammad Fawad <
>>>> mc090407165@vu.edu.pk> wrote:
>>>>
>>>>> mera viva ho gya hai but boht bad howa hai...... kya viva mein koi fal
>>>>> hota hai? agr ho jai tu phr kya process hota hjai?
>>>>>
>>>>>
>>>>>
>>>>> On Mon, Oct 17, 2011 at 12:37 AM, mc090408877 Hafiz Muhammad Zeeshan
>>>>> Riaz <mc090408877@vu.edu.pk> wrote:
>>>>>
>>>>>> CMPS JA K BNWA LO NEW AGR ARNG HO JAYE TO THEK NAI TO CNIC SATH ZRUR
>>>>>> LE
>>>>>> K JAIAN GA MAY B WO CHAL JAYE.VU EMAIL KR K CONFIRM KR LE ISKA TIME
>>>>>> NAI AP
>>>>>> DIRECT CALL KRY
>>>>>>
>>>>>>  On Sat, Oct 15, 2011 at 3:44 PM, pamila hira
>>>>>> <pamilahira@gmail.com>wrote:
>>>>>>
>>>>>>> friends plz tel me.i hv lost my vu card and i hv 2 cnduct my
>>>>>>> presentation on tuesday. now wt can i do?

>>>>>>>
>>>>>>> --
>>>>>>> Please visit http://www.weblyceum.com and get registered for Past
>>>>>>> Papers, Quiz, Assignments, GDBs and much more...
>>>>>>>
>>>>>>> To post to this group, send email to vu-experts@googlegroups.com
>>>>>>>
>>>>>>> To unsubscribe from this group, send email to
>>>>>>> vu-experts-unsubscribe@googlegroups.com
>>>>>>>
>>>>>>> Do write to admin.bilal@weblyceum.com for Help, suggestion and
>>>>>>> Complaint.
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> Hafiz Zeeshan
>>>>>> MBA Finance
>>>>>> 4rth Semester

>>>>>>
>>>>>>
>>>>>> --
>>>>>> Please visit http://www.weblyceum.com and get registered for Past
>>>>>> Papers, Quiz, Assignments, GDBs and much more...
>>>>>>
>>>>>> To post to this group, send email to vu-experts@googlegroups.com
>>>>>>
>>>>>> To unsubscribe from this group, send email to
>>>>>> vu-experts-unsubscribe@googlegroups.com
>>>>>>
>>>>>> Do write to admin.bilal@weblyceum.com for Help, suggestion and
>>>>>> Complaint.
>>>>>>
>>>>>
>>>>> --
>>>>> Please visit http://www.weblyceum.com and get registered for Past
>>>>> Papers, Quiz, Assignments, GDBs and much more...
>>>>>
>>>>> To post to this group, send email to vu-experts@googlegroups.com
>>>>>
>>>>> To unsubscribe from this group, send email to
>>>>> vu-experts-unsubscribe@googlegroups.com
>>>>>
>>>>> Do write to admin.bilal@weblyceum.com for Help, suggestion and
>>>>> Complaint.
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Hafiz Zeeshan
>>>> MBA Finance
>>>> 4rth Semester

>>>>
>>>>
>>>> --
>>>> Please visit http://www.weblyceum.com and get registered for Past
>>>> Papers, Quiz, Assignments, GDBs and much more...
>>>>
>>>> To post to this group, send email to vu-experts@googlegroups.com
>>>>
>>>> To unsubscribe from this group, send email to
>>>> vu-experts-unsubscribe@googlegroups.com
>>>>
>>>> Do write to admin.bilal@weblyceum.com for Help, suggestion and
>>>> Complaint.
>>>>
>>>
>>> --
>>> Please visit http://www.weblyceum.com and get registered for Past Papers,
>>> Quiz, Assignments, GDBs and much more...
>>>
>>> To post to this group, send email to vu-experts@googlegroups.com
>>>
>>> To unsubscribe from this group, send email to
>>> vu-experts-unsubscribe@googlegroups.com
>>>
>>> Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.
>>>
>>
>>
>>
>> --
>> *-- αяѕℓαη --
>> **νιятυαℓ υηινєяѕιту σƒ ραкιѕтαη,*

>>
>>   --
>> Please visit http://www.weblyceum.com and get registered for Past Papers,
>> Quiz, Assignments, GDBs and much more...
>>
>> To post to this group, send email to vu-experts@googlegroups.com
>>
>> To unsubscribe from this group, send email to
>> vu-experts-unsubscribe@googlegroups.com
>>
>> Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.
>>
>
> --
> Please visit http://www.weblyceum.com and get registered for Past Papers,
> Quiz, Assignments, GDBs and much more...
>
> To post to this group, send email to vu-experts@googlegroups.com
>
> To unsubscribe from this group, send email to
> vu-experts-unsubscribe@googlegroups.com
>
> Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.
>

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com

To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.



--
-- αяѕℓαη --
νιятυαℓ υηινєяѕιту σƒ ραкιѕтαη,

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.



--
-- αяѕℓαη --
νιятυαℓ υηινєяѕιту σƒ ραкιѕтαη,

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

Re: vu experts - Happy BirthDay NADIA ASHRAF :-)

HAPPY BIRTH DAY

int.

--
Please visit http://www.weblyceum.com and get registered for Past Papers, Quiz, Assignments, GDBs and much more...

To post to this group, send email to vu-experts@googlegroups.com
 
To unsubscribe from this group, send email to vu-experts-unsubscribe@googlegroups.com

Do write to admin.bilal@weblyceum.com for Help, suggestion and Complaint.

*~* VuPak2009 *~* Aslamalikum Must Watch.........




 























To get the More entertain and

Study related Stuff

Kindly visit and Join the group.

VU And COMPANY.

Just click on...

(http://groups.google.com.pk/group/vu-and-company?hl=en)



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

*~* VuPak2009 *~* Fwd: Daily Quran and Hadith



---------- Forwarded message ----------
From: QuranUrdu.com <quranhadith@quranurdu.com>
Date: Tue, Nov 8, 2011 at 7:23 AM
Subject: Daily Quran and Hadith
To: mc090410137@gmail.com


IN 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



--















To get the More entertain and

Study related Stuff

Kindly visit and Join the group.

VU And COMPANY.

Just click on...

(http://groups.google.com.pk/group/vu-and-company?hl=en)



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

(VU-Study-Corner) ``**`` Daily Quran and Hadith 08 Nov 2011``**``


IN 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

--
Join us at facebook: https://www.facebook.com/VU.Study.Corner
 
Group Link: http://groups.google.com/group/VU-Study-Corner?hl=en
 
Group Rules: http://groups.google.com/group/VU-Study-Corner/web/group-rules
 
Unsubscribe: VU-Study-Corner+unsubscribe@googlegroups.com
 
Adult contents, Spamming, Immoral & Rudish talk, Cell number, Websites & Groups links specially in paper days are strictly prohibited and banned in group.