cs201 final term current paper solve virtual university of pakistan 2012
Online Quiz C++ Fall-2009
Q1: ofstream is used for________
· Input file stream
· Output file stream
· Input and output file stream
· All of the given
Q2: Function prototype is written,
· Within main function
· After the return statement in main
· Before the return statement in main
· Before call of that function
Q3: RAID stands for__________________.
· Redundant Array of Inexpensive Dices
· Redundant Array of Inexperience Devices
· Redundant Array of Inexpensive Devices
· Reduced Array of Inexpensive Devices
Q4: If int sum = 54; Then the value of the following statement is sum = sum - 3
· 52
· 50
· 51
· 57
Q5: In while loop the loop counter must be initialized,
· With in the loop
· Before entering the loop
· At the end of the loop
· None of the given options
Q6: Computer can understand only __________language code.
· High level
· Low level
· Machine
· Fourth generation
Q7: Transpose of a matrix means that when we interchange rows and columns_____________
· the first row becomes the Last column
· the first row becomes the first column
· the Last row becomes the first column
· the first column becomes the first row
Q8: Loops are _______________ Structure
· Decision
· Sequential
· Repetition
· None of the given options
Q9: C is widely known as development language of _______ operating system.
· Linux
· Unix
· Windows
· Mac OS
Q10: In_________, we try to have a precise problem statement
· Analysis
· Design
· Coding
· None of the given
Q11: _________ Keyword is used to return some value from a function.
· break
· return
· continue
· goto
Q12: Pointers store the ____________________
· value of a variable
· memory address
· characters
· None of the given
Q13: < , <= , > , >= are called __________ operators.
· Arithmetic
· Logical
· Relational
· Conational
Q14: the size of operator is used to determine the size of _____________.
· data
· variable
· data type
· None of the given (Correct Answer is Delete operator)
Q15: If int a = 50; then the value of a/= 3; will be,
· 15
· 18
· 16
· 17
Q16: _______________are conventional names of the command line parameters of the ‘main()’ function.
· ‘argb’ and ‘argv’
· ‘argc’ and ‘argv’
· ‘argc’ and ‘argu’
· None of the given
Q17: From following; which one is the correct syntax of an array initialize: Array size is 10 and it is of double data type to value 0?
· arr[10] = {0.0};
· double arr[10]= 0.0;
· double arr[10] = {0.0};
· double arr[] = 0.0;
Q18: ________ statement interrupts the flow of control.
· switch
· continue
· go to
· break
Q19: From the following; which one is used as an assignment operator?
· Equal sign ‘=’
· Double equal sign ‘==’
· Both equal and double equal sign
· None of the given options
FINALTERM EXAMINATION Spring 2009
CS201- Introduction to Programming
Q1: There are mainly -------------------- types of software
► Two
► Three
► Four
► Five
Q2: When x = 7; then the expression x%= 2; will calculate the value of x as,
► 1
► 3
► 7
► 2
Q3: A pointer variable can be,
► Decremented only
► Incremented only
► Multiplied only
► Both 1 and 2
Q4: set precision is a parameter less manipulator.
► True
► False
Q5: We can change a Unary operator to Binary operator through operator overloading.
► False
► True
Q6: delete operator is used to return memory to free store which is allocated by the new operator
► True
► False
àQ7: When we do dynamic memory allocation in the constructor of a class, then it is necessary to provide a destructor.
► True
► False à delete(p);
Q8: What is the functionality of the following statement?
String str[5] = {String(“Programming”), String(“CS201”)};
· Default constructor will call for all objects of array
· Parameterized constructor will call for all objects of array
· Parameterized constructor will call for first 2 objects and default constructor for remaining objects
· Default constructor will call for first 3 objects and Parameterized constructor for remaining objects
Q9: What is the sequence of event(s) when allocating memory using new operator?
► Only block of memory is allocated for objects
► Only constructor is called for objects
► Memory is allocated first before calling constructor
► Constructor is called first before allocating memory
Q10: Deleting an array of objects without specifying [] brackets may lead to memory leak
► True
► False
Q11: Which of the following data type will be assumed if no data type is specified with constant?
► short
► float
► int
► double
Q12: There is an array of characters having name ‘course’ that has to be initialized by string ‘programming’ which of the following is the correct way to do this,
1. i. course[] = {‘p’, ’r’, ’o’, ’g’, ’r’, ’a’, ’m’, ’m’, ’i’, ’n’, ’g’};
ii.course[] = ‘programming’ ;
1. iii. course[12] = “programming” ;
2. iv. course = “programming” ;
Choose the correct options.
► (i) and (ii) only
► (i) and (iv) only
► (i) and (iii) only
► (ii) and (iii) only
Q13: What will be the correct syntax of the following statement?
ptr is a constant pointer to integer.
► const int *ptr ;
► const *int ptr ;
► int const *ptr ;
► int *const ptr ;
Q14: Overloaded member operator function is always called by _______
► Class
► Object
► Compiler
► Primitive data type
Q15: Loader loads the executable code from hard disk to main memory.
► True
► False
Q16: Which of the following is the correct C++ syntax to allocate space dynamically for an array of 10 int?
► new int(10) ;
► new int[10] ;
► int new(10) ;
► int new[10];
Q17: The prototype of friend functions must be written ____ the class and its definition must be written ____
à ► inside, inside the class
► inside, outside the class
► outside, inside the class
► outside, outside the class
Q18: Like member functions, ______ can also access the private data members of a class.
► Non-member functions
► Friend functions
► Any function outside class
► None of the given options
Q19: To perform manipulation with input/output, we have to include _____ header file.
► iostream.h
► stdlib.h
► iomanip.h
► fstream.h
Q20: The endl and flush are _______
► Functions
► Operators
► Manipulators
► Objects
Q21: If we want to use stream insertion and extraction operators with _______ then we have to overload these operators.
► int, float, double
► objects of class
► int, float, object
► int, char, float
Q22: The static data members of a class can be accessed by ________
► only class
► only objects
► both class and objects
► none of given options
Q23: Classes defined inside other classes are called ________ classes
► looped
► nested
► overloaded
► none of the given options.
Q24: Which value is returned by the destructor of a class?
► A pointer to the class.
► An object of the class.
► A status code determining whether the class was destructed correctly
► Destructors do not return a value.
Q25: Consider the following code segment
class M {
friend int operator!(const M &);
...
};
!s // code of line implies that operator!(s)
...
Let assume if s is an object of the class then function is implemented as ___________
► Member function
à ► Non-member function
► Binary operator function
► None of the given options
Q26: When the compiler overloads the assignment (=) operator by default then __________
► compiler does member wise assignment.
► compiler does not allow default overload of assignment (=) operator
► member of the class are not assigned properly
► None of the given options
Q27: If text is a pointer of class String then what is meant by the following statement?
text = new String [5];
► Creates an array of 5 string objects statically
► Creates an array of 5 string objects dynamically
► Creates an array of pointers to string
► Creates a string Object
Q28: Static variable which is defined in a function is initialized __________.
► Only once during its life time
► Every time the function call
► Compile time of the program
► None of the above
Q29: The appropriate data type to store the number of rows and colums of the matrix is____________.
► float
► int
► char
► none of the given options.
Q30: Copy constructor becomes necessary while dealing with _______allocation in the class.
► Dynamic memory
► Static memory
► Both Dynamic and Static memory
► None of the given options
FINALTERM EXAMINATION (Fall 2008)
Q1: There are mainly -------------------- types of software
► Two
► Three
► Four
► Five
Q2: seekg() and write() are functionally _________________ .
à ► Different
► Identical
► Two names of same function
► None of the above
Q3: When a pointer is incremented, it actually jumps the number of memory addresses
► According to data type
► 1 byte exactly
► 1 bit exactly
► A pointer variable can not be incremented
Q4: setw is a parameterized manipulator.
► True
► False
Q5: eof( ), bad( ), good( ), clear( ) all are manipulators.
► True à Stream Manipulators
► False
Q6: In functions that return reference, use __________variables.
► Local
► Global
► Global or static
► None of the given option
Q7: The declarator of Plus (+) member operator function is
► Class-Name operator + (Class-Name rhs)
► operator Class-Name + ( )
► operator Class-Name + ( rhs)
► Class-Name operator + ( )
Q8: The compiler does not provide a copy constructor if we do not provide it.
► True
► False
Q9: What is the functionality of the following syntax to delete an array of 5 objects named arr allocated using new operator?
delete arr ;
► Deletes all the objects of array
► Deletes one object of array
► Do not delete any object
► Results into syntax error
Q10: What is the sequence of event(s) when allocating memory using new operator?
► Only block of memory is allocated for objects
► Only constructor is called for objects
► Memory is allocated first before calling constructor
► Constructor is called first before allocating memory
Q11: What is the sequence of event(s) when deallocating memory using delete operator?
► Only block of memory is deallocated for objects
► Only destructor is called for objects
► Memory is deallocated first before calling destructor
► Destructor is called first before deallocating memory
Q12: new and delete operators cannot be overloaded as member functions.
► True
► False
Q13: The operator function of and >> operators are always the member function of a class.
► True
► False
Q14: A template function must have at least ---------- generic data type
► Zero
► One
► Two
► Three
Q15: If we do not mention any return_value_type with a function, it will return an _____ value.
► int
► void
► double
► float
Q16: Suppose a program contains an array declared as int arr[100]; what will be the size of array?
► 0
► 99
► 100
► 101
Q17: The name of an array represents address of first location of array element.
► True
► False
Q18: Reusing the variables in program helps to save the memory
► True
► False
Q19: Which of the following option is true about new operator to dynamically allocate memory to an object?
► The new operator determines the size of an object
► Allocates memory to object and returns pointer of valid type
► Creates an object and calls the constructor to initialize the object
► All of the given options
Q20: new and delete are _____ whereas malloc and free are _____.
► Functions, operators
► Classes, operators
► Operators, functions
► Operators, classes
Q21: Like member functions, ______ can also access the private data members of a class.
► Non-member functions
► Friend functions
► Any function outside class
► None of the given options
Q22: Which of the following statement is best regarding declaration of friend function?
► Friend function must be declared after public keyword.
► Friend function must be declared after private keyword.
► Friend function must be declared at the top within class definition.
► It can be declared anywhere in class as these are not affected by the public and private keywords.
Q23: The operator function overloaded for an Assignment operator (=) must be
► Non-member function of class
► Member function of class
► Friend function of class
► None of the given options
Q24: For non-member operator function, object on left side of the operator may be
► Object of operator class
► Object of different class
► Built-in data type
► All of the given options
Q25: The operator function will be implemented as _____, if obj1 drive the - operator whereas obj2 is passed as arguments to - operator in the statement given below.
obj3 = obj1 - obj2;
► Member function
► Non-member function
► Friend function
► None of the given options
Q26: Which one of the following is the declaration of overloaded pre-increment operator implemented as member function?
► Class-name operator +() ;
► Class-name operator +(int) ;
► Class-name operator ++() ;
► Class-name operator ++(int) ;
Q27: The static data members of a class are initialized _______
► at file scope
► within class definition
► within member function
► within main function
Q28: Class is a user defined___________.
► data type
► memory referee
► value
► none of the given options.
Q29: We can also define a user-defines manipulators.
► True
► False
Q30: Automatic variable are created on ________.
► Heap
► Free store
► static storage
► stack
In C/C++ the string constant is enclosed
· ? In curly braces
· ? In small braces
· ? In single quotes
· ? In double quotes
The size of int data type is
· ? 1 bytes
· ? 2 bytes
· ? 3 bytes
· ? 4 bytes
In Flow chart process is represented by
· ? Rectangle
· ? Arrow symbol
· ? Oval
· ? Circle
If the break statement is missed in switch statement then,
· ? The compiler will give error
· ? This may cause a logical error
· ? No effect on program
· ? Program stops its execution
When we are using const keyword with a variable x then initializing it at the time of declaration is,
· ? Must
· ? Optional
· ? Not necessary
· ? A syntax error
Which of the following is the correct way to assign an integer value 5 to element of a matrix say ‘m’ at second row and third column?
· ? m[2][3] = 5 ; // [row][col]
· ? m[3][2] = 5 ;
· ? m[1][2] = 5 ;
· ? m[2][3] = ‘5’;
How many total elements must be in two-dimensional array of 3 rows and 2 columns?
· ? 4
· ? 5
· ? 6
· ? 7
Which of the following is the correct statement for the following declaration?
const int *ptr.
· ?ptr is a constant pointer
· ?ptr is constant integer pointer
· ?ptr is a constant pointer to int
· ?ptr is a pointer to const int
Consider the following code segment. What will be the output of this code segment?
// 3 5
· int arr[6] = {2, 3, 7, 4, 5, 6} ;
· int *ptr1 =&arr[1] ;
· int *ptr2 = &arr[4] ;
· cout
What will be the correct syntax to assign an array named arr of 5 elements to a pointer ptr?
· ?*ptr = arr ;
· ?ptr = arr ;
· ?*ptr = arr[5] ;
· ?ptr = arr[5] ;
C is a/an ______ language
· ?low level
· ?object based
· ?object oriented
· ?function oriented
The variables having a name, type and size are just like empty boxes.
· ?False
· ?True
What's wrong with this for loop?
for (int k = 2, k
FINALTERM EXAMINATION fall 2008
If Num is an integer variable then Num++ means,
· Add 1 two times with Num
· Add 1 with Num
· Add 2 with Num
· Subtract 2 from Num
If the return type of a function is void then it means that it will,
· Return any type of data
· Return some specific type of data
· Return no data
· Return just character data
Which of the following is a valid class declaration?
· class A { int x; };
· class B { }
· public class A { }
· object A { int x; };
When we use manipulators in our program then which header file should be included?
· iostream.h
· stdlib.h
· stdio.h
· iomanip.h
We can also create an array of user define data type.
· True
· False
The normal source of cin object is,
· File
· Disk
· Keyboard
· RAM
A stream is an ordered sequence of bytes.
· True
· False
We can delete an array of objects without specifying [] brackets if a class is not doing dynamic memory allocation internally.
· True
· False
The second parameter of operator functions for and >> are objects of the class for which we are overloading these operators.
· True
· False
Which looping process checks the test condition at the end of the loop?
· for
· while
· do while
· no looping process checks the test condition at the end
In a group of nested loops, which loop is executed the most number of times?
· the outermost loop
· the innermost loop
· all loops are executed the same number of times
· cannot be determined without knowing the size of the loops
Template class can not have static variables.
· True
· àFalse
Consider the following statements to initialize a two-dimensional array.
i. int arr[2][3] = {4, 8, 9, 2, 1, 6} ;
ii. int arr[3][2] = {4, 8, 9, 2, 1, 6} ;
iii. int arr[][2] = {{4,8},{9, 2},{1, 6}} ;
Which of the following option(s) are correct to initialize a two-dimensional array with 3 rows and 2 columns?
· (ii) only
· (iii) only
· (ii) and (iii)
· and (iii)
There is a pointer variable named ptr of type int then address of which type of variable the ptr will store in it?
· variable of type char
· variable of type short
· variable of type int
· variable of type double
Let suppose
Union intorDouble{
Int ival;
Double charvar;
};
main(){
intorDouble VAZ;
int size ;
size = sizeof(VAZ);
}
What will be the value of variable "size", if int occupies 4 bytes and double occupies 8 bytes?
· 2
· 4
· 8
· 12
new and delete are _____ whereas malloc and free are _____.
· Functions, operators
· Classes, operators
· Operators, functions
· Operators, classes
The member functions of a class occupy _____ region in memory for ____ object(s) of class.
· separate, each
· common, all
· different, each
· different, all
Friend functions are _____ of a class.
· Member functions
· Public member functions
· Private member functions
· Non-member functions
Which of the following is true while overloading operators?
· Precedence of an operator can be changed
· The parity (number of operands) can be changed
· No new operators can be created
· Associativity of an operator can be changed
Which of the following option will be true to overload the -= operator?
· only - operator needs to be overloaded
· Minus (-) and = operators need to be overloaded
· the -= operator need to be overloaded explicitly
· the - and = operators need to be overloaded implicitly
The input/output streams; cin and cout are ____
· Operators
· Functions
· Objects
· Structures
dec, hex, oct are all __________
· Member functions
· Objects of input/output streams
· Parameterized manipulators
· Non-parameterized manipulators
What will be the output of the following statement?
cout setbase(16) 52 ;
· 74
· 52
· 34
· 64
The first parameter of overloaded stream insertion operator is _________ where second parameter is _______
· input stream, object of class
· object of class, output stream
· output stream, object of class
· object of class, input stream
We can also do conditional compilation with preprocessor directives.
· True
· False
With user-defined data type variables (Objects), self assignment can produce __________.
· Syntax error
· Logical error
· Link error
· Non of the given options
The return type of the operator function for >> operator is ________.
· class for which we overload this operator
· reference of ostream class (ostream&)
· reference of istream class (istream&)
· void
When an object of a class is defined inside an other class then,
· Constructor of enclosing class will be called first
· Constructor of inner object will be called first
· Constructor and Destructor will be called simultaneously
· None of the given options
Where we can include a header file in the program?
· any where
· in start
· at the end
· none of the given options.
FINALTERM EXAMINATION SPRING 2006 – S2
Q1: A function that calls itself is known as
►Iterative function
►Inline function
►Recursive function
►main ()
Q2: The function call to a default constructor
►looks like any function call, except there is no return value
►never takes any arguments
►creates but cannot initialize an object
►is made automatically when an object is created
Q3: Static member functions
►must be declared inside the class definition, but defined outside it
►must be declared private
►have multiple copies for the entire class
►can access only static data
Q4: The reserved words public and private comes under the category
►structures
►strings
►accessibility modifiers
►types of functions
FINALTERM EXAMINATION SPRING 2006 CS201
A for loop usually consist of __________ expressions.
►1
►3
►2
►4
A preprocessor directive is identified by _________ symbol
►#
►{
►(
►~
Which of the following operators can not be overloaded?
►new
►delete
►+=
►sizeof
Analyze the following code
class myclass
{
private:
float x,y;
public:
void myclass(float a, float b)
{
x=a;
y=b;
}
void diplay()
{
Coutendlxendly;
}
};
What is wrong with the above code?
►The member functions should be private
►constructor must not have a return type
►The constructor should have no body
►There is no error in the given code
Final Term Examination - February 2005
A function declaration has the same relationship to a function definition that
· a class definition has to an object definition
· an object declaration has to an object
· a variable has to a variable declaration
· a variable declaration has to the variable itself
· they have no relationship
When we write a class template the first line must be:
· template < class class_type>
· template < class data_type>
· template < class T >, Here T can be replaced with any name but it is preferable.
· class class-name()
· class template
A friend function of a class has access
· To all data member and functions of the class
· Only to other friend functions of the class
· Only to private data of the class
· Only to public data of the class
· To private data declared in main()
The new operator
· is used to declare objects or variables
· can not create and initialize an object
· names an object or variable
· returns an address to an object or variable
· can allocate an appropriate amount of memory for an object or variable
If we open a file stream myfile for reading, what will give us the current position of the file pointer?
· tellg()
· tellp()
· seekg()
· seekp()
· fstream.h
There is a class Student, Which one of the following is a valid destructor for this class.
· Student();
· Student(int);
· ~ Student();
· int~ Student();
· ~ Student(int);
Final Term Examination – Spring 2005
A friend function
· must be having a prototype with no arguments
· must be invoked by an object of the class that declares it a friend
· must be invoked by the class that declares it a friend
· can access the private data of the class that declares it a friend
· cannot access the data members of a class
Which one of the following operators is a unary operator?
· OR ( || )
· AND ( &&)
· Complement operator ( ~ )
· XOR ( ^ )
· Insertion operator (>>)
If the statements
int j,k;
j = 123;
k= 234;
int* q, * r;
cout*q' '*r;
are executed, what will be displayed?
· The values of j and k
· The addresses of q and r
· The addresses of j and k
· 132 , 234
· garbage values
A copy constructor
· copies the data of any two constructors in that class
· takes no arguments
· takes an arbitrary number of arguments
· creates a new object that later may be assigned the data of an existing object
· creates an object initialized with the same data as an existing object
FINALTERM EXAMINATION SPRING 2006
To access the 8th element of an int array named myArray of 15 elements, you would write
· int[8]
· int[7]
· myArray[8]
· myArray[7]
A copy constructor is always called when
· an object is initialized with another object data of the same class when it’s created
· an object is initialized with another object of any class when it’s created
· an object is initialized with a variable of a basic type when it’s created
· an object is not initialized when it’s created
Consider the function below:
template
T abc (T x)
{
return (-x);
}
We call this function as
cout abc(-9.6) endl;
The answer will be:
· 9.6
· -9.6
· 9
· -9
Constructor is itself a __________ of C++ and ___________.
· class , can be overloaded
· function , cannot be overloaded
· function, can be overloaded
· object, can not be initialized
The stream insertion and extraction operators are not already overloaded for ______
· Built-in data types
· User-defined data types ß
· Both built-in and user-defined types
· None of the given options
Look at the statement given below int & a; and tell what will happen ?
· Compiler will compile successfully
· Compiler will show a warning to you
· Null value will be assigned to a
· Compiler will generate an error: ‘a' declared as reference but not initialized
< , <= , > , >= are called __________ operators.
· Arithmetic
· Logical
· Relational
· Conational
C++ provides member functions, which control the formatting to be performed during stream I/O operations.
· True
· False ß
The function will return a reference to the global variable that exists throughout the program and thus there will be no danger of _______________.
· garbage collection
· dangling reference.
· wastage of memory
· system crash
If an array has 50 elements, what is allowable range of subscripts?
· 0 – 49 ß
· 1 – 49
· 0 – 50
· 1 – 50
char name [] = “Hello World” ; In the above statement, a memory of _________ characters will be allocated
· 13
· 11
· 12
· 10
The destructor is used to ______________.
· allocate memory
· deallocate memory
· create objects
· allocate static memory
The first parameter of operator function for operator _________________.
· Must be passed by value
· Must be passed by reference
· Can be passed by value or reference
· Must be object of class
Popular Posts
-
[B]Board of Intermediate and Secondary Education, Rawalpindi Board (BISE Rawalpindi) Matric final result 4 August 2011 . All students stay ...
-
Objective: To learn the basics of computing. Instructions: Please read the following instructions carefully before s...
-
Board of Intermediate and Secondary Education, Faisalabad Board (BISE Faisalabad) Matric final result 2 August 2011 . All students stay at...
-
Rs. 15,000 prize bond draw list and results 2nd January,2012 check online draw results list of draw result list of Rs. 15,000prize bonds J...
-
Answers Question No.1 (Marks = 10) a) How many combinations of bits are exist when we make a truth table of 9 inputs? 2n are the total c...
-
Lahore, 9th Class Result 2011 of Board of Intermediate and Secondary Education DG khan (BISE DG khan Board) will be announced on August 22...
-
Assignment: # 01 (Spring-2011) Mth101 (Calculus & Analytical Geometry) Lecture: 01 – 09 Total Marks = 30 ...
-
Assignment No.1 Marks:20 “Administrative View of Management” National Community College (NCC) was opened in 1980 in Karachi to provide quali...
-
[B]check online B.A result punjab university 12 August 2011 [/B] for result click here B.A result punjab university 12 August 2011
-
n this competitive world, companies face challenges like technological advancements, volatile market behaviors and ever changing customers’ ...
Blog Archive
-
▼
2012
(202)
-
►
05/27 - 06/03
(26)
- Theory of Automata CS402 VU Assignment No. 4 Sprin...
- software engineering CS504 Assignment No. 3 Spring...
- job ads Jang, Nawaiwaqt, Thenews, Nation and Dawn ...
- Data Warehousing CS614 Assignment No. 03 Semester ...
- STA301 Statistics and Probability GDB spring May ...
- Software Engineering-II CS605 VU Current Assignme...
- System Programming CS609 Assignment No. 03 Semeste...
- Data Communication CS601 Assignment No. 3 Semester...
- New Drama Serial MANJALI By Geo TV promo June 2012...
- Khushi By ARY Digital coming soon June 2012
- English Comprehension ENG101 Assignment No.3 Sprin...
- latest Samsung I9300 Galaxy S III price and specif...
- Download Punjab University(PU) Lahore MA/Msc Part ...
- Download free Urdu Rida Digest June 2012 and read ...
- Download free Urdu Aanchal Digest June 2012 and r...
- Download free Urdu Shuaa Digest June 2012 and read...
- Download free Urdu Hina Digest June 2012 and read ...
- Download free Urdu Pakeezah Digest June 2012 and r...
- Download free Urdu Khawateen Digest June 2012 and ...
- Download free Urdu Jasoosi Digest June 2012 and re...
- Download free Urdu Kiran Digest June 2012 and read...
- Dell Inspiron N5110 Specification/Price in Pakista...
- Computer Networks CS610 Assignment No. 3 Spring Ma...
- prize bound draw list Rs 40000 on 1st June 2012 Fr...
- Thailand lottery result check online list 1st June...
- KOHAT 3 killed, 6 injured in Parachinar Sectarian ...
- ► 05/06 - 05/13 (2)
-
►
04/22 - 04/29
(21)
- New Drama serial Yahan Pyar Nahi Hai By Hum Tv wa...
- Zard Mausam By Hum Tv Promo and Episode 1 April 2...
- EMAAN By Express channel watch promo April 2012
- ENG001 Elementary English assignment no 2 fall Sp...
- CS609 Assignment no 2 System Programming April 20...
- CS607 Artificial Intelligence assignment no 2 fal...
- MGT602 - Entrepreneurship GDB no 1 April 2012 Wedn...
- Watch Video & Pictures of VU Celebrations for 10 y...
- Maseeha By Hum Tv Promo watch YouTube promo April ...
- Organizational Behaviour MGT502 Assignment No. 01 ...
- Business Technical English Writing ENG201 Assignme...
- Data Warehousing CS614 Assignment No. 02 Semester ...
- bomb blast Lahore Railway Station in Lahore 24 Ap...
- Mgt111 VU Current Assignment No. 1 Spring 2012
- CS605 Assignment No 2 Aprilng fall April 2012
- CS401 Computer Architecture and Assembly Language ...
- CS201 Introduction to Programming assignment no 2...
- ACC501 Assignment No. 1 Spring April 2012 virtual ...
- Eco403 Current GDB No. 1 Spring April 2012
- Human Computer Interaction CS408 Assignment No 2 S...
- CS604 Assignment 02 Solution spring April 2012 due...
- ► 04/15 - 04/22 (6)
- ► 04/08 - 04/15 (26)
- ► 04/01 - 04/08 (9)
- ► 03/25 - 04/01 (3)
- ► 03/18 - 03/25 (4)
- ► 03/11 - 03/18 (1)
- ► 03/04 - 03/11 (1)
- ► 02/26 - 03/04 (2)
- ► 02/19 - 02/26 (1)
- ► 02/12 - 02/19 (5)
- ► 02/05 - 02/12 (3)
-
▼
01/29 - 02/05
(11)
- CS601 Data Communication final term current paper ...
- CS507 INFORMATION SYSTEM final term current pape 2...
- CS504 Software Engineering final term paper solve...
- CS501 Advance Computer Architecture final term cur...
- CS201- Introduction to Programming FINALTERM curre...
- cs201 final term current paper solve virtual unive...
- cs507 final term vu paper of fall 2011 semester on...
- current paper of Mgmt630 today 3 feb, 2012
- Draw Result of Prize Bond 7500 Rs Dated 1st Februa...
- check Prize Bond Schedule of Year 2012
- cs101 introduction to computing final term mega so...
- ► 01/22 - 01/29 (16)
- ► 01/15 - 01/22 (17)
- ► 01/08 - 01/15 (19)
- ► 01/01 - 01/08 (28)
-
►
05/27 - 06/03
(26)
-
►
2011
(939)
- ► 12/25 - 01/01 (6)
- ► 12/18 - 12/25 (42)
- ► 11/27 - 12/04 (1)
- ► 11/20 - 11/27 (1)
- ► 11/13 - 11/20 (25)
- ► 11/06 - 11/13 (12)
- ► 10/30 - 11/06 (8)
- ► 10/23 - 10/30 (37)
- ► 10/16 - 10/23 (29)
- ► 10/09 - 10/16 (18)
- ► 10/02 - 10/09 (14)
- ► 09/25 - 10/02 (4)
- ► 09/18 - 09/25 (13)
- ► 09/11 - 09/18 (11)
- ► 09/04 - 09/11 (14)
- ► 08/28 - 09/04 (4)
- ► 08/21 - 08/28 (22)
- ► 08/14 - 08/21 (48)
- ► 08/07 - 08/14 (3)
- ► 07/31 - 08/07 (11)
- ► 07/24 - 07/31 (11)
- ► 07/17 - 07/24 (2)
- ► 07/10 - 07/17 (64)
- ► 07/03 - 07/10 (44)
- ► 06/26 - 07/03 (21)
- ► 06/19 - 06/26 (31)
- ► 06/12 - 06/19 (19)
- ► 06/05 - 06/12 (33)
- ► 05/29 - 06/05 (39)
- ► 05/22 - 05/29 (29)
- ► 05/15 - 05/22 (46)
- ► 05/08 - 05/15 (38)
- ► 05/01 - 05/08 (19)
- ► 04/24 - 05/01 (21)
- ► 04/17 - 04/24 (37)
- ► 04/10 - 04/17 (56)
- ► 04/03 - 04/10 (14)
- ► 03/20 - 03/27 (2)
- ► 03/13 - 03/20 (3)
- ► 02/27 - 03/06 (1)
- ► 02/20 - 02/27 (1)
- ► 02/13 - 02/20 (3)
- ► 01/30 - 02/06 (6)
- ► 01/23 - 01/30 (23)
- ► 01/16 - 01/23 (16)
- ► 01/09 - 01/16 (31)
- ► 01/02 - 01/09 (6)
-
►
2010
(433)
- ► 12/26 - 01/02 (21)
- ► 12/19 - 12/26 (1)
- ► 12/05 - 12/12 (1)
- ► 11/28 - 12/05 (1)
- ► 11/21 - 11/28 (5)
- ► 11/14 - 11/21 (3)
- ► 11/07 - 11/14 (22)
- ► 10/31 - 11/07 (20)
- ► 10/24 - 10/31 (25)
- ► 10/17 - 10/24 (10)
- ► 10/03 - 10/10 (1)
- ► 08/22 - 08/29 (1)
- ► 08/15 - 08/22 (5)
- ► 08/08 - 08/15 (17)
- ► 08/01 - 08/08 (19)
- ► 07/25 - 08/01 (4)
- ► 07/18 - 07/25 (24)
- ► 07/11 - 07/18 (2)
- ► 07/04 - 07/11 (15)
- ► 06/27 - 07/04 (20)
- ► 06/20 - 06/27 (45)
- ► 06/13 - 06/20 (4)
- ► 06/06 - 06/13 (2)
- ► 05/30 - 06/06 (22)
- ► 05/23 - 05/30 (25)
- ► 05/16 - 05/23 (13)
- ► 05/09 - 05/16 (36)
- ► 05/02 - 05/09 (67)
- ► 02/07 - 02/14 (1)
- ► 01/24 - 01/31 (1)
-
►
2009
(1)
- ► 12/20 - 12/27 (1)
Labels
- Aanchal Digest (1)
- ACC501 (3)
- Assignments Spring 2010 (219)
- c201 (1)
- Cricket (1)
- cs (1)
- CS 001 (2)
- cs101 (12)
- cs201 (7)
- cs301 (2)
- cs302 (5)
- cs304 (5)
- cs401 (9)
- cs402 (6)
- cs403 (8)
- cs408 (2)
- cs410 (2)
- cs501 (2)
- cs502 (2)
- cs504 (7)
- cs506 (5)
- cs507 (3)
- cs601 (7)
- cs604 (6)
- cs605 (1)
- cs610 (3)
- cs614 (7)
- cs619 (1)
- Domains and web host (1)
- ECO401 (5)
- ECO403 (1)
- ECO404 (1)
- eng101 (4)
- Eng201 (6)
- eng301 (4)
- fashion (2)
- fin621 (3)
- fin622 (2)
- fin630 (4)
- Hina Digest (1)
- hrm624 (3)
- http://www.blogger.com/img/blank.gif (2)
- ISL201 (4)
- IT430 E-Commerce (5)
- Jasoosi Digest (1)
- Job Ads (4)
- Khawateen Digest (1)
- Kiran Digest (1)
- mcm301 (1)
- mgm (1)
- Mgmt611 (1)
- MGMT623 (1)
- mgmt627 (1)
- mgt101 (8)
- mgt111 (3)
- mgt201 (2)
- mgt211 (7)
- mgt301 (7)
- mgt401 (1)
- mgt402 (5)
- Mgt411 (6)
- mgt501 (4)
- mgt502 (3)
- mgt503 (7)
- Mgt601 (1)
- Mgt602 (1)
- mgt603 (4)
- MGT604 (1)
- mgt610 (1)
- Mgt611 (1)
- mgt613 (4)
- Mgt625 (1)
- Midterm Spring 2010 (48)
- MKT (2)
- Mkt610 (1)
- mkt624 (2)
- mkt630 (1)
- MTH001 (1)
- mth101 (6)
- MTH202 (4)
- mth302 (2)
- Mth401 (1)
- MTH501 (1)
- mth603 (2)
- News (15)
- Pakeezah Digest (1)
- papers (2)
- phy101 (4)
- phy301 (2)
- prize bonds (2)
- Punjab University (1)
- results (49)
- Rida Digest (1)
- Samsung Galaxy (1)
- Shuaa Digest (1)
- sta301 (8)
- sta630 (6)
- Tech (4)
- v (1)
- Virtual University Assignments (4)
- vu projects (4)
Blog Archive
-
▼
2012
(202)
-
►
05/27 - 06/03
(26)
- Theory of Automata CS402 VU Assignment No. 4 Sprin...
- software engineering CS504 Assignment No. 3 Spring...
- job ads Jang, Nawaiwaqt, Thenews, Nation and Dawn ...
- Data Warehousing CS614 Assignment No. 03 Semester ...
- STA301 Statistics and Probability GDB spring May ...
- Software Engineering-II CS605 VU Current Assignme...
- System Programming CS609 Assignment No. 03 Semeste...
- Data Communication CS601 Assignment No. 3 Semester...
- New Drama Serial MANJALI By Geo TV promo June 2012...
- Khushi By ARY Digital coming soon June 2012
- English Comprehension ENG101 Assignment No.3 Sprin...
- latest Samsung I9300 Galaxy S III price and specif...
- Download Punjab University(PU) Lahore MA/Msc Part ...
- Download free Urdu Rida Digest June 2012 and read ...
- Download free Urdu Aanchal Digest June 2012 and r...
- Download free Urdu Shuaa Digest June 2012 and read...
- Download free Urdu Hina Digest June 2012 and read ...
- Download free Urdu Pakeezah Digest June 2012 and r...
- Download free Urdu Khawateen Digest June 2012 and ...
- Download free Urdu Jasoosi Digest June 2012 and re...
- Download free Urdu Kiran Digest June 2012 and read...
- Dell Inspiron N5110 Specification/Price in Pakista...
- Computer Networks CS610 Assignment No. 3 Spring Ma...
- prize bound draw list Rs 40000 on 1st June 2012 Fr...
- Thailand lottery result check online list 1st June...
- KOHAT 3 killed, 6 injured in Parachinar Sectarian ...
- ► 05/06 - 05/13 (2)
-
►
04/22 - 04/29
(21)
- New Drama serial Yahan Pyar Nahi Hai By Hum Tv wa...
- Zard Mausam By Hum Tv Promo and Episode 1 April 2...
- EMAAN By Express channel watch promo April 2012
- ENG001 Elementary English assignment no 2 fall Sp...
- CS609 Assignment no 2 System Programming April 20...
- CS607 Artificial Intelligence assignment no 2 fal...
- MGT602 - Entrepreneurship GDB no 1 April 2012 Wedn...
- Watch Video & Pictures of VU Celebrations for 10 y...
- Maseeha By Hum Tv Promo watch YouTube promo April ...
- Organizational Behaviour MGT502 Assignment No. 01 ...
- Business Technical English Writing ENG201 Assignme...
- Data Warehousing CS614 Assignment No. 02 Semester ...
- bomb blast Lahore Railway Station in Lahore 24 Ap...
- Mgt111 VU Current Assignment No. 1 Spring 2012
- CS605 Assignment No 2 Aprilng fall April 2012
- CS401 Computer Architecture and Assembly Language ...
- CS201 Introduction to Programming assignment no 2...
- ACC501 Assignment No. 1 Spring April 2012 virtual ...
- Eco403 Current GDB No. 1 Spring April 2012
- Human Computer Interaction CS408 Assignment No 2 S...
- CS604 Assignment 02 Solution spring April 2012 due...
- ► 04/15 - 04/22 (6)
- ► 04/08 - 04/15 (26)
- ► 04/01 - 04/08 (9)
- ► 03/25 - 04/01 (3)
- ► 03/18 - 03/25 (4)
- ► 03/11 - 03/18 (1)
- ► 03/04 - 03/11 (1)
- ► 02/26 - 03/04 (2)
- ► 02/19 - 02/26 (1)
- ► 02/12 - 02/19 (5)
- ► 02/05 - 02/12 (3)
-
▼
01/29 - 02/05
(11)
- CS601 Data Communication final term current paper ...
- CS507 INFORMATION SYSTEM final term current pape 2...
- CS504 Software Engineering final term paper solve...
- CS501 Advance Computer Architecture final term cur...
- CS201- Introduction to Programming FINALTERM curre...
- cs201 final term current paper solve virtual unive...
- cs507 final term vu paper of fall 2011 semester on...
- current paper of Mgmt630 today 3 feb, 2012
- Draw Result of Prize Bond 7500 Rs Dated 1st Februa...
- check Prize Bond Schedule of Year 2012
- cs101 introduction to computing final term mega so...
- ► 01/22 - 01/29 (16)
- ► 01/15 - 01/22 (17)
- ► 01/08 - 01/15 (19)
- ► 01/01 - 01/08 (28)
-
►
05/27 - 06/03
(26)
-
►
2011
(939)
- ► 12/25 - 01/01 (6)
- ► 12/18 - 12/25 (42)
- ► 11/27 - 12/04 (1)
- ► 11/20 - 11/27 (1)
- ► 11/13 - 11/20 (25)
- ► 11/06 - 11/13 (12)
- ► 10/30 - 11/06 (8)
- ► 10/23 - 10/30 (37)
- ► 10/16 - 10/23 (29)
- ► 10/09 - 10/16 (18)
- ► 10/02 - 10/09 (14)
- ► 09/25 - 10/02 (4)
- ► 09/18 - 09/25 (13)
- ► 09/11 - 09/18 (11)
- ► 09/04 - 09/11 (14)
- ► 08/28 - 09/04 (4)
- ► 08/21 - 08/28 (22)
- ► 08/14 - 08/21 (48)
- ► 08/07 - 08/14 (3)
- ► 07/31 - 08/07 (11)
- ► 07/24 - 07/31 (11)
- ► 07/17 - 07/24 (2)
- ► 07/10 - 07/17 (64)
- ► 07/03 - 07/10 (44)
- ► 06/26 - 07/03 (21)
- ► 06/19 - 06/26 (31)
- ► 06/12 - 06/19 (19)
- ► 06/05 - 06/12 (33)
- ► 05/29 - 06/05 (39)
- ► 05/22 - 05/29 (29)
- ► 05/15 - 05/22 (46)
- ► 05/08 - 05/15 (38)
- ► 05/01 - 05/08 (19)
- ► 04/24 - 05/01 (21)
- ► 04/17 - 04/24 (37)
- ► 04/10 - 04/17 (56)
- ► 04/03 - 04/10 (14)
- ► 03/20 - 03/27 (2)
- ► 03/13 - 03/20 (3)
- ► 02/27 - 03/06 (1)
- ► 02/20 - 02/27 (1)
- ► 02/13 - 02/20 (3)
- ► 01/30 - 02/06 (6)
- ► 01/23 - 01/30 (23)
- ► 01/16 - 01/23 (16)
- ► 01/09 - 01/16 (31)
- ► 01/02 - 01/09 (6)
-
►
2010
(433)
- ► 12/26 - 01/02 (21)
- ► 12/19 - 12/26 (1)
- ► 12/05 - 12/12 (1)
- ► 11/28 - 12/05 (1)
- ► 11/21 - 11/28 (5)
- ► 11/14 - 11/21 (3)
- ► 11/07 - 11/14 (22)
- ► 10/31 - 11/07 (20)
- ► 10/24 - 10/31 (25)
- ► 10/17 - 10/24 (10)
- ► 10/03 - 10/10 (1)
- ► 08/22 - 08/29 (1)
- ► 08/15 - 08/22 (5)
- ► 08/08 - 08/15 (17)
- ► 08/01 - 08/08 (19)
- ► 07/25 - 08/01 (4)
- ► 07/18 - 07/25 (24)
- ► 07/11 - 07/18 (2)
- ► 07/04 - 07/11 (15)
- ► 06/27 - 07/04 (20)
- ► 06/20 - 06/27 (45)
- ► 06/13 - 06/20 (4)
- ► 06/06 - 06/13 (2)
- ► 05/30 - 06/06 (22)
- ► 05/23 - 05/30 (25)
- ► 05/16 - 05/23 (13)
- ► 05/09 - 05/16 (36)
- ► 05/02 - 05/09 (67)
- ► 02/07 - 02/14 (1)
- ► 01/24 - 01/31 (1)
-
►
2009
(1)
- ► 12/20 - 12/27 (1)
Labels
- Aanchal Digest (1)
- ACC501 (3)
- Assignments Spring 2010 (219)
- c201 (1)
- Cricket (1)
- cs (1)
- CS 001 (2)
- cs101 (12)
- cs201 (7)
- cs301 (2)
- cs302 (5)
- cs304 (5)
- cs401 (9)
- cs402 (6)
- cs403 (8)
- cs408 (2)
- cs410 (2)
- cs501 (2)
- cs502 (2)
- cs504 (7)
- cs506 (5)
- cs507 (3)
- cs601 (7)
- cs604 (6)
- cs605 (1)
- cs610 (3)
- cs614 (7)
- cs619 (1)
- Domains and web host (1)
- ECO401 (5)
- ECO403 (1)
- ECO404 (1)
- eng101 (4)
- Eng201 (6)
- eng301 (4)
- fashion (2)
- fin621 (3)
- fin622 (2)
- fin630 (4)
- Hina Digest (1)
- hrm624 (3)
- http://www.blogger.com/img/blank.gif (2)
- ISL201 (4)
- IT430 E-Commerce (5)
- Jasoosi Digest (1)
- Job Ads (4)
- Khawateen Digest (1)
- Kiran Digest (1)
- mcm301 (1)
- mgm (1)
- Mgmt611 (1)
- MGMT623 (1)
- mgmt627 (1)
- mgt101 (8)
- mgt111 (3)
- mgt201 (2)
- mgt211 (7)
- mgt301 (7)
- mgt401 (1)
- mgt402 (5)
- Mgt411 (6)
- mgt501 (4)
- mgt502 (3)
- mgt503 (7)
- Mgt601 (1)
- Mgt602 (1)
- mgt603 (4)
- MGT604 (1)
- mgt610 (1)
- Mgt611 (1)
- mgt613 (4)
- Mgt625 (1)
- Midterm Spring 2010 (48)
- MKT (2)
- Mkt610 (1)
- mkt624 (2)
- mkt630 (1)
- MTH001 (1)
- mth101 (6)
- MTH202 (4)
- mth302 (2)
- Mth401 (1)
- MTH501 (1)
- mth603 (2)
- News (15)
- Pakeezah Digest (1)
- papers (2)
- phy101 (4)
- phy301 (2)
- prize bonds (2)
- Punjab University (1)
- results (49)
- Rida Digest (1)
- Samsung Galaxy (1)
- Shuaa Digest (1)
- sta301 (8)
- sta630 (6)
- Tech (4)
- v (1)
- Virtual University Assignments (4)
- vu projects (4)