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

MTH202 Assignment No. 1 Fall 2011 solution

Wednesday, November 02, 2011 Posted In Edit This
Assignment 1 Of MTH202 (Fall 2011)
Maximum Marks: 20                                                                                       
Due Date: Nov 02, 2011

DON’T MISS THESE: Important instructions before attempting the solution of this assignment:

> To solve this assignment, you should have good command over 01 - 09 lectures. 
> Try to get the concepts, consolidate your concepts and ideas from these questions which you learn in the 1 to 9 lectures.
> Upload assignments properly through LMS, No Assignment will be accepted through email.
> Write your ID on the top of your solution file.
> Don’t use colorful back grounds in your solution files.
> Use Math Type or Equation Editor etc for mathematical symbols.
> You should remember that if we found the solution files of some students are same then we will reward zero marks to all those students.
> Try to make solution by yourself and protect your work from other students, otherwise you and the student who send same solution file as you will be given zero marks.
> Also remember that you are supposed to submit your assignment in Word format any other like scan images etc will not be accepted and we will give zero marks correspond to these assignments.

Construct a logical circuit and truth table for the given statement;


Solution:

Click the below mentioned link for complete solution:

Mth202 assignment solution Fall 2011 

CS301 Assignment No. 1 Fall 2011 Solution

Wednesday, November 02, 2011 Posted In Edit This
-- Header File Source

#ifndef LINKEDLIST_H
#define LINKEDLIST_H
#include
using name space std;
template span>class T>
class LList
{
Private:
class ListNode
{
friend class LList;
T value;
ListNode *nest;
ListNode(T value1, ListNode *next1=NULL)
{
value=value1;
next=next;
}
};
ListNode *head;
public:
LList()
{
head=NULL;
)
~LList();
void appendNode(T);
void insertNode(T);
void deleteNode();
voide displayList();
void MoveNext();
void ShowCurrent();
};
template
voidLList::appendNode(T val)
{
if(head=NULL)
head=new ListNode(val);
else
{
ListNode *nodePtr;
while (nodePtr->next !=NULL)
nodePtr->next=new ListNode(val);
}
}
template
voidLList::displayList()
{
ListNode *nodePtr;
nodePtr =head;
while (nodePtr)
{
cout nodePtr->value endl;
nodePtr =nodePtr->next;

}
}
template
voidLList::ShowCurrent()
{
ListNode *nodePtr;
nodePtr=head;
countnodePtr->value endl;
}
template
voidLList::MoveNext()
{
ListNode *nodePtr;
nodePtr=head;
while (nodePtr)
{
nodePtr = nodePtr->next;
}
}
template
voidLList::insertNode(T val)
{
ListNode *nodePtr, *previousNodePtr;
if(head==NULL || head->value>=val)
{
head=new ListNode(val, head);
}
else
{
previousNodePtr=head;
nodePtr = head->next;
while (nodePtr !=Null&&nodePtr->value
{
previousNodePtr=NodePtr;
nodePtr = nodePtr->next;
previousNodePtr->nest=new ListNode(val, nodePtr);
template
voidLList::deleteNode()
{
ListNode *nodePtr, *previousNodePtr;
if(!head)
return
nodePtr=head;
head=head->next;
deletenodePtr;
}
template
LList::~LList
()
{
ListNode *nodePtr, *nextNodePtr;
nodePtr=head;

while (nodePtr !=NULL)
{
nextNodePte=nodePtr->nest;
delete nodePtr;
nodePtr=nextNodePtr;
}
}
#endif
Source of Mail Program
#include
#include
#include
#include "LList.h"
int main()
{
int TotalPersons=0,NumberofPasses,
LoopCounter=0,a=0,b=0;
string NameToAppend
count"how many people will play parates of Carribeans : course of black pearl game?
";
cin>>TotalPersons;
count"how many passes will be displayed? ";
cin>>NumberofPasses;
LListlist;
while(LoopCounter <=TotalPersons)
{
count"enter players name: ";
cin>>NameToAppend
list.appendNode(nameToAppend);
LoopCounter +=1;
}
while(a<=TotalPersons-1)
{
for(int c=0;c<=NumberodPasses;c++)
{
list.MoveNext();
}
count"removing :";
list.deleteNode();
list.ShowCurrent();
a+=1;
}
count"\nthe survivor is";
list.displayList();
getch();

MCM411 Assignment Solution Fall 2011

Wednesday, November 02, 2011 Posted In Edit This
QUESTION NO.1
Article 19 of the constitution of Pakistan gives “every citizen the right of freedom of speech and expression” Do you think the citizens of Pakistan enjoys this freedom? Discuss.

ANSWER:
Every citizen shall have the right to freedom of speech and expression, and there shall be freedom of the press, subject to any reasonable restrictions imposed by law in the interest of the glory of Islam or the integrity, security or defense of Pakistan.

Every citizen has the right to: join an association/union; freedom of speech and expression; freedom of the Press is guaranteed.

Every citizen shall have the right to freedom of speech and expression, and there shall be freedom of the press, subject to any reasonable restrictions imposed by law in the interest of the glory of Islam or the integrity, security or defense of Pakistan or any part thereof, friendly relations with foreign States, public order, decency or morality, or in relation to contempt of court, commission of or incitement to an offence Blasphemy laws Main article: 

Blasphemy law in Pakistan
The Pakistani government does not restrict religious publishing per se. However, it restricts the right to freedom of speech with regard to religion. Speaking in opposition to Islam and publishing an attack on Islam or its prophets are prohibited. Pakistan's penal code mandates the death penalty for anyone defiling the name of Muhammad, whom Muslims view as a prophet. This penal code mandates life imprisonment for desecrating the Koran, and up to 10 years' imprisonment for insulting another's religious beliefs with intent to outrage religious feelings.

Pakistan's wickedness laws are considered to be relatively strict, and have been the source of controversy in recent years. It has been alleged in some cases that Muslims who have engaged in public debate about their religion have been prosecuted for wickedness.

QUESTION NO.2
It is a common perception that PTV doesn’t portray both sides of an issue? Do you agree? Discuss.

ANSWER:
When Pakistan Television (PTV) started broadcasting in 1964, the few hours of transmission would commence with recitation from the Holy Quran.

Advertising, too, was free of any religious images and messages. In fact, PTV’s code prohibited the use of mosques, azan, images of Namaz, etc in advertising as it was considered an exploitation of religion for commercial purposes PTV channels are family oriented and the salient features of its policy are as follows:

PTV Corporation's broadcasts are family oriented and they carters the need of local audience by showing eastern family programs.

It also acts on social development theory of media, that’s why it shows informative programs about health and social issues.

It also censors commercials and holds a conservative standard as compared to other channels.

It supports government policies on national and international matters.

CS602 Assignment No. 2 Fall 2011 - Solution soon last date is 11-11-2011

Wednesday, November 02, 2011 Edit This
Question 20 marks

We have two vectors V1 = (1, 2, 3) and V2 = (4, 5, 6). 
Using these vectors evaluate the following. 
1. V1norm =? 6 marks
2. V1 + V2 =? 2 mark
3. V1.V2 =? 4 marks
4. V1 X V2 =? 8 marks

last date is 11-11-2011

CS610 Online Quiz Fall 2011 solved

Wednesday, November 02, 2011 Posted In Edit This














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