Pages

Thursday 22 December 2011

ENG301 Business Communication Assignment 3 Fall 2011 Idea Solution

Q1. Being the representative of your locality, write an adjustment letter to SDO LESCO CANTT for the removal of ‘Fuel Adjustment Price’ in the electricity bills of your locality as per orders of the Lahore High Court. (Marks 10)

Q2. Fill in the blanks from the following appropriate options:

(seller, credit card number, signature, free on board, shipping charges)

Give the mode of payment to be used (personal cheque, COD, money order, or credit card). Be sure to add any ----- and sales tax that may be part of the total cost. If you want the item charged to a credit card, give the ----- and the expiry date. Also, if the printed name on the credit card differs from the ----- and typed name on the letter, be sure to give the exact name of the cardholder. Merchandise is shipped FOB destination or FOB shipping point. The initials FOB stand for -----. If merchandise is shipped FOB shipping point, the buyer pays shipping charges over and above the cost of the merchandise. If merchandise is shipped FOB destination, the ----- pays the shipping charges and they are included in the price of the merchandise. (Marks 5)

Eng 101 Assignment no 3 Fall 2011Idea Soultion

Questions:

Q1: Define ‘Pronoun Reference’ and explain it with reference to the following. (5)



number
gender







Q2: Read the given sentences carefully and identify them as ‘Compound’ or ‘Complex’ sentences. (5)



1. We sow so that we may reap.
2. He failed in his first attempt and never tried again.
3. Pay heed to the small details and the general plan will surely succeed.
4. He went to the house so that he might leave a message.
5. Be kind and help me.


Q3: Write the correct options from list B for the common slang terms of list A in

the given boxes. (5)

List A


List B




Correct Options

a-Burned out


to look over a situation

a-

b-Busted


a command to stop what you are doing/ Rela

b-

c-Check out


exhausted
c-

d-Check it out


to be caught by anyone in authority while

misbehaving


d-

e-Chill out

try to find out something

MGT 613 Production operations Management ssignment No. 02 SEMESTER FALL 2011

SEMESTER FALL 2011
Production operations Management ()
Assignment No. 02
Due Date: 28.12.2011 Marks: 30
Assignment:
Mr. Akbar Ali is working as a manager in a super store. In normal conditions he has to order eggs at
least three days in advance from his supplier in Lahore. As winter season has approached and the
sales are expected to increase rapidly, so he has to manage the inventory of the store very effectively.
This year due to some unknown reasons the sales of the eggs are fluctuating so much that he has no
way to estimate the probability of low (125 dozen), medium (800 dozen), or high (1750 dozen)
demand for eggs in the peak season. He buys eggs for Rs-100 per dozen and sells for Rs-250 per
dozen.
Mr. Akbar Ali is very confused from this situation, as he has to meet the demand of customers in the
upcoming months and increase the revenue of the store as well while keeping the inventory at lowest
possible level. The owner of the store asked Mr. Akbar to develop a Pay Off table from given data
and determine the best alternatives from given scenario under the following two conditions:
• Certainty in Demand
• Uncertainty in Demand
Mr. Akbar is worried in this situation, as he does not know how to prepare the payoff table and how
he can use the best alternatives under certainty and uncertainty in demand. Based on his knowledge
and the past experiences Mr. Akbar prepared the payoff table given as:
Orders
Alternative Low (125 dozen) Medium (800 dozen) High (1750 dozen)
Order 125 dozen Rs-15,625 Rs-15,625 Rs-15,625
Order 800 dozen 100,000 640,000 1,420,000
Order 1750 dozen 218,750 1400,000 3,062,500
After in depth analysis of the payoff table the owner of the shop is not satisfied from Mr. Akbar’s
efforts. He immediately ordered him to come up with more precise, reliable and accurate analysis.
You being the student of POMA assist Mr. Akbar under this radical condition. Your calculation and
analysis must cover the following aspects of the given scenario.
1. Correct Payoff Table Marks (10)
2. Decision Making under Certainty Marks (10)
3. Decision Making under Uncertainty Marks (10)
Instructions:
Please read the following instructions carefully before preparing the assignment solution:
• Support your analysis with computations and recommendations.
• Supposition must be logically justified and explained in answer.
• Don’t copy from blogs and internet it will be marked zero.
• Use proper working where necessary.
• Calculation must be clear and concise.

cs 304 Assignment no 3 Fall 2011

Assignment:

Object Model for 3rd assignment:

In this assignment you have to code/implement the below said classes in running form these classes are,

· User

· Member

· Administrator

Meaning after completion of this assignment your c++ program will be able to

1. Verify User() of the User class

2. Add member/ Delete member

3. Add admin/ Delete admin

Now for implementing these three classes practically in c++ you have to define classes according to the requirements (solution of second assignment) given below:

1. Implement data members and member functions for each class
2. Implement constructor and destructor for each class
3. Implement setters and getters functions for each class
4. Implement different type of relations between these classes

Now override the “VerifyUser()” function of the “User” class, such that:

If the “Status” is “admin”, then it displays the following message:

“The user is an administrator”

And if “Status” is “member”, then it displays the following message:

“The user is a member”

Sample Example:

//Topic class

class topic{

// Data members of Topic class

int ID;

char * Title;

char discription[200];

//Public interface of topic class

public:

//Default constructor

topic(){

ID=1;

Title=NULL;

}

//parametrized constructor

topic(int id, char *title){

ID=id;

Title=new char[strlen(title)+1];

strcpy(Title,title);

}

//setter function for ID

void setId() {

int id;

cout<<"\nEnter ID: "; cin>>id;

}

void setTitle() {

char pChar[50];

cout<<<"\nenter b=""><<"\nenter>

cin.getline(pChar,50);

Title=new char[strlen(pChar)+1];

strcpy(Title,pChar);

}

void setTitle(char * title){

Title=title;

}

void setdiscription(){

cout<<"\nplease enter discription of title"<< b=""><>

cin.getline(discription,200);

}

int getId(){

return ID;

}

char * getTitle(){

return Title;

}

void add(){

cout<<"\n*****************************************\n"; cout<<"\nAdding new information in add method"; setTitle(); setdiscription(); cout<<"\n*****************************************\n"; } bool select(){ cout<<"Topic selection Area:"<< b=""><>

int select;

if (select==1)

cout<<"\nTopic is selected"<< b=""><>

else

cout<<"\nTopic is not selected"<< b=""><>

}

int search(){

cout<<"In Search Mehtod:"<< b=""><>

int found=0;

if (found)

return 1;

else

return 0;

}

void View() {

cout<<"Viewing the Information"; cout<<"\n*****************************************\n"; cout<<"\nTitle is:"<< Title ; cout<<<"\ndescription b=""><<"\ndescription>

cout<<"\n*****************************************\n"; } void print(){ cout<<"\n*****************************************\n"; cout<<<"\nprinting the="" b=""><<"\nprinting>

cout<<"Title:"<<<<"discription:"<< b=""><<<"discription:"<<>

cout<<"\n*****************************************\n"; } void download(){ cout<<"\n*****************************************\n"; cout<<"\nDownloading the information:"<< b=""><>

cout<<"Downloading under processing, Please wait:"<< b=""><>

cout<<"You are downloding the following:"<<<<"file";< b=""><<<"file";<>

cout<<" and the following discription"<<<<"file";< b=""><<<"file";<>

cout<<"\n*****************************************\n"; } void remove(){ cout<<"\n*****************************************\n"; cout<<"\nDeleting the information"<< b=""><>

cout<<"\n*****************************************\n"; delete []Title; delete [] discription; } ~topic(){ } }; class SubTopic: public topic { int SubID; char * title; char discription[100]; public: void setSubID(){ int subid; cout<<"Enter ID of Sub topic:"; cin>>subid;

}

void setdiscription(char []){

char dChar[200];

cout<<"Enter discription of Sub topic:"<< b=""><>

cin.getline(dChar,200,'\n');

}

int getSubID(){

return SubID;

}

void setTitle(){

char pChar[50];

char dChar[200];

cout<<<"enter title="" b=""><<"enter>

cin.getline(pChar,50);

cout<<<"enter title="" b=""><<"enter>

cin.getline(dChar,200);

if(strlen(dChar)>=90){

cout<<"Eligible for being a topic"<< b=""><>

}

else

{

cout<<"Title just contains name and no description"<< b=""><>

}

}

~SubTopic(){

}

};

cs610 Assignment no 3 Fall 2011 Idea Solution

Assignment:



Descon Systems Private Ltd. want to build a Connected Workplace that enables Descon employees to work alone or in small groups at workstations or in informal work areas. Similar to many other organizations, Descon came to the conclusion that their workplace environment was at odds with the way they worked. People were seldom at their desks. Meeting spaces were in short supply. Communication was ever more variable-face-to-face, instant messaging, desktop video, phone, e-mail. And work hours shifted dramatically as the need to work globally increased. The changing workplace is motivated by the organizational issues and facilitated by technologies which are sustained mobility and easy access to information. These pressures and opportunities may not result in a specific new workplace model. A flexible, collaborative workspace could improve productivity and increase employee satisfaction while reducing real estate space and costs by increasing user density from "Descon Connected Workplace that Enhances the Work Experience as well as Cut Costs”. Your main key goals by adopting connected work place are: support collaboration, decrease real estate costs, cut infrastructure costs and accommodate different work style. With these changes in mind, Descon now wants to create the "Connected Workplace." Dear student, you have to identify the workplace solutions and enabling technologies needed for the organizational change.

Fin621GDB No. 2 Fall 2011 Idea Solution

Fin621 current GDB No. 2 – solution soon
PostDateIcon December 22nd, 2011 | PostAuthorIcon Author: vusolutions

Mr. Aqeel is working as “Manager Finance” for Hypothetical Manufacturing Company Limited and responsible primarily to streamline the company’s operating cash flows. At the end of year 2009 he observed a continuous pressure on the company’s operating cash flows. He discussed the matter with his personal friend who was also working as manager finance for another company. Therefore, in order to show improved cash flow position at the end year 2010 and according to his friend’s advice, he deployed all his efforts to increase the company’s sales and reduce the costs up to the minimum possible level.

Beside this operational strategy, he also obtained a long term loan of Rs. 5,000,000 @ 15% p.a. from a local bank during the year. He utilized half of the amount to purchase raw material and half of the remaining amount to pay short term obligations. During the period, he also made prepayments of worth Rs. 300,000 from cash available with the company.

Considering the above scenario, help Mr. Aqeel in exploring the ways to increase the company’s operating cash flows for the year 2010. ”

Note: Give four suggestions only in points, details are not required. Moreover your answer should not go beyond the above case.

Mr. Aqeel is working as “Manager Finance” for Hypothetical Manufacturing Company Limited and responsible primarily to streamline the company’s operating cash flows. At the end of year 2009 he observed a continuous pressure on the company’s operating cash flows. He discussed the matter with his personal friend who was also working as manager finance for another company. Therefore, in order to show improved cash flow position at the end year 2010 and according to his friend’s advice, he deployed all his efforts to increase the company’s sales and reduce the costs up to the minimum possible level.

Beside this operational strategy, he also obtained a long term loan of Rs. 5,000,000 @ 15% p.a. from a local bank during the year. He utilized half of the amount to purchase raw material and half of the remaining amount to pay short term obligations. During the period, he also made prepayments of worth Rs. 300,000 from cash available with the company.

Considering the above scenario, help Mr. Aqeel in exploring the ways to increase the company’s operating cash flows for the year 2010. ”

Note: Give four suggestions only in points, details are not required. Moreover your answer should not go beyond the above case.

MGT401 Financial Accounting II Assignment no 2 Fall 2011 Idea Solution

MGT401 Financial Accounting II assignment no 2 fall semester 22 December 2011

Financial Accounting II (MGT401)

Assignment # 02 Total Marks : 30

The accountant of Model Company Limited has been provided with the following information
extracted from the audited annual balance sheet of the company for the year ended as on June
30, 2010:
Authorized capital Rs.
1,000,000 Ordinary Shares of Rs. 10 each 10,000,000

Paid up capital
75,000 Ordinary Shares of Rs. 10 each 750,000

Reserves
Accumulated Profit 250,000
General Reserve 450,000
Share Premium 150,000
Total Equity 1,600,000

At the recent Annual General Meeting of the company, the Board of Directors proposed the
following businesses:

1) Capitalize a part of existing reserves by issuing fully paid bonus shares to the existing
shareholders whose name is appearing on the Register of Members as on June 31, 2010.
The board recommended issuing four bonus shares for every ten shares of Rs. 10 each
already held in the company. The bonus shares are to be issued at Rs. 14 each.

For the purpose of bonus issue, the board decided to utilize the share premium account,
Rs. 100,000 out of accumulated profits and balance out of general reserve.

2) The board also decided to offer to its existing shareholders the right to buy 2 shares at
Rs. 12 each for every 5 shares held in the company. The market price of the company’s
share is well in excess of this issued price making the issue attractive for the
shareholders. As a result all the rights were taken up.

3) At the same meeting, the board also decided to purchase back the company’s
outstanding share to the extent of 10,000 at an offered price of Rs. 12 each.
(Note): Bonus Shares and Right Shares are not entitled for each other

ACC Assignment no 2 Fall 2011 Idea Solution

Question # 01 (15 Marks)
Mr. Ashar is a financial manager in S&T Leather Company. He has been given the task of assessing the firm’s stock values. In order to perform the required assessment, he has analyzed that the firm’s common stock currently pays an annual dividend of Rs. 2.10 per share and the required return on the common stock is 11 percent.
Required:
By using the given information, estimate the value of common stock under each of the
following dividend-growth-rate assumption:
a) Dividends are expected to grow at an annual rate of 0% to infinity.
b) Dividends are expected to grow at a constant annual rate of 5% to infinity.
c) Dividends are expected to grow at an annual rate of 5% for each of the next three years
followed by a constant annual growth rate of 4% in fourth year to infinity.
__________________________________________________ __________________________________
Question # 02 (15 Marks)
Standard Manufacturing Company has estimated cash revenues of Rs. 30,000 per year from a proposed project. Cash costs will be Rs. 20,000 (including taxes) per year. The company will wind up its business in 8 years. The plant, property and equipment will worth Rs. 2,000 as salvage value at the time of winding up the business. The project costs Rs. 40,000 to launch and opportunity cost associated with this project is 15%.
Required:
Keeping above information into consideration, you are required to find out:
a) Is this a good investment? Support your answer with complete calculations of NPV and
Payback period of the project.
b) What will be the effect on price per share of 1,000 shares from taking the investment?

Wednesday 21 December 2011

MKT501Marketing Management Assignment No. 02 SEMESTER FALL 2011

MGT401 Financial Accounting II assignment no 2 fall semester 22 December 2011

Financial Accounting II (MGT401)

Assignment # 02 Total Marks : 30

The accountant of Model Company Limited has been provided with the following information
extracted from the audited annual balance sheet of the company for the year ended as on June
30, 2010:
Authorized capital Rs.
1,000,000 Ordinary Shares of Rs. 10 each 10,000,000

Paid up capital
75,000 Ordinary Shares of Rs. 10 each 750,000

Reserves
Accumulated Profit 250,000
General Reserve 450,000
Share Premium 150,000
Total Equity 1,600,000

At the recent Annual General Meeting of the company, the Board of Directors proposed the
following businesses:

1) Capitalize a part of existing reserves by issuing fully paid bonus shares to the existing
shareholders whose name is appearing on the Register of Members as on June 31, 2010.
The board recommended issuing four bonus shares for every ten shares of Rs. 10 each
already held in the company. The bonus shares are to be issued at Rs. 14 each.

For the purpose of bonus issue, the board decided to utilize the share premium account,
Rs. 100,000 out of accumulated profits and balance out of general reserve.

2) The board also decided to offer to its existing shareholders the right to buy 2 shares at
Rs. 12 each for every 5 shares held in the company. The market price of the company’s
share is well in excess of this issued price making the issue attractive for the
shareholders. As a result all the rights were taken up.

3) At the same meeting, the board also decided to purchase back the company’s
outstanding share to the extent of 10,000 at an offered price of Rs. 12 each.
(Note): Bonus Shares and Right Shares are not entitled for each other

CS607- Artificial Intelligence Assignment No. 03 SEMESTER FALL 2011 Idea Solution

Question 1:
First define and then add facts in working memory by using clips commands. Facts are given below.
[10 Marks]
1) “A patient has 101 degree Fahrenheit temperature, yellow spots, red rash and infected throat.”
Note: Temperature, spots, rash and throat are the parameters of a patient.
2) “Disease is diagnosed as allergy”
Note: Disease is a parameter of title diagnose
3) Novidat and Evil are the medicines suggested by the doctor as treatment.
Note: Medicine is a parameter of title treatment.
Question 2:
Add rules in knowledge base by using clips commands. Rules are given below. [10 Marks]
1) If a patient has 101 degree Fahrenheit temperature, yellow spots, red rash and infected throat then assert
that disease is diagnosed as allergy and print out that patient is suffering from allergy.
Note: Disease is a parameter of title diagnose
2) If disease is diagnosed as allergy then assert that Novidat and Evil are the medicines suggested by the
doctor as treatment and print out that Novidat and Evil medicines should be used.
Note: Medicine is a parameter of title treatment.

MGT-602 Assignment: 02 Semester “Fall 2011 Idea Solution

Semester “Fall 2011”
Assignment: 02
ENTREPRENEURSHIP (MGT-602)
Total Marks: 30 Due Date: December 27, 2011
Topic: Marketing plan
Lesson: 21-24
Background:
Business plan is an important document that describes the nature and direction of business in future in accordance with its goals. One of the major parts of the business plan is the marketing plan where all the relevant details regarding marketing tools and strategy are designed for future actions. The idea behind putting marketing tools and strategy in business plan is to facilitate entrepreneurs to have a more distinct approach towards business and customers.
Scenario:
In Pakistan, the textile and clothing industry plays an imperative role in fostering the pace of economic development. As per Economic Survey of Pakistan 2009-10, the textile sector has marked immense growth especially in ready-to-wear garment industry. One can observe the emergence of successful local brands that have smashed not only the local market but have also gagged immense popularity and acceptance in international markets. Billboards and increasing outlets depict the mushroom growth of ready-to-wear garment range in Lahore and one of the examples in this scenario is HSY designer range by Hassan Sheheryar Yasin that has successfully captured the local and international market in the said industry.
Task
You are recommended to select any local ready-to-wear garment brand (boutique or any designer range) and closely observe their following marketing practices:
1. Segmentation and target market
2. Pricing strategies
3. Branding strategies
4. The implication of marketing mix
5. Selection of USP (unique selling point) and
a. Value Proposition
b. Creating competitive edge (advantage)
c. Quality
Requirement
You are required to design a marketing plan for selected ready-to-wear outlet covering aforementioned aspects of marketing in comprehensive but concise manner.

CS408 Human Computer Interaction Assignment No. 3 Fall 2011 Idea Solution

Q: Suppose TRYSOF is an IT consulting company focused on maximizing customer satisfaction and return on investment by delivering high quality software solutions. A call center IT manager comes to TRYSOF and communicates his software application requirements to TRYSOF software engineer. Requirements are mentioned below.
Marks (2.5+2.5+2.5+2.5=10)

a) An email application with task/contact manager and calendar.
b) An anti virus / virus scanner application.
c) A browser that facilitate searching, navigation and audio streaming.
d) Automatic call distribution programs that do even distribution of incoming calls to teams of customer-service representatives trained either to take orders, provide support.

MCM301Assignment No. 02 Semester Fall 2011

Semester “Fall 2011”

Communication Skills

MCM301

Assignment No. 02 Marks:15

“Speech Formation”

Generally, people of Pakistan are going towards disappointment & de-motivation due to the ongoing socio-economic situation of the country. Mostly, people blame higher authorities for the social chaos & unrest and nobody wants to make an initiative himself towards change.

Given Scenario:

Suppose you are invited to deliver a speech in a social gathering to motivate people for participating in relief fund campaign and rehabilitation activities of flood victims.

Considering the given scenario, answer following questions:

1. List down any 05 key arguments which you would use to persuade your audience. (marks: 05)

2. Discuss any 05 possible challenges that you may face to motivate people for the cause. (marks: 05)

3. Enlist information sources & visual aids which you would like to use to deliver an effective speech. (marks: 2.5 + 2.5)

Note:

Make sure your provided material is Relevant and Precise.

Marking scheme will depend upon the quality of answer description.
Copied material will be marked as ZERO.

Schedule

Opening Date and Time 21st Dec , 2011 At 12:01 A.M. (Mid-Night)

Due Date and Time 28th Dec , 2011 At 11:59 P.M. (Mid-Night)

Note: Only in the case of Assignment, 24 Hrs extra / grace period after the above mentioned due date is usually available to overcome uploading difficulties which may be faced by the students on last date. This extra time should only be used to meet the emergencies and above mentioned due dates should always be treated as final to avoid any inconvenience.

cs301 Assignment no 3 Fall 2011 Idea Solution

Question: [20 marks]

Consider the following AVL Tree


1. First Insert 10

2. Then Insert 95

3. Then Insert 80

4. Then Insert 77

Show the entire AVL tree after every insertion. You have to show complete steps in order to get full marks.

ECO401 Assignment No. 2 SEMESTER FALL 2011

SEMESTER FALL 2011

Economics (ECO401)

Assignment No. 2

Due Date: 27-12-2011 Marks: 30

Assignment:

The case:

Gandhara Nissan (GN) is an Automobile Company working under the structure of imperfect competition. Recently, the Economic Coordination Committee (ECC) has imposed ban on import of Compressed Natural Gas (CNG) cylinder kit and sales of car with factory fitted CNG. This decision has been taken to overcome the prevailing shortage of gas in the country. Gandhara Nissan has hired Mr. Umer, an economist to analyze the impact of this ban on the company’s sales. Mr. Umer estimated that quantity sold will decrease and price will increase in upcoming years. The data on price and quantity sold by the GN company for the last five years and estimated data for the year 2012 is given under.



Requirements:

Use the above information collected by Mr.Umer and:

A. Calculate average cost and average revenue of GN for each year.

B. Calculate at each level whether GN is operating at profit or loss.

C. Determine the quantity sold and price level at which the total profit for GN is maximized.

D. As a student of Economics, analyze how this incident will affect the overall automobile industry?

Marks: (A=6+6), (B=6+6), (C=3), (D=3)

Instructions:

Please read the following instructions carefully before preparing the assignment solution:

• Solution of Part A and Part B should be in the following tabulated format.



• Calculate to the point where calculation is being required. NO need to write irrelevant material or extra interpretation.

• This Assignment can be best attempted from the knowledge acquired after watching

video lecture no. 14 to lecture no. 25 and reading handouts as well as recommended text book.

Tuesday 20 December 2011

STA630 Resarch Methods Assignment No. 2 SEMESTER FALL 2011 Idea Solution

SEMESTER FALL 2011
Resarch Methods (STA630)
Assignment No. 2
Due Date: 27 December, 2011 Marks: 30

Assignment:
While designing a questionnaire, a researcher should be very careful and try to avoid the errors that
cause the hindrance in collecting the correct and appropriate information. Generally, following types
of errors are found in the questions.
a) Questions are ambiguous or vague
b) Questions are double barreled
c) Questions are leading
d) Questions are burdensome
e) Questions are loaded

You have been provided some questions that are part of a questionnaire. You are required to:
1. Identify the type of error(s) in the following questions 5*2 = 10
2. Correct these error (s) 5*4 = 20
Question 1:
Don’t you think that your organization should increase the salaries of employees in
these days where cost of living rising everyday?
1. Yes
2. No

Question 2:
How much satisfied are you with the behavior of your boss and coworkers?
1. Highly satisfied
2. Satisfied
3. Neutral
4. Dissatisfied
5. Highly dissatisfied

Question 3:
Should Pakistani government accept Israel as a state and have diplomatic
relationships, in spite of the fact that Israel is killing innocent Muslims in Palestine?
1. Yes
2. No

Question 4:
Is your organization providing health and life insurance to the employees?
1. Yes
2. No

Question 5:
How much your income is?

_____________ Rupees

MGT611 Assignment No. 02 SEMESTER FALL 2011 Idea Solution

SEMESTER FALL 2011
Business & Labor Law (MGT611)
Assignment No. 02
Due Date: December 23, 2011 Marks: 15

Abstract:

In general terms, Agency refers to the relationship which exists between two persons, the Principal
and the Agent in which the Agent has to perform different duties/ functions as per instructions of the
principal and also enters into contract with the third party / parties on behalf of the principal. The
relationship of agency plays an important role in business and commercial dealings. This relationship
is legal created by virtue of agreement between Principal and Agent.

Agency may be created in the following ways:

1. By consent
2. By operation of law
3. By estoppel
4. By ratification

Please identify how agency can be created through these ways in the given cases?

Case 01:

Mr. Mohsen deals in trading of Branded and none branded computer hardware and shipped a large
quantity of computer hardware by three trucks from Lahore to Karachi. On the way to Karachi, one
truck seriously met an accident. The truck driver could not establish contract with Mr. Mohsen.
However he found that a large quality of computer hardware damaged. He visited to the nearest
market and get repaired some hardware and sold it at market rate.

Case 02:

Mr. Aslam is working as an agent of Mr. Salman from last 10 years and carrying different business
transactions with many business personals. Due to the conduct of Mr. Salman (principal), Mr. Munir
(third party) believes that Mr. Aslam is an agent of Mr. Salman and under this impression Mr. Munir
enters into an agreement with Mr. Aslam. Later on Mr. Salman terminated the agency relationship
with Mr. Aslam, however this was not in the knowledge of Mr. Munir and he continued his
commercial dealings with Mr. Munir.

Case 03:

Mr. Sajid, an agent of Mr. Shrafat lends Rs 500,000 to Mr. Mohsen. Mr. Mohsen is paying monthly
profit to Mr. Sajid. Who has rendered accounts in this respect to the principal, Mr. Shrafat. By
accepting the profits, Mr. Shrafat conduct implies an approval of the amount of loan provided by his
agent, although without his authority.


The Requirement:

1. You are required to identify the most appropriate way in each case through which agency can
be created.
2. Support your answer by providing logical reasons.

STA301 GDB no 1 Fall 2011 Idea Solution


“Normal distribution is symmetric with a single peak. Does this means that all symmetric distribution are normal. Explain.”

Solution:

The normal distributions are a very important class of statistical distributions. All normal distributions are symmetric and have bell-shaped density curves with a single peak. Both the normal and Symmetrical distributions are U-shaped and equal from both sides.

The Normal distribution:
It is considered the most prominent probability distribution in statistics. There are several reasons for this:

First, the normal distribution is very tractable analytically, that is, a large number of results involving this distribution can be derived in explicit form.
Second, the normal distribution arises as the outcome of the central limit therorem, which states that under mild conditions the sum of a large number of random variables is distributed approximately normally.
Finally, the “bell” shape of the normal distribution makes it a convenient choice for modelling a large variety of random varibales encountered in practice.

Definition of “Symmetrical distribution”

A situation in which the values of varibale occur at regular frequencies, and the mean, median and mode occur at the same point. Unlike asymmetrical A distribution, symmetrical distribution does not skew. A symmetrical distribution is commonly shaped like a bell curve when depicted on a graph. If a line is drawn the middle of the graph, the two sides will mirror each others. Symmetric distribution is also called normal distribution.

MGT503 Principles of Management Assignment no 3 Fall 2011 Idea Solution

Semester “Fall 2011”
“Principles of Management (MGT503)”
Assignment No. ----2----- Marks: ---30---
------
“Well-designed Goals”
Global Experts Co. Case:
Global Experts Co. designs and develops innovative game applications based on customer
feedback and requirements. After each delivery, the customer’s feedback is taken as a measure
of performance of the development team. This feedback, quantified as the level of customer
satisfaction, is tied to the development team’s pay for performance system.
Three basic objectives have been set for the development team’s effective performance:
 To deliver the end product with minimum or no flaws
 To achieve the target within due date
 To ensure best after-sales services
However, the development team faced a major dilemma. In most of the projects, the customers’
requirements were vague and the team required more time to clarify necessary issues. This
sometimes translated into projects being late and bad after-sales services, which meant an
adverse impact on the team’s compensation. Ultimately the project manager, who had to face a
lot of dissatisfied customers, team members and management, decided to resign.
Questions:
1. Based on your understanding and knowledge of the characteristics of well-designed
goals, you are required to briefly state what is the problem with the objectives that
have been set for the development team? (For word limit, refer to instructions
section given below) (10 marks)
2. Give two suggestions for how this issue can be resolved? Provide proper reasoning in
favor of your suggestions. (For word limit, refer to instructions section given below)
(20 marks)

CS504 Assignment # 3 Fall 2011 Idea Solution

Software Engineering-1 (CS504)
Assignment # 3
Total marks = 20
Deadline Date = 26-12-2011

Please carefully read the following instructions before attempting the assignment.

Rules for Marking
It should be clear that your assignment would not get any credit if:

 The assignment is submitted after due date.
 The submitted assignment does not open or file is corrupt.
 The assignment is copied. Note that strict action would be taken if the submitted assignment is copied from any other student. Both students will be punished severely.

1) You should concern recommended books to clarify your concepts as handouts are not sufficient.
2) You are supposed to submit your assignment in .doc format. Any other formats like scan images, PDF, Zip, rar, bmp, docx etc will not be accepted
3) You are advised to upload your assignment at least two days before Due date.
4) This assignment file comprises of Two (2) pages.


Important Note:

Assignment comprises of 20 Marks. Note that no assignment will be accepted after due date via email in any case (whether it is the case of load shedding or emergency electric failure or internet malfunctioning etc.). Hence, refrain from uploading assignment in the last hour of the deadline, and try to upload Solutions at least 02 days before the deadline to avoid inconvenience later on.



Consider the following case study:

ERP system of Virtual University consists of three subsystems “VIS”, “LMS” and “EXAMS”, all deployed on same web server and sharing a central database (installed on the same web server).

However due to the increased number of students, VU decides to deploy these sub systems on separate web servers named VIS-Server, LMS-Server and EXAMS-Server, still all sharing a central database.

However this time the database will be installed and managed by a separate database server which will be implemented through oracle server.

Now the clients (students and instructors) can connect and request the services from these servers under following protocols:

1) Students can connect only to LMS-Server and can request services from it.

2) Instructors can connect with all three servers (i.e. LMS-Server, VIS-Server, and EXAMS-Server) and can request the desired service.

3) These servers can also connect with each other to get services as when required.

4) No client i.e. neither the students nor the instructors can directly connect with database server.


Question:

Keeping in mind the Krutchen’s 4+1 architectural view model, draw a diagram to represent the deployment view (also called physical view) of the above system.

Also explain the diagram with in four to five lines.


Note:

1. Carefully study the 4+1 architectural view model before attempting the assignment.

2. You can use any set of notations to draw the diagram.

3. Explanation should not exceed more than 5 lines.

cs609 Assignment no 3 Fall 2011 Idea Solution

Assignment [Total Marks 20]

Q No. 1

Write the C Program that can be used to program the master DMA controller, description of your program is as follows.

We have supposed that an I/O device have acquired the control of channel 1 of the master DMA controller and want to write the data from I/O device to RAM using demand transfer mode of DMA. You are required to program the required DMA internal registers such that I/O device can perform the demand transfer mode with above specifications.
In your program suppose the following things.
Supposed you want to transfer the data from I\O device to Memory and have stored that data in a character array, i.e. global data in your program and name of that character array should be according to your VUID suppose mc060402111.
Size of the data that I/O device want to write in the memory using the demand transfer mode of DMA should be calculated as follows. Take the last four digits of your VUID and represent them in a hexadecimal number. For example VUID mc060402111 have the value of last four digits ‘2111’ and these are represented in hexadecimal number as 0x2111 and load these values in the respected count register.

CS302 Digital Logic Design Assignmet no 3 Fall 2011 Idea Solution

Assignment No. 03

Semester: Fall 2011

CS302: Digital Logic Design

Total Marks: 10

Due Date: 27/12/2011



Instructions:
Please read the following instructions carefully before submitting assignment:
It should be clear that your assignment will not get any credit if:

> The assignment is submitted after due date.

> The assignment is submitted via email.

> The submitted assignment does not open or file is corrupt.

> All types of plagiarism are strictly prohibited.



Objectives:

This assignment has been designed to enable you to understand the concepts of:

• SR Latch

• Flip Flops

• Flip-flops with asynchronous inputs
Guidelines:

• Perform/write all steps while solving the problems.



Question No. 1 [Marks: 5]

Complete the table given below for NAND based SR latch. Assume that Q output is initially 1.

EN

S

R

Qt+1

0

1




?



Question No. 2 [Marks: 5]

Determine Q output waveform for a negative edge triggered J-K flip-flop with preset, clear and J, K inputs. You are required to draw Q output waveform using timing diagram.



Deadline:

Your assignment must be uploaded/submitted on or before 27th Dec, 2011

MKT 610 GDB no 2 Fall 2011 IDEA Solution

In the ensuing paragraphs, three different scenarios for three different customers have been discussed. You are required to go through the three scenarios and answer the discussion questions.

Customer 1: “Oh my mobile phone broke down… It broke down in its warranty period. But I have lost its warranty card… Now I have to pay for its repair…… What is the use? I might as well buy a new one.”

Customer 2: “These knives have not worked at all…… never worked the way as the advertisements have claimed…. I should better get them returned…. But I have lost its receipt”

Customer3: At one of a big departmental store, a young woman was frantically searching her purse for the receipt of a kitchen machine that she was trying to return. She went through several pieces of paper and finally admitted to the sales clerk that she had lost the receipt. Before she could utter the next sentence the sales clerk replied “Don’t worry. We have saved the date of your purchase and other relevant details which will suffice in case you loose the receipt.”

Discussion Question:

Which customer in your view will turn out to be a loyal customer of the company or store from where he has purchased the item? Substantiate your answer with adequate reasoning. Also point out the customers who have chances to be defected?

Topic: Customer loyalty; Customer complaint Handling; Customer Defection

Solution:

Customer no 3 will be a loyal customer due to good response

AND customer no 2 will be defective customer due to miss satisfaction through product quality that was promised.

MGT510 Assignment no 2 Fall 2011 Idea Solution

Energy crisis is the main cause of diminishing the Pakistani economy as most of our factory owners have closed down their factories due to energy crisis. Although, Government is trying to get energy from coal, wind, hydro etc for the sake of generating electricity but it is not a single day game to get energy from these sources. In October 2011, Pakistan was facing the worst ever shortfall of electricity i.e. 8000 megawatts which caused a massive load shedding on a large scale across the country. There were many factors that caused historic shortfall of electricity. First is the circular debt which is approximately 400 billion rupees. Secondly, for generating electricity many IPP’s (independent power producers) are running across the country and almost all IPP’s are dependent on oil for generating electricity. Oil supply was disturbed due to non payments to oil companies .That’s why many of these power plants were forced to shut down. People were becoming so violent that even sometimes they called for strike and clashed with law enforcement agencies personnel resultantly it created law and order problem across the whole country. Government was forced to take emergency action to solve this energy crisis. Although situation is better now but it is not a long term solution of this problem.



Questions:

Referring to the eight quality management principles, how can these principles be practically implemented to the power and electricity sector in Pakistan in order to improve electricity problem? Discuss any 5 principles. (5 * 3 = 15 Marks)

MGMT 623 Assignment no 2 Fall 2011 Idea Solution

Suppose Mr. Sohaib has been appointed as Managing Director of an IT based organization.
This organization is facing working crisis because of many pending projects in absence of
proper and vigilant leadership. The existing culture of the organization is based on
individualistic approach. Every one has his\her own working style and is not cooperating with
others for meeting deadlines. After joining this organization, he has analyzed the whole
situation in depth and planned to promote team work to get completed pending projects on
immediate basis because he believes that team work can be the best solution to get this
organization out of working crises but it is also very important to choose and train the right
persons as team leaders, share his power and vision with them for fostering and nurturing team
work in the organization.

Looking at the above scenario, answer the questions below:

Question No.1:
What do you think which leadership style will be appropriate for promoting and enhancing
team work and why? (3+5)marks
Question No.2:
How Mr. Shohaib would be able to share his power with the team leaders? 7 marks

Cs101 Assignment no 3 Fall 2011 iDea Solution

Design an HTML page using HTML elements such as tables, images, textboxes, text areas, radio buttons, list boxes, select boxes, background images, image maps, submit button and reset button. (Marks 25)

Read the following instructions carefully.
Your assignment must be a single HTML format file; any other format or screen shots are not acceptable.
Use of Style Sheet is not allowed in this assignment.
To create HTML file:
Open notepad, write your code in this new file and “save as”.
When it asks for file name, give its name like “studentID.html”.
Take care of double quotes, there must be starting and ending double quotes to save file in HTML format.
For header image use http://vulms.vu.edu.pk/Courses/CS101...101-header.jpg as image source.
For background image use this link http://vulms.vu.edu.pk/Courses/CS101...101-naviBG.jpg as image source.

Solution

CS101 VU Current Assignment No. 3 Fall 2011 – Solution soon
PostDateIcon December 22nd, 2011 | PostAuthorIcon Author: vusolutions

Design an HTML page using HTML elements such as tables, images, textboxes, text areas, radio buttons, list boxes, select boxes, background images, image maps, submit button and reset button. (Marks 25)

Read the following instructions carefully.
Your assignment must be a single HTML format file; any other format or screen shots are not acceptable.
Use of Style Sheet is not allowed in this assignment.

To create HTML file:
Open notepad, write your code in this new file and “save as”.
When it asks for file name, give its name like “studentID.html”.
Take care of double quotes, there must be starting and ending double quotes to save file in HTML format.
For header image use http://vulms.vu.edu.pk/Courses/CS101…101-header.jpg as image source.
For background image use this link http://vulms.vu.edu.pk/Courses/CS101…101-naviBG.jpg as image source.
SOLUTION:

This solution has been completed up to 98-99%. Everything is available. However, effort is required to set the layout to make it look exactly like the assignment provided. Download the following attached file:

CS101 assignment 3 solution Fall 2011
blackmist, thanks for sharing with vusolutions

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Another Help:










YOUR STUDENT ID :: Assignment NUMBER



GPA



MGT601SME Management Assignment 02 Fall 2011Idea Solution

S
SME Management (MGT601)
Fall 2011
Assignment 02 Phase 01
The Business Idea
Marks: 15 Due date: December 20, 2011
Conceptual Background
There is no doubt that entrepreneur in any society plays the role of engine of growth and development. It is also true that SMEs serve as the seed bed for entrepreneurship development in any society. Success of any new business depends on the business idea and a good business idea is one which is derived from the needs of the market and aims at adding value to the life of people.
A business idea is simply a concept of the business to be started for earning profit by fulfilling the needs of society. In business idea it is described that which product to deal in and whom to offer it. The better way of finding good business idea is to first find out the unmet or poorly met needs of any segment of the market and then to develop a product or service for meeting the needs better than competitors do. Innovative business idea can increase the possibility of the success of the potential business if it can solve the customer problem in a better way.
While developing business idea business market should also be focused as there are good potential opportunities existing in this segment. This has been emphasized because most of the beginners remain focused on consumer market and ignore the business segment. Another important aspect should be kept in view while developing business idea that it should be well within the resources of the potential entrepreneur.
Task (phase 1)
We consider you all as potential entrepreneurs and want you to start preparing for the purpose before entering into the practical life. Therefore you are assigned the task to describe your business idea in one page. Your business idea should be original and market oriented. Do keep it in view that you have to develop a comprehensive business plan based on this business idea in the phase two of this assignment.
Basic Questions
While describing your business idea, following questions must be addressed in complete but concise manner.
1. What is the need to be addressed by the potential business?
2. How is this need not currently being served?
3. What is the sector in which business will be launched?
4. What is the product or service?
5. How the proposed product or service will meet the need of the customer?
6. How this business will add value to society?
7. Will the business be profitable?
8. How this business will be profitable?
9. How have you come to have this idea?
10. How this business matches with your interest and personality?
Important Note
Once you submit your business idea it will be reviewed by the experts. After the expert review it will be marked and returned to you with suggestions for improvement if any. After you receive the marked business idea you will enter into the second phase of the assignment where you will develop a comprehensive business plan as per the provided guidelines.
Supporting Links
For more understanding you can also read the following document and visit the web links:

Note: Supporting links are for the learning purposes only. Any material copied from any student bolgs or site will be graded as ZERO. We have ZERO tolerance for plagiarism.

CS402 ASSIGNMENT NO.3 Fall 2011

Theory of Automata
CS402
ASSIGNMENT NO.3

Total Marks= 20 (5+5+5+5)

Assignment Submission Deadline
Your assignment must be uploaded before or on 22nd of December, 2011 [upload your ass
well before due date to avoid any assignment uploading related issues].



Rules for Marking
It should be clear that your assignment will not get any credit if:

o The assignment is submitted after due date
o The assignment is copied
Objectives
Objectives of this assignment are to make students able to understand the following concepts

o Moore machine
o Mealy machine
o Equivalence of Moore and Mealy machines
Assignment No.3

Question No.1

a. Convert Moore machine given below in corresponding Mealy machine.


b. Run string abbbba on this machine and corresponding Mealy machine by showing process and confirm that both machines generate same outputs (ignoring extra Moore machine).


Question No.2

a. Convert following Mealy machine into corresponding Moore machine.




b. Run string bbaaba onbthis machine and corresponding Moore machine by showing process and confirm that both machines generate same outputs

CS410 Visual Programming Assignment # 2 Fall 2011 Idea Solution

Q1 [Marks: 10]

How do I handle key presses and key up events in the windows message loop? I need to be able to call two functions OnKeyUp (char c); and OnKeyDown (char c);


Q2 [marks: 10]

I have a list of window handles to top level windows and I want to shift them around so they are arranged in the z-order of my choosing. I started off by iterating the list (with the window I want to end up on top last), calling SetForegroundWindow on each one. This seemed to work some of the time but not always, improving a little when I paused slightly in between each call.
Is there a better way to do this?

MGT603 Assignment No 2 fall 2011 Idea Solution

Semester “Fall 2011”
Strategic Management (MGT603)
Assignment No. 02 Marks: 30
Let us assume that a sports company is operating in Pakistan with the name “Indus
Sports”. Indus Sports manufactures sports goods of both indoor and outdoor games. You
are required to formulate strategies based on the following SWOT Analysis of the
company. For your convenience, the boxes of the four groups of strategies (shaded as
yellow) are left vacant for you to fill.
TOWS Matrix for Indus Sports
Strengths-S
· Experienced top management
· High capital reserves
· Imported machinery
· Factories in more than one
cities
Weaknesses-W
· No brand identity
· High employee turnover
· Less diversified portfolio
· Inexperienced lower staff
· No company owned outlets
Opportunities-O
· High growth industry
· Sponsorship opportunity
· Growing number of football
fans
· Minimum govt. legislation
· Sports wear products
SO-Strategies
WO-Strategies
Threats-T
· Potential entrance of multinational
company
· Load shedding
· High no. of competitors
ST-Strategies
WT-Strategies

Mgt501Assignment No. 02 Fall 2011 Idea Solution

Semester “Fall 2011”
“Human Resource Management(Mgt501)”
Assignment No. 02 Marks: 30
Scenario:
There is unenviable situation often faced by the recruiters. They are on front line to locate
suitable persons to fill vacant vacancies. Their performance is also measured on the basis of
accomplishment of recruiting goals. Over the past several years, there are only few jobs in the
market due to unstable economic situation. A number of organizations have been eliminating
the employees instead of new recruitment. This elimination also hit HRM and especially the
recruiters. Frenzy hiring by the organization, too, creates problem for recruiters. Nowadays, the
recruiters are very active to fill the specialized positions that are necessary for the organization
to meet its strategic goals. It is the responsibility of recruiters to generate a suitable applicants
pool from plentiful workforce. But what if no suitable person is applying? That is exactly what
Ahmed must have asked himself.
Mr. Ahmed is working with Star Engineering as HR director. A responsibility was given to him
for the recruitment of talented engineers. He had to appoint the engineers of the same caliber as
of those working in competitor Japanese firms. He advertised in news-papers extensively but
there was no response from suitable candidates. Simply, his advertisement did not pay off! So
Mr. Ahmed decided to change the likelihood of response in his favor and adopted a different
tactic to capture the attention of potential candidates. He started placing organization recruiting
ads on aluminum cans and distributed them in locality which made Star stand out. He received
more than 200 applications from suitable candidates, for shortly after the ads hit the streets.
Requirements:
1. Why so many responses were generated by advertisement on aluminum cans instead of
typical news papers advertisement? (Marks 15)
2. What lesson can be learned by recruiters? (Marks 15)

IT430 E-Commerce Assignment No. 03 Semester: Fall 2011 Idea Solution



Question 1:      (05)

Assume that you want to buy an IPhone from an online shop. You had ordered an IPhone and made payment using Electronic check. You had forwarded the electronic check in a secure envelope to the payee. How will the payee decrypt the secure envelope to verify electronic check? Also describe the main reason which makes electronic check more secure than Virtual PIN payment system.

Question 2:        (05)

Assume that you want to buy a book named “Electronic Commerce” from an online book shop using Virtual PIN payment system. You are already registered with First Virtual and your Virtual PIN is “alpha”. How would this transaction take place? Would you need your credit card number in this transaction? Why Virtual PIN is considered an insecure method for online transactions? Justify your answer.