If you remember Qubee had introduced 50 % discount offer for 3 Months in September 2011.
Now, Once again Qubee offers 50 Percent discount on Monthly Line Rent for three months for all new customers. This is a limited time offer valid for sign-ups in December 2011 only.
This offer is only valid for residential post paid customers and this is a limited time offer which expires on 31th December 2011.
Offer:
All new sign-ups during the month of december are entitled to a 50% discount on their monthly line rent. (Note: Unless
PTCL, in collaborated with Telenor easypaisa, provides its customers with a smart bill payment solution.
PTCL has partnered with Easypaisa to make it possible for customers to pay their EVO internet bills through easypaisa.
Now PTCL's EVO customers can enjoy the convenience of recharging their pre-paid account and paying their Post-paid bills anytime through easy paisa bill payment facility.
How To Pay EVO Bill through Easypaisa ?
For Bill payment or account recharge follow these steps:
Step1: Visit your nearest Easy Paisa Shop
Step2: Provide Easy Paisa shopkeeper with your MDN # (mentioned on
CS408 VU Midterm current papers Fall 2011 (www.vusolutions.com)
Total Questions : 26 (20 MCQ and rest are below)
Q. Define Attention 2 marksQ. Being a researcher why you need of literature review?2 marks
Q. If People are free to let their imagination run free as long as the mental models they developed, then why do people use erroneous mental models? 3 marks
Q. How star lifecycle model is different from Water fall model and RAD model in repect to ordering activities. 3 marks
Q. Speech input and their limitation. 5 marksQ. You are a software engineer. What do you mean by lifecycle model and why they are used in software development?5 marks
CS302 VU Midterm current papers Fall 2011 (www.vusolutions.com)
Q:1 Draw function table of an half adder circut? (2)Q:2 What is diffrence b/w BCD to decimal decoder and binary 4-to-16 bit decoder? (2)Q;3 Explain major use of decoder circuts? (3)Q:4 PALS comes in different configurations and are identified by a unique number,identify parts of this number? (5)Q:5 One of the ABEL entry method uses logic equation.explain atleast two example? (5)
20 Mcqs
Question21:
Write the output of the following code segment: 2marks
intx[10]={0,1,2,3,4,5,6,7,8,9};
int*xptr;
xptr=&x[5];
cout<<*(xptr++)+1;
Question 22: 2marks
Write the syntax for closing a file "thisFile.txt" associated with the file handler my file.
Question 23: 3 marks
What is the output of following code snippet? 3marks
Int array[7], sum=0
For(int i=0; i<7;i++)
{
Array[i]=I;
Question 24: 5marks
If p and q are pointers to int and n is an int, which of the following are legal and which are the following are illegal statements? And why?
a.p+q
b.p-q
c.p+n
d.p-n
e.n-q
and 2 question more….
1.To Which category of the software "Compiler and Interpreter" belongs?
2.What is the result of the expression x = 2 + 3 * 4 – 4 / 2?
3-Which header file must be included while handling files?
4-What is meant by C++ statement: const int *ptr = &x;
5_what is the difference strcpy function and strncpy function?
6-write a program in which swaps two number without using third variable?
Hint:
bitwise operator use
mostly mcqs is related to identify error in the program
todays paper CS-201:
Q.1. write a C statement to store word "Pakistan" by using character array and by using character pointer seperately .
Q.2. write a program which takes input 5 integers from the user, stores them in an array and by using pointer airthmatic displays thier squares on the screen. i.e if the 5 integers are 1, 2, 3, 4, 5, the output should be 1, 4, 9, 16, 25 .
Q.3. write a C statement for a structure Inventory, having 3 elements namely stock, price, quantity.
Q.4. Trace out the mistakes in the given code (if any), correct it and give reason
main{ }
{
int x = 10;
const int *ptr = &x;
*ptr = 5;
cout << ptr;
}
Q.5. write a c statement for a structure of a triangle having 3 elements namely base, altitude and hypoteneus.