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

}

};