MTH302 - Solution

11:13
Posted by Adminin 0 comments

Question Number Correct Option
1 a
2 b
3 a
4 d
5 d
6 c
7 c
8 d
9 d
10 a

Read More

IT430 - E-Commerce - Solution

11:11
Posted by Adminin 0 comments

Assignment No. 03

Semester: Fall 2009 IT430 E-Commerce




Registration Form


function ChkData(){
if (document.Form1.Name.value.length <1)>
window.alert("Name field is empty!");
document.Form1.Name.focus();
return;
}
if (document.Form1.EAddr.value.length <>
window.alert("Email can

Read More

MGT603 - Strategic Management ONLINE QUIZ

10:59
Posted by Adminin 0 comments

Dear students, this online quiz uploaded just for your idea, selected option on these images may be wrong, so just get the idea from these questions/images.

Best of luck

VU Help Desk..









Read More

ENG301 - Solution

22:59
Posted by Adminin 0 comments

Question No.1

Write an inquiry letter, as a business person to the regional manager of Lahore of Nokia Company, and ask him to provide you all information about their company’s rules and regulations for opening a new franchise.


Question No.2


Write a short note on necessary steps for preparing an effective business message.

________________

The Process of Preparing Effective Business Message


PLANNING STEPS FOR COMMUNICATION

There are five planning steps:


1. Identify your purpose
2. Analyze your audience
3. Choose your ideas
4. Collect data to support your ideas
5. Organize your message


1. Identify your purpose :

You must know why you should write and what should be written . The purpose may be sale , good will , request , inquiry

Read More
Read More

IT430 - Assignment # 3

02:26
Posted by Adminin 0 comments


Coming soon
:-)
:-)
Coming soon

Read More
Read More

CS601

04:53
Posted by Adminin 0 comments

Hubs, switches, and routers are all devices that let you connect one or more computers to other computers, networked devices, or to other networks. Each has two or more connectors called ports into which you plug in the cables to make the connection. Varying degrees of magic happen inside the device, and therein lies the difference. I often see the terms misused so let's clarify what each one really means.

A hub is typically the least expensive, least intelligent, and least complicated of the three. Its job is very simple: anything that comes in one port is sent out to the others. That's it. Every computer connected to the hub "sees" everything that every other computer on the hub

Read More

CS201 Solutions

04:49
Posted by Adminin 0 comments

#include




using namespace std;

void sort(char array[], int length);


int main()

{

char firstArray[15];

char secondArray[15];

char mergedArray[30];

bool flag = false;


int i;

int mergedIndex;


cout<<"Enter into First Array\n";

fgets(firstArray, sizeof(firstArray), stdin);


cout<<"Enter into Second array\n";

fgets(secondArray, sizeof(secondArray), stdin);


// Copy the first array into the merged array

for(i = 0; firstArray[i] != '\n'; ++i)

{

mergedArray[i] = firstArray[i];

}

mergedIndex = i;


//Copy second array into merged array

for(i = 0; secondArray[i] != '\n'; ++i)

{

mergedArray[mergedIndex++] = secondArray[i];

}


mergedArray[mergedIndex] = 0;

cout<<"\nMerged : ";

for(i = 0; i<>

{

cout<

}

sort(mergedArray, mergedIndex);

cout<<"\nSorted : ";

for(i = 0; i<>

{

cout<

}

system("PAUSE");

return EXIT_SUCCESS;

}

void sort(char array[], int length)

{

int stop = length - 1;

for (int i = 0; i <>

{

for (int j = 0; j <>

{

if (array[j] > array[j+1])

{

char tmp = array[j];

array[j] = array[j+1];

array[j+1] = tmp;

}

}


}

}

------------------------------


-----------------------------


#include

#include

#include

#include


using namespace std;


const size_t N = 10;

const char

Read More
Next PostNewer Posts Previous PostOlder Posts Home