Monday, 8 August 2011

PSY404


PSY403


PSY402


PSY401


PSY101


PSC401


PSC201


PHY301


PHY101


PAK301


MTH501


MTH401


MTH302


MTH301


MTH202


MTH101


MTH001


MKTI620


MKTI619


MKT630


MKT625


MKT624


MKT621


MKT620


MKT619


MKT611


MKT610


MKT501


mis620


MIS619


MGTI620


MGTI619


MGT620


MGT619


MGT613


MGT611


MGT610


MGT604


MGT603


MGT602


MGT601


MGT520


MGT510


MGT504


MGT503


MGT502


MGT501


MGT411


MGT402


MGT401


MGT301


MGT211


Saturday, 6 August 2011

MGT201


MGT111


MGT101


MCM515


MCM514


MCM511


MCM501


MCM431


MCM411


MCM404


MCM401


MCM311


MCM310


MCM304


MCM301


MCM101


IT430


IT00001


IT000


ISL201


HRMI620


HRMI619


HRM628


HRM627


HRM625


HRM624


HRM623


HRM620


HRM619


HRM611


FINI620


FINI619


FIN630


FIN625


FIN624


FIN623


FIN622


FIN621


FIN620


FIN619


FIN611


ETH201


ENG401


ENG301


ENG201


ENG101


ENG001


ECO404


ECO403


ECO402


ECO401


CS723


Friday, 5 August 2011

HANDOUT SELL

MA APNE HANDOUT SELL KARNA CHAHTA HO 
cs302  
phy301
Contact me  03314042971

HANDOUT SELL

MA APNE HANDOUT SELL KARNA CHAHTA HO 
cs302  
phy301
Contact me  03314042971

HANDOUT SELL

MA APNE HANDOUT SELL KARNA CHAHTA HO 
cs302  
phy301
Contact me  03314042971

RESULT

RESULT 2011 FINAL TERM


ON 15 SEPTEMBER

Thursday, 4 August 2011

cs720


CS718


CS716


CS712


CS709


CS709


CS708


CS704


CS703


CS702


CS701


CS619


CS615


CS614


CS610


CS609


CS607


CS606


CS605


CS604


CS602


CS601


CS508


CS507


CS506


CS504


CS502


CS501


CS410


CS408


CS403


CS402


CS401


CS304


CS302


CS301


CS201


CS101


cs001


Wednesday, 3 August 2011

MDTERM PAPER FALL 2011 MONTH OF MAY



CS101 - Introduction to Computing

1) What is the key of feature batch program?
2) Name two languages which are used for client side scripting?
3) What is the purpose of MODEM?
4) What is 

tag in HTML and how it is different from 
tag?
5) Why microprocessor uses the binary number system and not the decimal or any other number system?
6) What is the difference between interactive mode and batch mode application software?
 difference between batch mode and interactive mode

CS201 MDTERM PAPER FALL 2011 MONTH OF MAY
this paper is shared by someone
long questions in CS201 midterm paper
are
Write a short note on files and also explain how they are handled in C++?
Is comparison possible in pointers? If yes what operators are used, if no justify your answers ?Briefly explain structure padding?

long questions in CS201 midterm paper are Write a short note on files and also explain how they are handled in C++?
Is comparison possible in pointers? If yes what operators are used, if no justify your answers ?
Briefly explain structure padding?
What is the difference between single and multi dimensional arrays?
Explain the meaning of given C++ statement: const int *ptr = &x;Write about char str?
1)Differentiate between Random access and Sequential access 5marks

2)Write a declaration statement for an array of 10 elements of type float. Include an initialization statement of the first four elements to 1.0, 2.0, 3.0 and 4.0. 5marks

ALL MCQS from past papers of 2010,2009
long Questions 
Code for the programme prints diognals elements of matrix n by n, n is any number.
WRITE note on char strng.
programme out put was asked.
types of pointers and their uses.
one dimentional and two dimentional aray par note.

Q:- Give one major use of Pointer? (2 marks
Q:- What does the file mode parameter ios::binary mean? ( 2 Marks)
Q:- What are the basic steps of file handling? ( 3 Marks)
Q:- Differentiate between array & list? ( 3 Marks)
Q:- Differentiate between random access & sequential access file? (5Marks)

Consider the structure 2 Marks 
struct Customer

{
int custnum;
int salary;
float commission;
};
A programmer wants to assign 2000 for the structure member salary in the above example of structure Paper copy from vu thirty nine dot com Customer with structure variable cust1 What line of code should he write
Why are arrays usually processed with for loop? 2 Marks
What are the basic steps of file handling? 3 Marks
When a pointer is incremented, what happens in the following cases? 3 Marks
a) Single-dimensional array
b) Two-dimensional array

int array[10]; is an integer array then write the statements which will store values at Fifth and Ninth location of this array. 5 Marks
Write down the output of the code given below : 5 Marks
Hint:
Size of char is 1 byte
Size of int is 2 byte
Size of float is 4 byte
#include <iostream.h>
union mytypes_t {
char c;
int i;float f;

} mytypes;



int main(){



mytypes.c = 'H';

mytypes.i = 15;



cout << sizeof(mytypes)<<endl;



mytypes.i = 15;

mytypes.c = 'H';



cout << sizeof(mytypes)<<endl;



system("PAUSE");

return 0;

}


Q No: 1 Disk are ……. Divice having access time of …..millisecond. 1

Q No: 2 C is widely known as development language of ……operating. 1

Q No: 3 Codes the following coed segment, At with time number, error an occur. 1

1. Cont int x=10;

2. Inty =5;

3. Const int * ptr = 8x;

4. X + x ++;

Q No: 4 The keyword ….. is used to return some value from a function. 1

Q No: 5 let suppose

Union intor double {

Intival;

Double chanrva;

}

Main()

{ intor double VZA;

Int size;

Size=size of (VZA);}

What will be the value of variable “size” if int occupies 4 bytes and double occupies 8 bytes?

Q No: 6 The value of x after evaluating the expression x=10+3*4/2-1 will be. 1

Q No: 7 In call by reference ……… of a variable is pass to call function. 1

Q No: 8 To assigned a value to character type variable are used around the value. 1

Q No 9 What will be the correct syntax for initialization of pointer ptr with string "programming"?

Q No 10 Which character is inserted at the end of string to indicate the end of string?

Q No 21 Why matrixes always start with 0 indexes? 2

Q No 22 Which bit of a number is a sign bit? 2

Q No 23 What do you know about the Stream? Define the types of stream. 3

Q No 24 What is Difference between Array and List? 3

Q No 25 What are the differences are similarities between Structures and Unions? 5

deffrtiate b/w arrays and pointers 5 marks
how to insert the file in miidle of the something like tht from past papers 5 marks
correct the code from q past papers 3 marks
wrte the matrix code like q from past papers 3 marks



long QuestionsCode for the programme prints diognals elements of matrix n by n, n is any number.
WRITE note on char strng.programme out put was asked.
types of pointers and their uses.




CS201
My long questions...

- what are function pointers
- Diference between tellg() and tellp()
- difference between random access file and sequence access file
- why do u close a file>

This was mine paper of today
objective may say kuch bata deta hoo jo aya tha mujhay;

- C-language kis labortary may invent hoi.
- C is widely known as development language of _______ operating system.

► Linux

► Windows

► Unix

► Mac OS


- What will be the result of arithmetic expression 6+27/3*3?

► 33

► 45

► 9

► 30


- What will be the correct syntax for initialization of pointer ptr with string "programming"?

► char ptr = ’programming’ ;

► char *ptr = “programming” ;

► char *ptr = ‘programming’ ;

► *ptr = “programming” ;
- Which character is inserted at the end of string to indicate the end of string?

► new line

► tab
► null
► carriage return
- ek question that like variable say related jis ki option kuch is tarah say the;
int (i)
int [2
 and subjective may say;
Q1- Write down the output of the following code?
int array[7], sum = 0;
for(int i=0;i<7;i++)
{
array = i;
sum+= array;
}
cout<< “ Sum = “ <<sum;
Q2- Explain C-String with an example?
Q3- anonymous structure and anonymous union k baray likhain?
Q4- 2 question practical related thay jis may code dya gya tha us ko theek kerna tha
geek ki option say.[/b]
long questions in CS201 midterm paper
are
Write a short note on files and also explain how they are handled in C++?
Is comparison possible in pointers? If yes what operators are used, if no justify your answers ?
Briefly explain structure padding?
What is the difference between single and multi dimensional arrays?
Explain the meaning of given C++ statement: const int *ptr = &x;
Write about char str?

Q:- Give one major use of Pointer? (2 marks

Q:- What does the file mode parameter ios::binary mean? ( 2 Marks)

Q:- What are the basic steps of file handling? ( 3 Marks)

Q:- Differentiate between array & list? ( 3 Marks)

Q:- Differentiate between random access & sequential access file? (5Marks)
 MTH101 

20 mcq's 20 question short
obejctive from past papers

short question are of differentiation 2 of 2 marks
one question is of find the equation of the tangent line 3 marks
umm one is of chechking the real numbers 3marks

one is of finding the extrema using second derivative 5 marks MID TERM PAPER 2011






FREQUENTLY ASKED QUESTIONS (FAQS)


Q.  Is the Virtual University a private or Government institution?
Ans. Virtual University of Pakistan is very much a Government University. It was established by the Government of Pakistan to provide extremely affordable world class education to aspiring students all over the country.

Q.  Does the University have different standards for the various provinces?
Ans. Absolutely not. The Virtual University provides an identical education to all its students regardless of their geographical location. All Virtual University students, regardless of whether they live in large cities or small towns or even remote areas are taught by the same professors, receive the same study materials. Even examinations are identical throughout the country.

Q.  How is identical education possible all over the country?
Ans. The Virtual University uses free to air television for broadcasting its lectures and interaction between students and tutors happens over the Internet. Examinations are conducted in a formal proctored environment at centers allocated for the purpose by the University. The Virtual University operates its own four television channels (VTV1, VTV2, VTV3 & VTV4). Students listen to the lectures in classroom environment in virtual campuses spread all over the country. The students are provided at these campuses, free Internet facility to interact with the teachers. All lecture videos of Virtual University courses are also available for a very nominal cost.

Q.  Who are the Professors at the Virtual University of Pakistan?
Ans. The Virtual University utilizes the services of the very best professors that the country has to offer. They belong to the best universities and other institutions of the country and are acknowledged masters of their subjects. Most of the professors hold PhD degrees and even several vice-chancellors of major national universities have taught courses at the Virtual University.

Q.  Then VU education must be very expensive!
Ans. You will be surprised at the affordability of Virtual University programs. Despite the provision of world-class facilities and education, the cost of a BS program is only Rs. 500 per credit hour. The fee for the Diploma program, MCS, MIT and MBA fees are only Rs. 750 per credit hour. The fee for the MS program in Computer Science is Rs.2,500/- per credit hour.

Q.  So where do I study?
Ans. If you are a full time student then you should join any one of the more than 100 campuses of the Virtual University. These are located in over 60 cities of the country and the list is available on the VU web-site (http://www.vu.edu.pk). By studying at any of these campuses you will be able to interact with your class-fellows and also avail free computer and Internet facilities which are required for student -teacher interaction. However, if you are a working professional or it is difficult for you to attend classes at a campus, then you can study from home. In this case you will need a television, and a computer with Internet connectivity.

Q.  And how do I study?
Ans. You attend lectures as per the declared timetable through Virtual University's television network which operates four channels VTV1, VTV2, VTV3 and VTV4. The schedule is always available on the VU web-site. In case you miss any lecture, all Virtual University courses are also available on CDs at very nominal cost. In addition to the prescribed text books, extensive reading material is made available over the Internet through the university's Learning Management System (LMS).

Q.  What if I need to ask a question?
Ans. You can ask questions at any time over the Internet using the Virtual University's comprehensive Learning Management System (http://vulms.vu.edu.pk). No other university of the country offers such a facility.

Q.  How do I appear for my exams?
Ans. The Virtual University establishes examination centers throughout the country. Examinations are conducted under the supervision of the examiners who ensure the sanctity of the process.

Q.  Is the VU degree recognized?
Ans. The Virtual University has been established by the Government of Pakistan. As such, its degrees are recognized nationally as well as internationally. Please visit the HEC web-site (http://www.hec.gov.pk/new/main/ourinstitutes.htm)
Q.  From where can I obtain the lecture CDs?
Ans. CDs are easily available through the Virtual University bookshop (http://bookshop.vu.edu.pk). Availability of CDs is not limited to VU students only; students and faculty from other universities as well as the public at large can benefit from these courses.

Q.  Can Virtual University help me to learn how to operate a computer?
Ans. Definitely. You do not need to go to any computer center to learn the basics of computers. The Virtual University has developed a very exciting and comprehensive set of interactive CDs that will lead anybody through the basic learning process. No teacher is necessary and all instructions on these CDs are delivered in Urdu, thereby making them extremely easy to understand and follow for all age groups.

Q.  Are the courses offered by VU comparable to international standards?
Ans. Yes. Virtual University programs are based on curricula developed by the Higher Education Commission (HEC). The course outlines used in these curricula are based on international demands and standards.

Q.  Will I be able to continue my education in any other university after obtaining a degree from VU?
Ans. Definitely. In fact, VU graduates are already pursuing their MS and higher studies at top universities both within Pakistan as well as abroad.

Q.  How can I get my admission form and where should I submit it?
Ans. You can get the form and all necessary information from any of the Virtual University campuses. You can submit completed application forms along with all required documents to the same campus or directly to the Virtual University Head Office. You may also download the form without charge from the VU web-site (http://www.vu.edu.pk/apply).

CONTACT US


VU HEAD OFFICE
VIRTUAL UNIVERSITY OF PAKISTAN
M.A. JINNAH CAMPUS, DEFENCE ROAD, OFF RAIWIND ROAD, LAHORE, PAKISTAN.
PHONE+92 (42) 111 880 880
FAX+92 (42) 99200604
+92 (42) 99202174
 
PHONE EXTENSIONSEMAIL
ADMISSIONS
ADMISSION IN BACHELOR PROGRAMS345bacheloradmissions@vu.edu.pk
ADMISSION IN DUAL DEGREE PROGRAM
(FOR VU GRADUATES)
345dualdegree@vu.edu.pk
ADMISSION IN MBA PROGRAMS344mbaadmissions@vu.edu.pk
ADMISSION IN MCS PROGRAM347mcsadmissions@vu.edu.pk
ADMISSION IN MIT PROGRAM347mitadmissions@vu.edu.pk
ADMISSION IN MCS/MIT (DEFICIENCY SEMESTER)347deficiencysemester@vu.edu.pk
ADMISSION IN MS-CS PROGRAM346msadmissions@vu.edu.pk
ADMISSION IN DIPLOMA PROGRAMS341diplomaadmissions@vu.edu.pk
ADMISSION IN SPECIALIZATION CERTIFICATE341specializationcertificate@vu.edu.pk
ADMISSION IN SHORT COURSES341certificateadmissions@vu.edu.pk
ADMISSION IN ZERO SEMESTER347zerosemester@vu.edu.pk
ADMISSION CANCELLATION347admissioncancellation@vu.edu.pk
RE-ADMISSION/TO CONTINUE STUDIES345readmission@vu.edu.pk
REQUEST FOR CREDIT TRANSFER / COURSE EXEMPTIONS342courseexemptions@vu.edu.pk
INFORMATION ABOUT INCOMPLETE ADMISSION APPLICATION FORMS346incompleteforms@vu.edu.pk
OVERSEAS STUDENT/VU STUDENT GOING ABROAD
CHANGE OF STUDENT STATUS (OVERSEAS TO PAKISTAN OR VICE VERSA)344overseas@vu.edu.pk
COURSE(S) PROBLEMS
COURSE SELECTION/TO ADD OR DROP COURSE(S)343course_selection@vu.edu.pk
SEMESTER ISSUES
SEMESTER FREEZE / UNFREEZE344semesterfreeze@vu.edu.pk
STUDENT ID CARDS
LOSS OF ID CARD/ISSUANCE OF DUPLICATE ID CARD348idcard@vu.edu.pk
STUDENT MISCELLANEOUS ISSUES
CHANGE OF STUDY PROGRAM/CHANGE OF DISCIPLINE342studyprogramchange@vu.edu.pk
CORRECTION OF STUDENT NAME/ADDRESS347studentprofile@vu.edu.pk
DSL BROADBAND INTERNET CONNECTIVITY346vubroadband@vu.edu.pk
ISSUANCE OF BONAFIDE AND MIGRATION CERTIFICATE341certificates@vu.edu.pk
RECEIPT OF MIGRATION CERTIFICATE FROM NEWLY ADMIT VU STUDENTS345migrationcertificate@vu.edu.pk
ACADEMIC ISSUES OF MS (CS) STUDENTS443mscs@vu.edu.pk hasnain@vu.edu.pk
TO STUDY AT HOME/ TO STUDY AT CAMPUS346athome@vu.edu.pk
VERIFICATION OF STUDENT APPLICATION(S) FOR SCHOLARSHIPS OFFERED BY GOVT. & SEMI GOVT. ORGANIZATIONS341formverification@vu.edu.pk
APPEAL AGAINST DECISION OF COMMITTEE OF UNFAIR MEANS341appeal@vu.edu.pk
CONVERSION OF QUALIFIED COURSE(S) FOR AWARD OF COURSE CERTIFICATE341certificates@vu.edu.pk
CHANGE OF CAMPUS
CAMPUS CHANGE346campuschange@vu.edu.pk
CHANGE OF STUDENT STATUS
TO STUDY FROM HOME TO CAMPUS/TO STUDY FROM CAMPUS TO HOME (FOR VU STUDENTS WITHIN PAKISTAN)346athome@vu.edu.pk
OVERSEAS TO PAKISTAN/ PAKISTAN TO OVERSEAS344overseas@vu.edu.pk
FOR CAMPUSES ONLY
CAMPUS CDS346campus_cds@vu.edu.pk
HOW TO BECOME VU PRIVATE SECTOR PARTNER711psp@vu.edu.pk
CLOSING / CANCELLATION OF CAMPUS711psp@vu.edu.pk
CORRECTION/CHANGE OF CAMPUS NAME & ADDRESS711psp@vu.edu.pk
CAMPUS COMPLAINTS711psp@vu.edu.pk
REGISTRAR, VU141registrar@vu.edu.pk
Back to Top
PHONE EXTENSIONSEMAIL
DIRECT PHONE LINE:  042-99204760
DATE SHEET / SIGN UP354DateSheet@vu.edu.pk
CONDUCT OF LOCAL EXAMINATIONS359, 353Conduct@vu.edu.pk
CONDUCT OF OVERSEAS EXAMS352OverseasExams@vu.edu.pk
RESULT RELATED QUERIES357result@vu.edu.pk
PROJECT RESULT355projects_result@vu.edu.pk
CGPA357result@vu.edu.pk
20% RULE357result@vu.edu.pk
UNFAIR MEANS/MISBEHAVIOR CASES358umc@vu.edu.pk
RECHECKING OF PAPER(S)359Rechecking@vu.edu.pk
ISSUANCE OF TWO YEAR TRANSCRIPTS356Transcript_2Year@vu.edu.pk
ISSUANCE OF 4 YEAR TRANSCRIPTS356Transcript_4Year@vu.edu.pk
ISSUANCE OF TWO YEAR DEGREE351Degree_2Year@vu.edu.pk
ISSUANCE OF FOUR YEAR DEGREE351Degree_4Year@vu.edu.pk
ISSUANCE OF PROFESSIONAL CERTIFICATES351professional_certificate@vu.edu.pk
APPOINTMENT/PAYMENT OF THE EXAM SUPERINTENDENTS358Superintendent@vu.edu.pk
PROBLEMS RELATED TO
APPOINTMENT /PAYMENT OF THE SUPERINTENDENTS
DELAY IN AN EXAM RELATED MATTER
SUPERVISION OF THE EXAM DEPT.
152dce@vu.edu.pk
OVERALL SUPERVISION OF EXAM DEPT
INORDINATE DELAY IN PROCESSING VARIOUS EXAM RELATED CASES
151ce@vu.edu.pk
ISSUANCE OF SPECIALIZATION CERTIFICATES451specialization_certificate@vu.edu.pk
ISSUANCE OF 1-YEAR TRANSCRIPT OF RECORD/DIPLOMA451diploma_1year@vu.edu.pk
ATTENDANCE OF STUDENTS RELATED ISSUES355student_attendance@vu.edu.pk
VERIFICATION OF DEGREE/TRANSCRIPT OF RECORD451document_verification@vu.edu.pk
ISSUANCE OF INCOMPLETE/PARTIAL TRANSCRIPT356partial_transcript@vu.edu.pk
FOR CONVOCATION RELATED QUERIES353convocation@vu.edu.pk
PHONE EXTENSIONSEMAIL
VULMS ISSUES264lms_support@vu.edu.pk
GENERAL IT SUPPORT363,261it_support@vu.edu.pk
PASSWORD RELATED ISSUES363password@vu.edu.pk
E-MAIL RELATED PROBLEMS363password@vu.edu.pk
PHONE EXTENSIONSEMAIL
BOOKSHOP536logistics@vu.edu.pk
ISSUES RELATED TO LECTURE CDS535bookshop@vu.edu.pk
ISSUES RELATED TO LECTURE HANDOUTS535bookshop@vu.edu.pk
BOOKSHOP ISSUES536logistics@vu.edu.pk
PHONE EXTENSIONSEMAIL
ALL ISSUES RELATING TO FEE OF BS / BA335BS_fee@vu.edu.pk
ALL ISSUES RELATING TO FEE OF MASTERS335Masters_fee@vu.edu.pk
ALL ISSUES RELATING TO FEE OF MS335MS_fee@vu.edu.pk
ALL ISSUES RELATING TO FEE OF OVERSEAS335Overseas_fee@vu.edu.pk
FOR RECHECKING, TRANSCRIPT, READMISSION ,ZERO SEMESTER ETC.335Others_fee@vu.edu.pk
FOR ALL REFUND/SECURITY RELEASES.335security_refund@vu.edu.pk
FOR ALL PVC MATTERS.335Pvc_accounts@vu.edu.pk
DIRECTORATE OF FINANCEdirector_finance@vu.edu.pk
Back to Top
PHONE EXTENSIONSEMAIL
FINAL PROJECT/THESIS/INTERNSHIP
BS (CS & IT)/MCS/MIT SOFTWARE PROJECTS443, 444cs619@vu.edu.pk
MBA FINAL PROJECT / INTERNSHIP REPORT
BNK619-FINAL PROJECT - BANKING394bnk619@vu.edu.p
BNKI619-INTERNSHIP REPORT - BANKING394bnki619@vu.edu.pk
FIN619-FINAL PROJECT - FINANCE394fin619@vu.edu.pk
FINI619-INTERNSHIP REPORT - FINANCE394fini619@vu.edu.pk
HRM619-FINAL PROJECT - HUMAN RESOURCE MANAGEMENT393hrm619@vu.edu.pk
HRMI619-INTERNSHIP REPORT - HUMAN RESOURCE MANAGEMENT393hrmi619@vu.edu.pk 
MGT619-FINAL PROJECT - MANAGEMENT395mgt619@vu.edu.pk 
MGTI619-INTERNSHIP REPORT - MANAGEMENT395mgti619@vu.edu.pk 
MIS619-FINAL PROJECT - MIS396mis619@vu.edu.pk 
MISI619-INTERNSHIP REPORT - MIS396misi619@vu.edu.pk 
MKT619-FINAL PROJECT - MARKETING392mkt619@vu.edu.pk 
MKTI619-INTERNSHIP REPORT - MARKETING392mkti619@vu.edu.pk 
BS (ACCOUNTING & FINANCE) FINAL PROJECT / INTERNSHIP REPORT
ACF619-FINAL PROJECT - ACCOUNTING & FINANCE394acf619@vu.edu.pk
ACFI619-INTERNSHIP REPORT - ACCOUNTING & FINANCE394acfi619@vu.edu.pk
BS (BUSINESS ADMINISTRATION) FINAL PROJECT / INTERNSHIP REPORT
BNK619-FINAL PROJECT - BANKING394bnk620@vu.edu.pk
BNKI619-INTERNSHIP REPORT - BANKING394bnki620@vu.edu.pk
FIN619-FINAL PROJECT - FINANCE394fin620@vu.edu.pk
FINI619-INTERNSHIP REPORT - FINANCE394fini620@vu.edu.pk
HRM619-FINAL PROJECT - HUMAN RESOURCE MANAGEMENT393hrm620@vu.edu.pk
HRMI619-INTERNSHIP REPORT - HUMAN RESOURCE MANAGEMENT393hrmi620@vu.edu.pk 
MGT619-FINAL PROJECT - MANAGEMENT395mgt620@vu.edu.pk 
MGTI619-INTERNSHIP REPORT - MANAGEMENT395mgti620@vu.edu.pk 
MIS619-FINAL PROJECT - MIS396misi620@vu.edu.pk 
MISI619-INTERNSHIP REPORT - MIS396misi620@vu.edu.pk 
MKT619-FINAL PROJECT - MARKETING392mkt620@vu.edu.pk 
MKTI619-INTERNSHIP REPORT - MARKETING392mkti620@vu.edu.pk 
BS (COMMERCE) FINAL PROJECT / INTERNSHIP REPORT
COM619-FINAL PROJECT - COMMERCE394com619@vu.edu.pk
COMI619-INTERNSHP REPORT - COMMERCE394comi619@vu.edu.pk
BS (MASS COMMUNICATION) FINAL PROJECT / INTERNSHIP REPORT
MCM619-FINAL PROJECT - MASS COMMUNICATION291mcm619@vu.edu.pk
MCMI619-INTERNSHIP REPORT - MASS COMMUNICATION291mcmi619@vu.edu.pk
BS (PSYCHOLOGY) FINAL PROJECT / INTERNSHIP REPORT
PSY619-FINAL PROJECT - PSYCHOLOGY291psy619@vu.edu.pk
PSYI619-INTERNSHIP REPORT - PSYCHOLOGY291psyi619@vu.edu.pk
BS (PUBLIC ADMINISTRATION) FINAL PROJECT / INTERNSHIP REPORT
PAD619-FINAL PROJECT - PUBLIC ADMINISTRATION393pad619@vu.edu.pk
PADI619-INTERNSHIP REPORT - PUBLIC ADMINISTRATION393padi619@vu.edu.pk
ACADEMIC DEPARTMENTS
DEPARTMENT OF COMPUTER SCIENCE/ITacademics@vu.edu.pk
DEPARTMENT OF PHYSICSacademics@vu.edu.pk
DEPARTMENT OF MATHEMATICSacademics@vu.edu.pk
DEPARTMENT OF STATISTICSacademics@vu.edu.pk
DEPARTMENT OF ISLAMIC STUDIESacademics@vu.edu.pk
DEPARTMENT OF PAKISTAN STUDIESacademics@vu.edu.pk
DEPARTMENT OF ENGLISHacademics@vu.edu.pk
DEPARTMENT OF MANAGEMENT SCIENCES291mfsadiq@vu.edu.pk
DEPARTMENT OF ACCOUNTING & FINANCE291mfsadiq@vu.edu.pk
DEPARTMENT OF PSYCHOLOGY291mfsadiq@vu.edu.pk
DEPARTMENT OF MASS COMMUNICATION291mfsadiq@vu.edu.pk
DEPARTMENT OF COMMERCE291mfsadiq@vu.edu.pk
PHONE EXTENSIONSEMAIL
STUDENT ACTIVITIES
CURRICULAR /CO-CURRICULAR ACTIVITIES717moa@vu.edu.pk
VU - ALUMNI717moa@vu.edu.pk
MARKETING DEPARTMENT RELATED MATTERS/ISSUES751me@vu.edu.pk
STUDENT COMPETITIONS751me@vu.edu.pk
PROJECT DIRECTOR MARKETING771gmvtv@vu.edu.pk
PHONE EXTENSIONSEMAIL
CABLE OPERATOR PROBLEMS282txivtv@vu.edu.pk
VTV CHANNELS RECEPTION/TRANSMISSION PROBLEM282txivtv@vu.edu.pk