Friday, November 11, 2011

Re: vu experts - CS507 Assignment 2 Solution Fall 2011 Download

Just for idea

On Fri, Nov 11, 2011 at 7:06 PM, mc090406807 Muhammad Nabeel <mc090406807@vu.edu.pk> wrote:
plz send me the solution of 2nd assignment of CS_507



On Wed, Nov 9, 2011 at 9:29 PM, WebLyceum Administration <weblyceum@gmail.com> wrote:
CS507 Assignment 2 Solution Fall 2011 Download Link:
--
Best Regards,
Weblyceum Team
Helpline : +92-992-501991
Email : support@weblyceum.com
Group Admin : group-admin@weblyceum.com
URL : https://www.weblyceum.com 
Google Group : http://groups.google.com/group/weblyceum

--
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.

(VU-Study-Corner) Re: vu.edu.pk Check this CODE plzzzzzzzzzzzzzz

i am pointing an error using bold and big text in code. please look ????


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;


On Tue, Nov 8, 2011 at 8:14 AM, 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;
}
}

--
You received this message because you are subscribed to the Google
Groups "vu-edu-pk" group.
 
To post to this group, send email to vu-edu-pk@googlegroups.com
 
For more options, visit this group at
http://groups.google.com.pk/group/vu-edu-pk?hl=en?hl=en

--
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 - Viva call kainsi ho gee. kia important main aai gee ya inbox main aai ge

app rozana apnai VU kai ID sai search karo jo bi mail aye gee find
hojai gee or DELETE hojai to us ka koi elaj nai hai.

On 11/11/11, mc090410134 Farooq Qaisar <mc090410134@vu.edu.pk> wrote:
> Inbox
>
> On Fri, Nov 11, 2011 at 12:48 PM, mc090401002 Muhammad Habib <
> mc090401002@vu.edu.pk> wrote:
>
>> Viva call kainsi ho gee. kia important main aai gee ya inbox main aai ge.
>> kia agar ghalti see doosree mail ky sath deleat ho gai to kia karna ho ga
>>
>> dostoo please batao
>>
>> --
>> 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.

vu experts - CS101 Assignment # 02 Idea Solution



--
Haydar Nawaz
MBA 4th Semester (Management)
Virtual University of Pakistan

--
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.

(Attock VU Group) CS101 Assignment # 02 Idea Solution



--
Haydar Nawaz
MBA 4th Semester (Management)
Virtual University of Pakistan

--
█████████████████████████████████████████████████
██████████████████ Basic Group Rules ███████████████████
Immoral & Rudish talk, Earning program links, Cell number for friendship purpose, Websites/Groups Links, Adult contents, Criticize-able Islamic stuff, Spreading disruption, Spamming are strictly prohibited and banned in group.
█████████████████████████████████████████████████
█████████████████████████████████████████████████
 
Follow these detailed Group Rules, otherwise you will be banned at any time.
https://docs.google.com/document/d/1YJxA8x3_U7C1lRc0EXfLrJpco4A1XkB1vDxOTqOd3Jg/edit?hl=en&authkey=CNDy9tkJ
 
Group Email Address:
Attock-VU-Group@Googlegroups.Com
 
Join group by sending a blank email from University ID at:
Attock-VU-Group+Subscribe@Googlegroups.Com
 
████████████ Click here to Join this group at Facebook:████████████
♥ ♥ ♥ https://www.facebook.com/home.php?sk=group_111877855568034 ♥ ♥ ♥
█████████████████████████████████████████████████

(VU-Study-Corner) CS507 Online Quiz#1 By Naveed Iqbal Khan

Assalam-u-Alaikum WRB!
Here's today solved CS507 Online Quiz#1 shared by Naveed Iqbal Khan


--
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.

*~* VuPak2009 *~* ~*~Jobs in NADRA~*~ Country Manager Required


A.o.A
Dear All,
We need a country Manager for our call center setup.
plz find attached advert and follow the link below.
the advert appeared in Dawn on Sunday 6th.
Thats really a BIG JOB....... The person will be
BOSS of NADRA Call Centers all over Pakistan.

https://paperpk.com/81637/nadra-islamabad-jobs





--
Thanks.
Regards,

----
Nemat Ullah Khan
MBA (Mngmnt)
Virtual University
of Pakistan.
 ----
Assistant Manager
NADRA Call Center
Lahore.

--
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 - MGT 201 Assignment - 1 Solution required

I think for the first plan Interest rate  of 6.5 % should not divided by 2, as payments are after every six months

On Fri, Nov 11, 2011 at 2:46 PM, mc090403918 Sehrish Javed <mc090403918@vu.edu.pk> wrote:
PLAN A
First plan requires a deposit of Rs 5000 every six months with annual
interest rate 6.5 percent, compounded semiannually.
QUESTION
What will be the future value of the first plan at the end of 10 year?
Part A answer:
Future value= .PMT [((1+1) n-1)/i]
Future value=5000[((1+.0323)20 -1)/.0325]
Future value=5000[((1.0323)20-1)/.0323]
Future value=5000[(1.895837924-1)/.0325]
Future value=5000[.895837924/.0325]
Future value=137821.2191

PLAN B
However under the second plan, he has to deposit Rs 10000 every year
with interest rate pf 7.5 percent compounded annually.

Part B answer:
Future value= .PMT [((1+1) n-1)/i]
Future value=10000 [((1+.075) -1)/.075]
Future value=10000 [((1.075)10-1)/.075]
Future value=10000 [(2.061031562-1)/.075]
Future value=10000 [1.061031562/.075]
Future value=10000[14.1470875]
Future value=141470.875

Part C
You are required to analyze that plan which would be suitable for him
keeping in his view major concern. The value of the plan at the end of
10 year.
Part c answer:
2nd plan is suitable for him whereas keep in view his main concern.

Part D
What would be the change in your decision if the interest rate on 2nd
plan is also 6.5 percent?
Part D answer:
If interest rate of the 2nd plan 6.5 percent than I will chose plan A
because using 6.5 percent interest rate the FV for plan would be
134944.22 which is lower than plan A
 is it right solution or not


On 11/11/11, mc090404040 Muhammad Mateen <mc090404040@vu.edu.pk> wrote:
>  need solutions of MGT 201 Assignment 1. Please upload right
>> solution
> On 11/10/11, mc110202236 Tariq Maqsood <mc110202236@vu.edu.pk> wrote:
>> Dear Allz,
>>
>> I need solutions of MGT 201 Assignment 1. Please upload right
>> solution.....................
>>
>>
>> MC110202236
>>
>> --
>> 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.



--
Ahtisham Khalid,
MBA (II-Semester)
Virtual University of Pakistan.

--
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)

i think this year 2009,2010 and 2011

On Tue, Nov 8, 2011 at 12:02 PM, mc100205067 Muhammad Jahangir <mc100205067@vu.edu.pk> wrote:
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.

--
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 - Seniors MBA(Finance) Share tour Internship Reports plz

hello !
if any one want information or material about final project finance (fin-619)
 contact sms me 0333-3009918
On Fri, Nov 11, 2011 at 9:18 AM, mc090408877 Hafiz Muhammad Zeeshan Riaz <mc090408877@vu.edu.pk> wrote:
i will tell u soon..........


On Thu, Nov 10, 2011 at 8:11 PM, mc090410322 Numan Asif <mc090410322@vu.edu.pk> wrote:
i also what to know the best way to pass internship and criteria viva, presentation etc.
Any one allah ka banda

On Fri, Sep 9, 2011 at 3:17 AM, Naveed Nawaz <sillysensitive@gmail.com> wrote:

AOA Seniors who have completed their MBA(Finance) plz share ur internship report with me...I m in 4th semester with MBA(Finance).Hafiz Salman,Bookworm and all brilliant student do share .It will be very helpful for me...thanks
--
Silent Noise 03006608261
MBA
 4th (Finance)
Faisalabad  (VUFSD01 Civil Line)

--
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
Complete


--
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.

(VU-Study-Corner) CS507 Online Quiz#1 Lecture# 1 to 10 11th November 2011

Assalam-u-Alaikum WRB!

Here's today solved CS507 Online Quiz#1 Lecture#1 to 10

 

 

_____________ are created for just one department.

Data marts  

Narrative data models

Data driven DSS

Graphical data models

 

 

A newspaper article is a primary source if it reports events, but a secondary source if it analyses and comments on those events.

True 

False

 

 

Medium size organizations usually have simple management structure than those of small organizations;

True

False 

 

 

Participative management style approach is a combination of both authoritative and mixed style

True

False  

 

 

High level of foreign trade has resulted in imports and exports which require inter linkage for smooth coordination

True 

False

 

 

Organization is a group of elements that are integrated with the common purpose of achieving an object.

True

False  

 

 

In which of the following organizations all critical managerial positions are usually controlled by the family members.

Medium Size 

LargeSize

Small Size

none of these options

 

 

__________ is known as the father of warehouse

Stephen hawking

Bill gates

Bill Inmon 

Edgar Codd

 

 

There is a greater emphasis on models in case of _____________

KSS

DSS 

MIS

TPS

 

 

Which of the following are original materials on which other research is based?

Primary Sources 

Secondary sources

Teritiary Sources

option a and b both

 

 

Note

I make every effort to ensure that there are no errors in this quiz. However, no one is perfect, and mistakes do occur. If you find an error in this quiz, I would be very grateful for your feedback.

 

 

 

 

--
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 - ***mth603 quize****

Plzzzzzzzzzzzz share ur quiz mth603


--
Mr.Muhammad Afzal

--
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 *~* Funny Punjabi Video

Kindly visit this Funny video.


http://www.youtube.com/watch?v=S0YRNaFzico

Thanks & Regards

Muhammad Asim

--
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 experts -

plz share the mth603 quizes file as soon as possible. plz tick the correct option also, if u can. i m waiting for the quizes file

--
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 - ***mth603 quize****

plz share the mth603 quizes file as soon as possible. plz tick the correct option also, if u can. i m waiting for the quizes file

--
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 - MGT 201 Assignment - 1 Solution required

a.      What will be the future value of first plan at the end of 10 years?

FV = 5000 * (1 + (0.065/2) 2*10 -1/0.065/10

FV = 5000 * (1+0.0325) 20 -1/0.0065

FV = 5000 * 0.895838/0.0065

FV = 689,106.1

b.      What will be the future value of the second plan at the end of 10 years?

FV = 10,000 * (1+0.075) 10 – 1/0.075

FV = 10,000 * (1.075) 10 – 1/0.075

FV = 10,000 * 1.061032/0.075

FV = 141,470

c.      You are required to analyze that which plan would be suitable for him while keeping in view his major concern: 'The value of plan at the end of 10th year'.

First Plan is suitable.

d.      What would be the change in your decision if the interest rate on second plan is also 6.5 percent? 

There will be no change if the interest rate on second plan is also 6.5 percent. Because the future value in first plan is greater than all others.


On Fri, Nov 11, 2011 at 1:08 PM, mc090403689 Muhammad Asim <mc090403689@vu.edu.pk> wrote:
mgt201 required


On Fri, Nov 11, 2011 at 9:38 AM, mc090404040 Muhammad Mateen <mc090404040@vu.edu.pk> wrote:
 need solutions of MGT 201 Assignment 1. Please upload right
> solution
On 11/10/11, mc110202236 Tariq Maqsood <mc110202236@vu.edu.pk> wrote:
> Dear Allz,
>
> I need solutions of MGT 201 Assignment 1. Please upload right
> solution.....................
>
>
> MC110202236
>
> --
> 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.



--
Muhammad Ali Hashmi
Program Officer / Office Incharge

--
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 - Viva call kainsi ho gee. kia important main aai gee ya inbox main aai ge

importan ka kia scen he yr kia yh folder he like inbox ya filter he like starred
ak student ka viva miss ho gya tha importnt me any ki wja se wo roz inbox chk krta rha bt viva email importnt me thi jo us ne date guzarny k bd unfortunitually dakh li asa mumkin he kia roshni daly plzzzz

On Fri, Nov 11, 2011 at 12:48 PM, mc090401002 Muhammad Habib <mc090401002@vu.edu.pk> wrote:
Viva call kainsi ho gee. kia important main aai gee ya inbox main aai ge. kia agar ghalti see doosree mail ky sath deleat ho gai to kia karna ho ga

dostoo please batao

--
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
Complete

--
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 - MGT 201 Assignment - 1 Solution required

PLAN A
First plan requires a deposit of Rs 5000 every six months with annual
interest rate 6.5 percent, compounded semiannually.
QUESTION
What will be the future value of the first plan at the end of 10 year?
Part A answer:
Future value= .PMT [((1+1) n-1)/i]
Future value=5000[((1+.0323)20 -1)/.0325]
Future value=5000[((1.0323)20-1)/.0323]
Future value=5000[(1.895837924-1)/.0325]
Future value=5000[.895837924/.0325]
Future value=137821.2191

PLAN B
However under the second plan, he has to deposit Rs 10000 every year
with interest rate pf 7.5 percent compounded annually.

Part B answer:
Future value= .PMT [((1+1) n-1)/i]
Future value=10000 [((1+.075) -1)/.075]
Future value=10000 [((1.075)10-1)/.075]
Future value=10000 [(2.061031562-1)/.075]
Future value=10000 [1.061031562/.075]
Future value=10000[14.1470875]
Future value=141470.875

Part C
You are required to analyze that plan which would be suitable for him
keeping in his view major concern. The value of the plan at the end of
10 year.
Part c answer:
2nd plan is suitable for him whereas keep in view his main concern.

Part D
What would be the change in your decision if the interest rate on 2nd
plan is also 6.5 percent?
Part D answer:
If interest rate of the 2nd plan 6.5 percent than I will chose plan A
because using 6.5 percent interest rate the FV for plan would be
134944.22 which is lower than plan A
is it right solution or not


On 11/11/11, mc090404040 Muhammad Mateen <mc090404040@vu.edu.pk> wrote:
> need solutions of MGT 201 Assignment 1. Please upload right
>> solution
> On 11/10/11, mc110202236 Tariq Maqsood <mc110202236@vu.edu.pk> wrote:
>> Dear Allz,
>>
>> I need solutions of MGT 201 Assignment 1. Please upload right
>> solution.....................
>>
>>
>> MC110202236
>>
>> --
>> 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 - CS507 Quiz Conference Today

m trying to add but there is some problem. so add me pakio.redmoon40@gmail.com


 
On Fri, Nov 11, 2011 at 1:37 PM, WebLyceum Administration <weblyceum@gmail.com> wrote:
CS507 Quiz Conference Today
03:00 PM - 04:00 PM
a Gtalk
add this is: quiz@weblyceum.com

--
Best Regards,
Weblyceum Team
Helpline : +92-992-501991
Email : support@weblyceum.com
Group Admin : group-admin@weblyceum.com
URL : https://www.weblyceum.com 
Google Group : http://groups.google.com/group/weblyceum

--
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 - ***mth603 quize****

m going to make quizz file so Dont wary i will share mth603 quizz file


 
On Fri, Nov 11, 2011 at 10:53 AM, **Sadia!!!::** <mc100402096@vu.edu.pk> wrote:
plz shear mth603 quizes

--
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.

vu experts - CS507 Quiz Conference Today

CS507 Quiz Conference Today
03:00 PM - 04:00 PM
a Gtalk
add this is: quiz@weblyceum.com

--
Best Regards,
Weblyceum Team
Helpline :+92-992-501991
Email :support@weblyceum.com
Group Admin :group-admin@weblyceum.com
URL :https://www.weblyceum.com 
Google Group :http://groups.google.com/group/weblyceum

--
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 - MGT 201 Assignment - 1 Solution required

mgt201 required

On Fri, Nov 11, 2011 at 9:38 AM, mc090404040 Muhammad Mateen <mc090404040@vu.edu.pk> wrote:
 need solutions of MGT 201 Assignment 1. Please upload right
> solution
On 11/10/11, mc110202236 Tariq Maqsood <mc110202236@vu.edu.pk> wrote:
> Dear Allz,
>
> I need solutions of MGT 201 Assignment 1. Please upload right
> solution.....................
>
>
> MC110202236
>
> --
> 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.

vu experts - Viva call kainsi ho gee. kia important main aai gee ya inbox main aai ge

Viva call kainsi ho gee. kia important main aai gee ya inbox main aai ge. kia agar ghalti see doosree mail ky sath deleat ho gai to kia karna ho ga

dostoo please batao

--
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 - ***mth603 quize****

plz shear mth603 quizes

--
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) ***mth603 quize****

plz shear mth603 quizes

--
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.

Fwd: (Attock VU Group) ``**``....HAJJ Special..DONT MISS DUA TODAY.....from $$....MST C(Golden)....``**``



---------- Forwarded message ----------
From: ~☆~SHINING STAR~☆~ <m.shining90@gmail.com>
Date: Sat, Nov 5, 2011 at 7:12 AM
Subject: (Attock VU Group) ``**``....HAJJ Special..DONT MISS DUA TODAY.....from $$....MST C(Golden)....``**``
To: virtual-university-pakistan <virtual-university-pakistan@googlegroups.com>, VU-Cafeteria <vu-cafeteria@googlegroups.com>, vu-cs-experts <vu-cs-experts@googlegroups.com>, vu-study-corner <vu-study-corner@googlegroups.com>, vu-pink <vu-pink@googlegroups.com>, Vu 2009 <virtual-university-of-pakistan-2009@googlegroups.com>, vu-and-company <vu-and-company@googlegroups.com>, VU_discussion <discussion_vu@googlegroups.com>, coool_vu_students <coool_vu_students@googlegroups.com>, pak-youth <pak-youth@googlegroups.com>, blue_heaven <blue_heaven@googlegroups.com>, vustudymasti <vustudymasti@googlegroups.com>, attock-vu-group <attock-vu-group@googlegroups.com>, vu-structure@googlegroups.com



REFRESHING......PLZ DONT WASTE THE DAY ........TODAY....MAKE DUASS..AS MUCH AS U CAN


 
 

 

 
 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
"""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
 

 

 
 


 

--
█████████████████████████████████████████████████
██████████████████ Basic Group Rules ███████████████████
Immoral & Rudish talk, Earning program links, Cell number for friendship purpose, Websites/Groups Links, Adult contents, Criticize-able Islamic stuff, Spreading disruption, Spamming are strictly prohibited and banned in group.
█████████████████████████████████████████████████
█████████████████████████████████████████████████
 
Follow these detailed Group Rules, otherwise you will be banned at any time.
https://docs.google.com/document/d/1YJxA8x3_U7C1lRc0EXfLrJpco4A1XkB1vDxOTqOd3Jg/edit?hl=en&authkey=CNDy9tkJ
 
Group Email Address:
Attock-VU-Group@Googlegroups.Com
 
Join group by sending a blank email from University ID at:
Attock-VU-Group+Subscribe@Googlegroups.Com
 
████████████ Click here to Join this group at Facebook:████████████
♥ ♥ ♥ https://www.facebook.com/home.php?sk=group_111877855568034 ♥ ♥ ♥
█████████████████████████████████████████████████

--
█████████████████████████████████████████████████
██████████████████ Basic Group Rules ███████████████████
Immoral & Rudish talk, Earning program links, Cell number for friendship purpose, Websites/Groups Links, Adult contents, Criticize-able Islamic stuff, Spreading disruption, Spamming are strictly prohibited and banned in group.
█████████████████████████████████████████████████
█████████████████████████████████████████████████
 
Follow these detailed Group Rules, otherwise you will be banned at any time.
https://docs.google.com/document/d/1YJxA8x3_U7C1lRc0EXfLrJpco4A1XkB1vDxOTqOd3Jg/edit?hl=en&authkey=CNDy9tkJ
 
Group Email Address:
Attock-VU-Group@Googlegroups.Com
 
Join group by sending a blank email from University ID at:
Attock-VU-Group+Subscribe@Googlegroups.Com
 
████████████ Click here to Join this group at Facebook:████████████
♥ ♥ ♥ https://www.facebook.com/home.php?sk=group_111877855568034 ♥ ♥ ♥
█████████████████████████████████████████████████

--
█████████████████████████████████████████████████
██████████████████ Basic Group Rules ███████████████████
Immoral & Rudish talk, Earning program links, Cell number for friendship purpose, Websites/Groups Links, Adult contents, Criticize-able Islamic stuff, Spreading disruption, Spamming are strictly prohibited and banned in group.
█████████████████████████████████████████████████
█████████████████████████████████████████████████
 
Follow these detailed Group Rules, otherwise you will be banned at any time.
https://docs.google.com/document/d/1YJxA8x3_U7C1lRc0EXfLrJpco4A1XkB1vDxOTqOd3Jg/edit?hl=en&authkey=CNDy9tkJ
 
Group Email Address:
Attock-VU-Group@Googlegroups.Com
 
Join group by sending a blank email from University ID at:
Attock-VU-Group+Subscribe@Googlegroups.Com
 
████████████ Click here to Join this group at Facebook:████████████
♥ ♥ ♥ https://www.facebook.com/home.php?sk=group_111877855568034 ♥ ♥ ♥
█████████████████████████████████████████████████

*~* 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.