Search This Blog

Monday 27 August 2018

CS402 - Quiz 2 of today

Dear Fellows:

Please download the quiz 2 of CS402 by just click the download now.

Download Now

Wednesday 15 August 2018

CS601 - Data Communication - Best Solution of GDB

Dear Students:


The best answer of the of GDB of CS601 is as follow:


Tuesday 14 August 2018

ENG201 - Quiz 4 of today

Dear Fellows:

Please download the quiz 4 of ENG201 by just click the download now.

Download Now

Thursday 9 August 2018

Tuesday 7 August 2018

CS402 - Theory of Automata - Solution of GDB

Dear Students:


You may download the idea of the solution of GDB of CS402 by just click the Download.

Download Now

Monday 6 August 2018

ENG201 - BUSINESS COMMUNICATION AND TECHNICAL WRITING - Solution of Assignment 3

Dear Students:


You may download the idea of the solution of assignment no 3 of of q2 ENG201 by just click the Download.

Download Now

Sunday 29 July 2018

CS402 - Theory of Automata  - Solution of Assignment 3


Dear Students:


You may download the idea of the solution of assignment no 3 of CS402 by just click the Download.

Download Now

Saturday 28 July 2018

CS601 - Data Communication  - Solution of Assignment 3


Dear Students:


You may download the idea of the solution of assignment no 3 of CS601 by just click the Download.

Download Now

Friday 27 July 2018

MTH202 - Discrete Mathematics - Solution of Assignment 2

Dear Students:


You may download the idea of the solution of assignment no2 of MTH202 by just click the Download.

Download Now

CS201 Introduction to Programming - Viva Preparation

Dear Class Fellows:


You may download the file for preparation of VIVA activity. Download the file by just click the Download.


Thursday 26 July 2018

CS201 Introduction to Programming - Viva activity for CS201, Spring 2018

Dear Class Fellows:

Viva activity for CS201 is going to be held from Tuesday 31st July 2018 to 16 August 2018. This activity has 5% weightage of your overall result in this course.

List of students IDs and viva date/time along with other details will be uploaded on Monday 30th July 2018 after 4.00PM on VU-LMS.

So keep checking your VU-LMS regularly.

Tuesday 24 July 2018

STA301 - Statistics and Probability Solution of Assignment 2

Dear Students:


You may download the idea of the solution of assignment no2 of STA301 by just click the Download.

Download Now

Sunday 22 July 2018

ENG201 Business Communication - Solution of GDB

Your life depends on you. Try to go outside your comfort zone and you will find a lot of interesting and new opportunities. Every time when you meet new people, you have more chances to have new opportunities to have a more interesting and creative life. Create your future, don’t waste good opportunities, enjoy your life.You and just you is responsible for your life. Nothing will change in your life if you are not working for it. Create your life happy and interesting.
''Success is not final; failure is not fatal: It is the courage to continue that counts''.
                                                                                   (WINSTAN.S CHURCHILL)
In life, the most important is to keep moving. Some days will be great and successful, and some will be harder, just enjoy and celebrate your good days and keep moving on your hard days. Never give up if something is not going as you planned. Maybe that particular situation and hard time will bring you more success and enjoyment than you thought before. Fear stops us from achieving our dreams. Believe me, if you have it in your dreams, so you are able to have it in your life. Work for it, find different ways to achieve it. Don’t be scared, don’t give up.

(Its a sample Idea)

Saturday 21 July 2018

CS201 Introduction to Programming - Sollution og Assignment 3

#include <iostream>
#include <string>
using namespace std;
class Laptop
{
    private:
        string Brand, Processor;
        int Ram, hardDrive;
   
    public:
    Laptop()
        {
            cout<<"Default Constructor Called \n";
            Brand = "None";
            Processor = "None";
            Ram = 0;
            hardDrive = 0;
        }
   
        void setBrand(string b)
        { Brand = b; }
        void setProcessor(string p)
        { Processor = p; }
        void setRam(int r)
        { Ram = r; }
        void sethD(int hd)
        { hardDrive = hd; }
   
        string getBrand()
        { return Brand; }
        string getProcessor()
        { return Processor; }
        int getRam()
        { return Ram; }
        int gethD()
        { return hardDrive; }
   
    Laptop(string theBrand, string theProcessor, int theRam, int thehardDrive)
        {
          cout<<"Parameterized Constructor Called...\n";
          Brand = theBrand;
          Processor = theProcessor;
          Ram =  theRam;
          hardDrive = thehardDrive;
        }
    };
int main()
{
 
  Laptop l;
  cout<<"\nBrand : "<<l.getBrand()<<"\nProcessor : "<<l.getProcessor()<<"\nRam : "<<l.getRam()<<"\nHard Drive : "<<l.gethD()<<"\n\n";


  Laptop l2("dell", "i5", 400, 500);
  cout<<"\nBrand : "<<l2.getBrand()<<"\nProcessor : "<<l2.getProcessor()<<"\nRam : "<<l2.getRam()<<"\nHard Drive : "<<l2.gethD()<<"\n";
  system("pause");
}

Friday 20 July 2018

STA301 - Statistics and Probability Solution of Practice questions(lesson 23 to 30)

Dear Students:


You may download the solution of practice questions from Lecture no. 23 to 30 of STA301 by just click the Download.

Download Now

Thursday 19 July 2018

CS601 Data Communication - Solved screenshots of today attempted Quiz


Dear Students:


You may download the solved screenshots of cs601 today Quiz of 19-July-2018 by just click the Download.

Download Now

Wednesday 18 July 2018

CS601 Data Communication - Chapter 10 Short Notes/Concepts Types of Error

Dear Fellow:


You may download the short notes/Concepts of chapter 10 of CS601  i.e. Types of Error by just clicking the download now.

DOWNLOAD NOW

Tuesday 17 July 2018

ENG201 Business Communication - Solution of today attempted Quiz

Dear Students:


You may download the solution of ENG201 today Quiz of 17-July-2018 by just click the Download.

Download Now

ENG201 Business Communication - Solution of today attempted Quiz

Dear Students:


You may download the solution of ENG201 today Quiz of 16 and 17-July-2018 by just click the Download.

Download Now

Sunday 15 July 2018

MTH202 - Discrete Mathematics (Final Term Examination)

Dear Fellows,


Your Final Term Examination of MTH202 will be based on the concepts you have learned in lectures 1 – 45. 

25% from lectures 1 - 22 
75% from lectures 23 - 45. 

It will be based on Objective questions (MCQs) and subjective questions of 2, 3 and 5 marks. 

Friday 13 July 2018

CS601 - Data Communication (Final Term Examination)


Dear Fellows,

Your Final Term Examination of CS601 will be based on the concepts you have learned in lectures 1 – 45. 

20% from lectures 1 - 22 
80% from lectures 23 - 45. 

It will be based on Objective questions (MCQs) and subjective questions of 2, 3 and 5 marks. 

Thursday 12 July 2018

CS201 Introduction to Programming - Short Notes/Concepts

Dear Fellow:


You may download the short notes/Concepts of CS201 by just clicking the download now.

DOWNLOAD NOW

ENG201 - Business and Technical English Writing (Final Term Examination)

Dear Fellows,

Your Final Term Examination of Eng201 will be based on the concepts you have learned in lectures 1 – 45. 

30% from lectures 1 - 22 
70% from lectures 23 - 45. 

It will be based on Objective questions (MCQs) and subjective questions of 2, 3 and 5 marks. 

CS601 Data Communication - Chapter 9 Short Notes/Concepts of Data Link Layer

Dear Fellow:


You may download the short notes/Concepts of chapter 9 of CS601 from topic 120 to topic 134 i.e. Data Link Layer by just clicking the download now.

DOWNLOAD NOW

Wednesday 11 July 2018

Data Communication - CS601 - (Chapter 9 to Chapters 12)


Dear Students:


You may download the following pdf file that contains the Data communication updated slides of chapter 9 to chapter 12.

Download Now

ENG201 - Business and Technical English Writing - Announcement QUIZ III


DATE: Quiz No. 3 on 16 July – 17 July, 2018
Syllabus: Lesson No. 23 to 27.
Time for 1 MCQs: 90 seconds. 

All the Best!

Sunday 8 July 2018

CS601 Data Communication - Virtual Circuit Network

Dear Fellow:

You may download the short notes/Concepts on the topic of CS601 (120-122) i.e. Virtual Switching by just clicking the download now.

DOWNLOAD NOW

CS601 Data Communication - Quiz-2 Announcement



Dear Fellows,

You are required to visit LMS for Quiz no 2 as scheduled.
Date - 19th July 2018 to 20th July 2018..
Topic Cover - topic no 120 to Topic no 165

The quiz will be opened for 48 hours and there is no extra time given to attempt it.



Wish you very best of luck!

Friday 6 July 2018

Download All MCS Solved Final-Term Past Papers by Waqar Siddhu Just one click Away

Dear Felllows:


You may download the solved Final-Term past papers of the following subjects of WAQAR SIDHU screenshots by just click the Download.


         CS201
         CS402
         CS601
         ENG201
         MTH202
         STA301

Download Now

Tuesday 3 July 2018

STA301 - Statistics and Probability Solution of Practice question 5 (lesson 11 to 15)


Dear Students:

You may download the correct solution of practice questions from Lecture no. 11 to 15 of STA301 by just click the Download.

Download Now

Monday 2 July 2018

STA301 Statistics and Probability - Current 2018 Mid-Term Papers


Dear Students:

You may download the STA301 the current mid-term papers by just click the Download.

Download Now

STA301 Statistics and Probability - Waqar Sidhu Solved Screenshot


Dear Students:

You may download the STA301 solved Waqar Sidhu Screenshots of past mid term exams by just click the Download.

Download Now

STA301 Statistics and Probability - How to draw Histogram and Polgon in EXCEL


Dear Students:

You may download the file for the tutorial how to draw Histogram and polygon in EXCELby just click the Download.

Download Now

Friday 29 June 2018

ENG201 Business Communication - Solved Subjective of WaqarSidhu ScreenShot


Dear Students:


You may download the Waqar Sidhu Screen solved subject screenshots of Past Mid-Term paper of ENG 201 by just click the link download link.

ENG201 Business Communication - Solved Subjective of WaqarSidhu PastMidTerm ScreenShot

Dear Students:


You may download the Waqar Sidhu Screen solved subject screenshots of Past Mid-Term paper of ENG 201 by just click the link download link.

Thursday 28 June 2018

ENG201 Business Communication - WaqarSidhu PastMidTerm ScreenShot


Dear Students:


You may download the Waqar Sidhu Screen Shots of Past Mid-Term paper of ENG 201 by just click the link download link.

Tuesday 26 June 2018

Data Communication - CS601 - (Chapter 5 to Chapters 8)

Dear Students:


You may download the following pdf file that contains the Data communication updated slides from chapter 5 to chapter 8.

Download Now

Monday 25 June 2018

MTH202 Discrete Mathematics - Today Mid - Term paper 25-06-18

 Questions

Dear Fellows:


Please download the 25-06-2018 Paper of MTH202  by just click the below Download Link:

Download Now 

Sunday 24 June 2018

CS402 Theory of Automata - Solution of Waqar Sidhu Subjective Questions

Dear Fellows:


Please download the Solution of Waqar Sidhu past Subjective question of Theory of Automata by just click the below Download Link:

Download Now 

CS402 Theory of Automata Waqar Sidhu Subjective Questions

Dear Fellows:


Please download the Waqar Sidhu past Subjective question of Theory of Automata by just click the below Download Link:

Download Now 

Saturday 23 June 2018

CS402 Theory of Automata Waqar Sidhu Solved MCQs

Dear Fellows:

Please download the Waqar Sidhu solved past MCQs of Theory of Automata by just click the below Download Link:

Download Now 

Thursday 21 June 2018

CS201 Introduction to Programming - Assignment 2

// Assignment No.2
//Write a program in C++ that will ask some programming related questions ()
//from user and rank user according his / her answers in one of following categories:
//1- Beginner level
//2- Intermediate level
//3- Advanced level


#include <iostream>

using namespace std; //Allows computer to output data

const int TotQtn = 2; //define contant for total questions

char getinputs(char[]); //declare function to get input from user

int computeUserLevel(char*); //declare function to computer user level

main() //main function begins
{
//declare variables and array
int rank;
char option[TotQtn];

cout << "\t\t\"Program to Predict User Programming Level\"\n\n";

//get inputs from the user
getinputs(option);

//compute the rank of the user
rank=computeUserLevel(&option[0]);

switch (rank) //display result
{
case 3:
cout << "Your level is advanced";
break;

case 2:
cout << "Your level is Intermediate";
break;

default:
cout << "Your level is Beginner";
}
}//end of main function


//function which get the answer as inputs in the array
char getinputs(char ans[])
{
int q=0;
for(q=0;q<=TotQtn;q++)
{
if (q==0)
{
cout << "Q: Switch is a loop?\nA: ";
cin >> ans[q];
}
else if (q==1)
{
cout<<"Q: Pointer Store memory addresses?\nA: ";
cin >> ans[q];
}
else if (q==2)
{
cout<<"Q: Semicolon after for loop is an error?\nA: ";
cin >> ans[q];
}
}
return ans[q];
}

//function that compute the user level
int computeUserLevel(char *op)
{

if (*op=='f' && *(op+1) == 't' && *(op+2) == 'f')
{
return 3;
}
else if (*op == 'f' && *(op+1) == 't' && *(op+2) == 't')
{
return 2;
}
else
return 1;
}

Result of Assignments and Quiz


Wednesday 20 June 2018

CS201 Introduction to Programming - Paper pattren/Exam Guideline


Questions - 20MCQs
Marks - 1no X 20q = 20 marks 
Time - 1min * 20q = 20minutes
--------------------------------------------------------
3 question             
Marks - 2no X 2q = 04 marks
Time - 4min X 2q = 08 minutes
--------------------------------------------------------
2 question             
Marks - 3no X 2q = 6 marks
Time - 6min X 2q = 12minutes
------------------------------------------------------
2 questions
Marks - 5 no X 2q  =  10 marks
Time - 10 min X 2q= 20 minutes
-----------------------------------------------------------
TOTAL:
27 question - 40 marks - 60 minutes

Tuesday 19 June 2018

CS201 Introduction to Programming - Quiz for Mid-Term

Dear Fellows:


You may download the CS201 of Mid-term Solved Quiz by just click the Download link below for your preparation.

Download Now

Thursday 14 June 2018

CS201 Introduction to Programming - Function that copy a array into other array

//Copy a array of string into another array of string

#include <iostream>  //for input and output

using namespace std;

void copystr(char *destination, const char *source);

main()   //Main function begins
{
char str1[30]="This is the test string";
char str2[30];

cout << "Str1\n" << str1;
cout << "\nStr2" << str2;

copystr(str2,str1);

cout << "\nThe String is copied in aray 2\n" << str2;

}
//Main Program ends

void copystr(char *s1, const char *s2)
{
while (*s2!='\0')
{
*s1++=*s2++;
}
*s1='\0';
}

Wednesday 13 June 2018

CS201 Introduction to Programming - Convert String into Lower case

////This program converts a string into an lowercase string 

#include <iostream>
#include <ctype.h>

using namespace std; //Allows computer to output data

//declaring the function prototype
void converToLowercase(char *);

main() //main function begins
{
char str[30] = "WELCOME to VIRTUAL UNIVERSIty";
//char fstr;

cout << "The string before conversion is:\t" << str;

converToLowercase(str);

cout << "\nThe string after conversion is:\t\t" << str;

}//end of main function

void converToLowercase(char *sptr)
{
while(*sptr!='\0')
{
if (isupper(*sptr))
{
*sptr=tolower(*sptr);

}
++sptr;
}
}

Tuesday 12 June 2018

CS201 Introduction to Programming - bubble sorting by using swap fuction

// This program uses bubble sorting to sort a given array.
// We use swap function to interchange the values by using pointers

#include <iostream>

using namespace std; //Allows computer to output data

/* Prototye of function swap used to swap two values */ 
void swap(int *, int *);

main() //main function begins
{
int x[] = {1,3,5,7,9,2,4,6,8,10};
int i,j,swaps;

for (i=0;i<=10;i++)
{
swaps=0;
for (j=0;j<=10;j++)
{
// compare two values and interchange if needed
if (x[j]>x[j+1])
{
swaps++;
swap(&x[j],&x[j+1]);
}
}
}
//display the array’s elements after each comparison
for (j=0;j<=10;j++)
{
cout << x[j] << "\t\n";
if (swaps==0)
break;
}

}//end of main function


//function using pointers to interchange the values
void swap(int *a, int *b)
{
int tmp;
if (*a > *b)
{
tmp=*a;
*a=*b;
*b=tmp;
}
//cout << *a;
//cout << *b;
}

CS201 Introduction to Programming - SWAP function

#include <iostream>

using namespace std; //Allows computer to output data
void swap(int *, int *);
main() //main function begins
{
int x,y;

cout << "Value of X";
cin >> x;

cout << "\nValue of Y";
cin >> y;

swap(&x,&y);

cout << "\nValue of X" << x;
cout << "\nValue of Y" << y;

}//end of main function

void swap(int *a, int *b)
{
int tmp;

tmp=*a;
*a=*b;
*b=tmp;

cout << *a;
cout << *b;
}

Monday 11 June 2018

CS402 Theory of Automata - Quiz of 12-06-18

Dear Fellows:


You may download the CS402 of 12-06-2018 Solved Quiz by just click the Download link below.

Download Now

CS402 Theory of Automata - todayQuiz

Dear Fellows:


You may download the CS402 today's attempted Quiz with the solution  by just click the Download.

Download Now

Sunday 10 June 2018

CS402 Theory of Automata - Past Solved Quiz

Dear Fellows:


You may download the CS402 Past solved Quiz by just click the Download link below.

Download Now