VUsolutions Transferred to AchiKhasi.com

From December 2011, this blog www.VUsolutions.blogspot.com is transferred to http://achikhasi.com/vu/ . So, you may visit http://achikhasi.com/vu/ for latest study related help.

Back to home VUsolutions

VUsolutions Fans Club [join us for MORE solutions]

VUsolutions on Facebook

Mth501 Assignment No. 2 solution

Sunday, May 01, 2011 Posted In Edit This
Mth501 Assignment No. 2 solution


Click here for solution : VUsolutions Mth501 Solved assignment

Mth401 Assignment No. 2 solution

Sunday, May 01, 2011 Posted In Edit This
ASSIGNMENT 02(MTH401)
(Differential Equation)
Maximum Marks: 30

Due Date: May 02, 2011


Please read the following instructions before attempting to solve this assignment
In order to attempt this assignment you should have full command on Lecture # 08 to Lecture # 14

Try to get the concepts, consolidate your concepts and ideas from these questions which you learn in Lecture # 08 to Lecture # 14.

You should concern recommended books for clarify your concepts as handouts are not sufficient.

Try to make solution by yourself and protect your work from other students. If we found the solution files of some students are same then we will reward zero marks to all those students.

You are supposed to submit your assignment in Word format any other formats like scan images, PDF format etc will not be accepted and we will give zero marks to these assignments.

Assignments through e-mail are not acceptable after due date (If there is any problem in submitting your assignment through LMS, you can send your solution file through email with in due date). You are advised to upload your assignment at least two days before Due date.


Q 1: Solve the given differential equation by using an appropriate substitution.


Q 2: Find the orthogonal trajectory of the following family of curves.

Q 3: Show that the given functions are linearly independent on the indicated interval.


Solution:



here are orthogonal trajactories of above DE


CS201 Assignment No. 2 solution

Sunday, May 01, 2011 Posted In Edit This
Assignment No. 02

Semester: Spring 2011

CS201: Introduction to Programming

Total Marks: 20
Due Date:02/05/2011

Assignment:


Problem Statement: Sorting two matrices  

You are required to write a program which takes two 3x3 matrix A and B containing 09 elements each and sort all these 18 elements in descending order and put it in one dimensional array and then display it.

Follow the following steps to code this program
1. Take two two-dimensional arrays as A[3][3]and B[3][3] and  one-dimensional array C[] to keep the result.
2. Prompt the user to enter the elements of first matrix
3. Prompt the user to enter the elements of second matrix

1. Now take first element of first matrix and check in both matrix weather it is greatest or any other number is the greatest and put the greatest number at the first index of the one dimensional array. Follow this procedure for other elements and at the end one dimensional array would be in descending order

2. Display this one-Dimensional sorted array on the screen






Following is the sample program structure


   2 3 5               2 8 7
A= 6 5 9             B= 0 1 1
   1 0 2                4 7 9


Output should be like this

Please enter the Elements of First Matrix:

Please enter the Elements of second Matrix:

 Sorted Values from Both the Matrices are:             
    -------------------------------------------
     9 9 8 7 7 6 5 5 4 3 2 2 2 1 1 1 0 0

    ------------------------------------------
::::::::::::::::::::::::::::::::
Solution:
::::::::::::::::::::::::::::::::


#include<iostream.h>
#include<conio.h>
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]<ary[m])
{
temp=ary[n];
ary[n]=ary[m];
ary[m]=temp;
}
}
}
//Show arranged array in decending order
cout<<"Sorted Values from Both the Matrices are: "<<endl;
for(int n=0;n<18;n++)
{
cout<<ary[n]<<" ";
}
getch();
}


::::::::::::::
Another
::::::::::::::



#include<iostream.h>
#include<conio.h>
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]<ary[m])
{
temp=ary[n];
ary[n]=ary[m];
ary[m]=temp;
}
}
}
//Show arranged array in decending order
cout<<"Sorted Values from Both the Matrices are: "<<endl;
for(int n=0;n<18;n++)
{

cout<<ary[n]<<" ";
}
getch();
}



CS615 Assignment No. 2 solution

Sunday, May 01, 2011 Posted In Edit This
Software Project Management
Assignment # 02
Spring 2011
Marks: 20

Due Date Your assignment must be uploaded before or on 2nd May 2011.
Uploading instructions: Please view the Assignment Submission Process document provided to you by the Virtual University for uploading assignments.
  • Assignment should be in .doc format.
  • Save your assignment with your ID (e.g. bx020200786.doc).
  • Assignment submission through email is highly discouraged.
Rules for Marking: It should be clear that your assignment will not get any credit if: · The assignment is submitted after due date. · The submitted assignment file is corrupted. · The assignment is copied. Note: Your answer must follow the below given specifications. You will be assigned zero marks if you do not follow these instructions. · Font style: “Times New Roman” · Font color: “Black” · Font size: “12” · Bold for heading only. ·Font in Italic is not allowed at all. · No formatting or bullets are allowed to use.



Assignment: 



Q.NO.1
Suppose you are working on a large scale construction project to construct Motorway from Peshawar to Karachi. What will be the major cost management factors that you will consider and show how you will map them with above mentioned project?
Q.NO.2
Suppose you are developing a system for interrogating protein interaction networks in order to retrieve matches to putative functional modules which is a research oriented system. During development you found that your development team loses focus from their main objectives. State the reasons why development team loses focus from their main objectives?

Solution:

Q.NO.1
Suppose you are working on a large scale construction project to construct Motorway from Peshawar to Karachi. What will be the major cost management factors that you will consider and show how you will map them with above mentioned project?

Solution
Key determinants of initial project costs
The fundamental project costs are based on the actual cost of the land, materials, equipment and labor in the region where the project is being procured. These basic costs will vary depending upon a number of factors which are discussed below.

The Project Specification

The specification defines the physical attributes of a project. With a road, for example, given levels of forecast traffic will lead to specification of the required length, depth and width of the road pavement, the material to be used for surfacing, the number of lanes, bridges and junctions etc.

Generally, the more detailed the specification and the larger the project, the more expensive it will be.

Location
Location affects project costing via institutional factors and through geographical realities. Institutional factors can affect initial project cost estimates in a number of ways..

In geographical terms, construction and material costs, land costs and design standards vary widely across the EU because of the varying distances from suppliers, climate and weather conditions, and general market conditions. Even within a country, variations will exist depending on whether a project is being implemented in a peripheral or central area, or in an urban or rural context. Generally, the more remote a project is, the more expensive it will be because of the cost of transporting construction materials and equipment to the site. In an urban location, land costs are usually much higher.

Form of Procurement/Contract
The form of procurement and contract used by the project sponsor can alter the estimated cost of a project. Cost savings may be made by means of lump sum contracts although these are usually marginal in relation to the total project costs. DBFO contracts, which seek to transfer most of the risk of cost over-run from project sponsor to contractor, may in some circumstances yield savings.

Site Characteristics
A site can be affected by soil and drainage conditions and access restrictions which can affect the original cost estimates. The amount of excavation, piling and foundation activities required are particularly affected by poor ground conditions. Where there is uncertainty about ground conditions, accurate project costing cannot be achieved unless a soil survey is undertaken. This may require the sinking of boreholes to obtain soil samples at different levels beneath the surface.

New Build or Improvements
Generally, the construction of new infrastructure is more expensive than improvements to existing infrastructure, or the refurbishment of buildings. This is primarily because the “non-building” costs such as land purchase, foundations, services provision etc. do not have to be included when simply upgrading existing structures.

Tax Liabilities
An organization will be liable to pay tax on its purchases. Some organizations and types of project are not liable to pay taxes, or else these can be reclaimed. Local government projects and infrastructure for public use are examples. Some public or quasi-public sector companies, voluntary and private sector organizations can be liable and these tax costs can have a significant impact on gross construction costs.

Timescale
Generally, the longer a project takes, the greater the project costs will be. Project timescales are dependent on the specification of a project. Usually, the larger a project is the longer it will take to implement. This is not always the case; if substantial additional resources are used, project implementation can often be accelerated. In some cases, work on a project may take a lot longer than expected because its phasing is dependent upon other, linking projects or public finance programs. A project which involves noncontinuous phases is usually more expensive than one undertaken without interruption because of the additional costs involved in re-mobilizing plant and contractors.

Inflation
The longer the expected construction period, the more account will need to be taken of expected inflationary price increases over time. This is particularly important where a public authority’s expenditure program is involved. Initial cost estimates will need to allow for the value that will need to be paid at the time the project actually goes ahead.



Q.NO.2
Suppose you are developing a system for interrogating protein interaction networks in order to retrieve matches to putative functional modules which is a research oriented system. During development you found that your development team loses focus from their main objectives. State the reasons why development team loses focus from their main objectives?

Solution:
Probably the most important and the most difficult to judge characteristic of a well functioning team is the possession of the focus and vision needed to create an outstanding product. Without this focus, the team cannot execute on the underlying tasks that make up the project.

Improper delegation of task and responsibilities
Many times project managers fail to delegate tasks and responsibilities to the team in such a way that they should fit team members' job descriptions. When team members are asked to work outside their specialization (often as added responsibilities), they not only go through a learning curve but also tend to lose focus on the project objectives. This always results in confusion among the team members and eventually cost and time overruns.

Lack of a Shared, Crisp Vision
The one success factor most experts agree on is the need for a project team to have a clear vision for its project. The breakdown if there is one may have occurred because the project does not have a crisp vision, the vision has not been well communicated to the team, or the team does not agree with or believe in the vision. Whatever the cause, however, the lack of a shared vision is a fundamental flaw that will prove fatal to the project.

Without a vision for the project, the team will be unable to make difficult feature or bug trade offs, will be frustrated by communication problems among members of the team, and will inevitably make decisions that are misdirected because they have no foundation.

Lack of a Customer Focus
Another way to look at the problem of focus is to ask “Who will pay good money for this product?” If the customer is not readily identifiable and is not a key part of the goals and vision for the product, this is another major sign that the product is in trouble.

When difficult decisions arise, make sure that a customer advocate is identified in the group and that person is heard.

The corollary to this is to be sure that you have identified who is not the customer. It is often too easy to say “Anyone would want this,” thereby avoiding giving sufficient thought to who the customer specifically is and is not.

Customers are not homogeneous. Some groups of customers will definitely be outside your market. It’s vital to identify them too.

Focus on the Wrong Things
One trap that is very easy to fall into is the tendency to focus on things that are not directly related to shipping a product. Examples range from the apparently important to the obviously inane, from an inordinate focus on preparing for conferences or project reviews to angst over the color of the T-shirt.

If the team is getting T-shirts for almost completing milestone 2, you should be concerned. If the end goal in sight is not a product for your customers, but a conference for your peers, you should consider some actions to refocus the team.

Certainly some creative extracurricular activities are vital to maintaining team morale, and they can often help to focus the team. But if they seem the persistent focus of the group, if they occupy more than just a small window of time, or if they are the subject of controversy in the group, they are counter-productive.

Mgt502 Online Quiz No. 2 Announcement

Sunday, May 01, 2011 Posted In Edit This

On-Line Quiz (No.02) Announcement
Quiz will cover video lecture no. 1 to 17

Schedule
Opening Date and Time: May 2nd , 2011 At 12:01 AM (Mid-Night)
Closing Date and Time: May 4th , 2011 At 11:59 PM (Mid-Night)

24 hours extra time is not available

For past SOLVED online Quizzes click the below link:


Back to home VUsolutions

Shaadi.com: Just create ur account & find ur partner or EARN money, its reall & EASY

VUsolutions Followers (Join NOW and Get Extra Benefits)

Install LATEST toolbar having lot of features - GET solutions on Desktop

toolbar powered by Conduit
Caliplus 300x250 NoFlam VitoLiv 468x60 GlucoLo