Current Papers
CS201 - CS201
01 Jun 2026 at 04:08 PM
?? CS201 PAPER (Based on Your Questions) Total Marks: 30 | Time: 60 Minutes --- SECTION A: MULTIPLE CHOICE QUESTIONS (14 Marks) Choose the correct option. Each question carries 1 mark. --- Q1. W…
?? CS201 PAPER (Based on Your Questions) Total Marks: 30 | Time: 60 Minutes --- SECTION A: MULTIPLE CHOICE QUESTIONS (14 Marks) Choose the correct option. Each question carries 1 mark. --- Q1. Which operator is used to get the address of a variable? ? A) * ? B) & ? C) && ? D) || Answer: B --- Q2. In a flowchart, which symbol represents a process? ? A) Oval ? B) Diamond ? C) Rectangle ? D) Parallelogram Answer: C --- Q3. The statement i++ is equivalent to: ? A) i = i + 1 ? B) i = i - 1 ? C) i = i * 2 ? D) i = i / 2 Answer: A --- Q4. Which header file is used for input and output stream in C++? ? A) fstream.h ? B) string.h ? C) iostream.h ? D) stdlib.h Answer: C --- Q5. A variable declared inside a function or a block has which scope? ? A) Global scope ? B) Local scope