Ads

Pages

Saturday, April 30, 2011

MGT502 Assignment # 1 Idea Solution

MGT502 Assignment # 1

Idea Solution

Seekers

Mr. Usman wishes to buy a new and expensive cellular phone. He searches internet, and consults with his friends and relatives to get some information about the latest models in the market. After one week, he decides to purchase Apple iPhone. While at the store, the salesman explains and proves that he can buy much better phone within the same budget if he goes for Black Berry Torch. Black Berry Torch gives better value for money with respect to performance, design, advance features and warranties. Relying on the available information, Mr. Usman finally decides to buy Apple iPhone.

In the light of above scenario answer the following questions.

Q.1: Identify and explain the decision making model being applied by Mr. Usman for the purchase of a new mobile. (10)

Rational Decision-Making

Model

“A decision-making model that describes how individuals should behave in order to maximize some outcomes”

Steps in the Rational Decision-

Making Model

1. Define the problem.

2. Identify the decision criteria.

3. Allocate weights to the criteria.

4. Develop the alternatives.

5. Evaluate the alternatives.

6. Select the best alternative.

The optimizing decision maker is rational. He or she makes consistent, value-maximizing choices within specified constraints.

The Rational Model

Step 1: Defining the problem

• A problem is a discrepancy between an existing and a desired state of affairs.

Many poor decisions can be traced to the decision maker overlooking a problem or defining the wrong problem.

Step 2: Identify the decision criteria important to solving the problem.

• The decision maker determines what is relevant in making the decision. Any factors not identified in this step are considered irrelevant to the decision maker.

• This brings in the decision maker’s interests, values, and similar personal preferences

Step 3: Weight the previously identified criteria in order to give them the correct priority in the decision.

Step 4: Generate possible alternatives that could succeed in resolving the problem.

Step 5: Rating each alternative on each criterion.

• Critically analyze and evaluate each alternative

• The strengths and weaknesses of each alternative become evident as they are compared with the criteria and weights established in the second and third steps.

Step 6: The final step is to compute the optimal decision:

• Evaluating each alternative against the weighted criteria and selecting the alternative with the highest total score.

Q.2: In your opinion, what other decision making models can be applied by Mr. Usman for such purpose?(10)

Intuitive Decision-Making

“An unconscious process created out of distilled experience”

1. Intuitive decision-making has recently come out of the closet and into some respectability.

2. What is intuitive decision making?

• It is an unconscious process created out of distilled experience. It operates in complement with rational analysis.

• Some consider it a form of extrasensory power or sixth sense.

• Some believe it is a personality trait that a limited number of people are born with.

3. Research on chess playing provides an excellent example of how intuition works.

• The expert’s experience allows him or her to recognize the pattern in a situation and draw upon previously learned information associated with that pattern to quickly arrive at a decision choice.

• The result is that the intuitive decision maker can decide rapidly with what appears to be very limited information.

• Eight conditions when people are most likely to use intuitive decision making:

  1. when a high level of uncertainty exists
  2. when there is little precedent to draw on
  3. when variables are less scientifically predictable
  4. when “facts” are limited
  5. when facts do not clearly point the way to go
  6. when analytical data are of little use
  7. when there are several plausible alternative solutions to choose from, with good arguments for each
  8. when time is limited, and there is pressure to come up with the right decision

• Although intuitive decision making has gained in respectability, don’t expect people— especially in North America, Great Britain, and other cultures where rational analysis is the approved way of making decisions—to acknowledge they are using it. Rational analysis is considered more socially desirable in these cultures.

CS301 Assignment # 3 Solution

CS301
Assignment # 3
Solution
 
Question

Consider a binary search tree (BST) that is initially empty. Draw the tree that will result if the following numbers are inserted in the order given below:

13, 3,1,2,4,12,10,5,8,7,6,9,11,14,15,18

 
After making a BST perform the following operations on it.

a) Pre order Traversal

b) Inorder Traversal

c) Postorder Traversal

Solution:

a) Pre Order Traversal

13, 3,1,2,4,12,10,5,8,7,6,9,11,14,15,18

b) Inorder Traversal

1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,18

c) Postorder Traversal

2,1,6,7,9,8,5,11,10,12,4,3,18,15,14,13

MGT503 GDB IDEA SOLUTON

Question

There are certain aspects of decisions like the ‘management level’ at which the decision is taken, the ‘situation’ faced to take decision and the ‘type of decision’ etc.

Following are four different cases/ examples of decisions. You are required to identify Type of Decision (programmed or non-programmed), Management Level (upper, middle or lower), and the Situation (certainty, uncertainty or risk) for each case.

Situation

1 Apple computer Incorporation has successfully launched Macintosh computers in all over world. Now apple is going to launch Clutches Laptop in market.

Type of Decision

Programmed

Management level

Top

Situation

Uncertainty

Situation

2 Lathe (machine tool) operators have specifications and rules that tell them whether the part they made is acceptable, discarded or should be reworked.

Type of

Decision

Programmed

Management level

Lower

Situation

Uncertainty

Situation

3 Wal-Mart has different retail stores in USA, UK, China and France. They are going to open their chain of retail stores in Pakistan, too; but know a little about the country’s cultural, laws and order, economic, and political conditions.

Type of Decision

Non-programmed

Management level

Top

Situation

Risky

Situation

4 A multinational company is going to restructure its standard ERP (Enterprise Resource Planning) system in order to facilitate flow of information between all business functions and outside boundaries of organization

Type of Decision

Programmed

Management level

Middle

Situation

Certainty

CS201 Introduction to Programming Solution

#include
#include
main()
{
int ary1[3][3],ary2[3][3],ary[18],index,temp,max;
cout<<"Please enter the Elements of First Matrix: ";
for(int n=0;n<3;n++)
{
for(int m=0;m<3;m++)
{
cin>>ary1[n][m];
}
}
cout<<"Please enter the Elements of second Matrix: ";
for(int n=0;n<3;n++)
{
for(int m=0;m<3;m++)
{
cin>>ary2[n][m];
}
}
//Copying first array into single dimenional array
index=0;
for(int n=0;n<3;n++)
{
for(int m=0;m<3;m++)
{
ary[index]=ary1[n][m];
index++;
}
}
//Copying second array into single dimenional array
index=9;
for(int n=0;n<3;n++)
{
for(int m=0;m<3;m++)
{
ary[index]=ary2[n][m];
index++;
}
}
// Here sorting the third array in which ary1 and ary2 are copped....
// This sorting method is bubble sorting method in decending order.
for(int n=0;n<18;n++)
{
for(int m=n;m<18;m++)
{
if(ary[n]
{
temp=ary[n];
ary[n]=ary[m];
ary[m]=temp;
}
}

}
//Show arranged array in decending order
cout<<"Sorted Values from Both the Matrices are: "<
for(int n=0;n<18;n++)
{
cout<
}
getch();
}

Mgmt625 GDB idea Solution

Pakistan Railway, one of the largest institutions of Pakistan is providing the transportation services all over the country. But with the passage of time it has lost its credibility and is now at the verge of closure or dismemberment.

Greiner Model of organizational evolution & revolution proposed following dimensions of organizational development that is; age of organization, size of organization, stages of evolution, and stages of revolution.

In your opinion, which dimension of Greiner Model was ignored by Pakistan Railway that hindered its development? Justify your choice within two lines.

Solution:

Stage of revolution is ignored by Pakistan Railway.

unstable times leading to severe disturbance of management perform – means revolution or period of revolution.

Many organizations fail during such a crisis – unable to abandon past practices have to wind-up or compromise to lower levels of growth.

In case of Pakistan railway could not overcome solving problem. And the decisions were made to solve the problem but these decision have become major problem for it.