0% found this document useful (0 votes)
599 views

JEE TEST 1

Uploaded by

Satyam Mishra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
599 views

JEE TEST 1

Uploaded by

Satyam Mishra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 17

SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

No. Question Option 1 Option 2 Option 3 Option 4


1 CLS stands for C# language Common Language Common Language C# language
Standard specification Standard Specification
2 Which of the following is 0 1 "TRUE" FALSE
the correct default value
of a Boolean type?
3 Code that runs under CLR Unmanaged Distributed Managed Native
is known as ___________
4 Which control supports RichTextbox Textbox Label All of the above
font, link, color, image
from file?
5 Fill Method of Data DataReader DataSet DataAdapter None
adapter is used to
fill_______
6 ADO Stands for ActiveX Data Acronym Data Active Data Object ActiveX Data
Object Object Organization
7 Which is true for dataset Points a single Privides Does not support None
table disconnected Data Relation
Architecture
8 C# is based on _______ Procedure Object Oriented Event Driven All of Above
Programming. Oridented
9 Each column in a database File Field Record Key Field
table represents a
_______
10 __________________ Command Connection DataAdapter Datareader
object provide connection
to the database.
11 Which method is used to Execute Execute Scalar Execute Non Query None
Execute a DML Queries ? Reader
12 All C# applications begin class main Submain Namespace
execution by calling the
_____ method.
13 Arrays in C# are ______ Reference logical Value Arithmetic
objects
14 C# does not support parameterised parameterless public virtual
_____ destructors.
15 The methods that have Method Method overriding Method overwriting Method
the same name, but overloading Overreading
different parameter lists
and different definitions is
called______.
16 The ____ language allows C# J# C++ C
more than one method in
a single class
17 Sealed Classes cannot be a TRUE FALSE Cant Say none
child class.
18 A variable which is Local Serial Private Static
declared inside a method
is called
a________variable
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

19 Boxing in .Net allows the a interger Reference type to Value type to a double type to
user to convert type to double value type reference type interger
20 Which of the following is Class Run-time Exceptions Compile-time
the necessary condition declaration Polymorphism Polymorphism
for implementing
delegates?
21 ________ method is the Start( ) Main( ) Paint( ) Dispose( )
Entry Point for a C#
program.
22 A _______ is an identifier Constant Reference type Variable Object
that denotes a storage
location
23 Full form of CLR Callable Common Language Common Length Common
Language Restrictions Runtime Language Runtime
Runtime
24 Arrays in C# are ______ Reference Logical Value Arithmetic
type objects
25 A C# Program is first MSIL C++ Binary C
converted to _________
code.
26 The methods that are in Method Method Overriding Method Overwriting Method
the same class, have the Overloading Overreading
same name, but different
parameters is called...
27 The methods that are in Method Method Overriding Method Overwriting Method
different classes, have the Overloading Overreading
same name and same
signature is called...
28 Which of the following is Normal JIT Econo-JIT Pre-JIT KM-JIT
NOT A type of JIT
Compiler?
29 When an instance method Abstract Instance method Sealed method Expression
declaration includes the method method
abstract modifier, the
method is said to be an
______.
30 C# treats the multiple If Switch For While
catch statements like
cases in a _____________
statement.
31 C# does not support Abstraction Polymorphism Multiple Inheritance Inheritance
________.
32 A variable which is Local Private Static Serial
declared inside a method
is called a ________
variable.
33 A delegate stores the Class Method Array Pointer
reference of a ________.
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

34 Every class directly or System Object Drawing Console


indirectly extends
the______class.
35 ______ method can be Static Abstract Sealed Interface
called directly using the
class name.
36 Members with Private Protected Internal Public
__________ access
modifier are accessible
within the same assembly.
37 Pointers can be used in Private Public Sealed Unsafe
__________ context.
38 A variable can be made "sealed" "final" "const" None of above
constant using _________
keyword.
39 To prevent a class from "sealed" "final" "const" None of above
being inherited,
___________ keyword is
used.
40 __________ keyword can "super" "final" "base" "parent"
be used to access
members of parent class.
41 By default, all the Private and Public and abstract Protected and Public and Virtual
members of an Interface virtual abstract
are __________ and
__________.
42 ________ type Implicit Explicit Internal External
conversions are
performed automatically
by .NET Framework.
43 ________ accessor is used "setValue" "getValue" "set" "get"
to get the value of a
property.
44 ________ accessor is used "setValue" "getValue" "set" "get"
to set the value of a
property.
45 ________ keyword is used "this" "base" "super" "virtual"
in indexers.
46 By default, the first 0 1 2 3
Enumeration value has
___________ constant
associated.
47 ArrayList can store Integer Object Reference Value
_________ type of
objects.
48 Stack stores data in LILO FIFO LIFO FILO
_________ manner.
49 Queue stores data in LILO FIFO LIFO FILO
_________ manner.
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

50 ________ operator is used += -= =+ -


for adding methods to an
event.
51 ________ operator is used += -= =+ -
for removing methods
from an event.
52 Interfaces are __________ Inhertied Copied Included Implemented
by other classes.
53 Interfaces are __________ Inhertied Copied Included Implemented
by other interfaces.
54 Classes are __________ by Inhertied Copied Included Implemented
other classes.
55 Marking a method as Overloaded Overridden Replaced None of above
virtual means, they can be
_________.
56 What is not belonging to Control Container Component None
Windows.Form
57 Form includes _________ MDI Form Message Box Dialog Box All of above
.
58 Show() method of DialogResult String Message None
MessageBox class returns
_________ .
59 Basic controls have Methods Properties Events All of above
________ .
60 Key Value property An integer A character value Astring value None
returns ________. value
61 Which control supports RitchTextBox TextBox Label All of above
font, linkm color, image,
form file ?
62 ButtonBase claa Button class RadioButton class CheckBox class All of above
has________ .
63 TextBox class is derived TextBase class TextBoxBase class Text class None
from _________.
64 Which event generally is LostFocus KeyUp LKeyPress MouseUp
used with TextBox ?
65 The RadioButton control Text Image Both Text and Image None
can display __________ .
66 What is not a state of Indeterminate Checked Unchecked Determinate
CheckBox ?
67 ListControl class has ComboBox ListBox CheckedListBox All of above
________.
68 Which view modes LageIcon SmallIcon List and Details All of above
supported by ListView ?
69 To start timer you have to Start Method Enabled property Tick event None
use ______ .
70 Scrollbar class HscrollBar VscrollBar Both a and b None
has________ .
71 ADO stands for ActiveX Data Acronym Data Active Data Object ActiveX Data
_________. Object Object Organization
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

72 Which object is not a part Connection Command object DataAdapter object None
of .Net Data Provider ? object
73 Which method of ExecuteNonQ ExecuteReader ExecuteScalar None
Command class is used to uety
retrive data from source
to DataReader object ?
74 Which method of ExecuteScalar ExecuteNonQuery ExecuteReader None
command class is used to
retrive a single value from
DataBase?
75 It is used to exchange data DataReader DataAdapter Command object None
between dataset to
datasource
76 Fill method of DataReader DataSet DataAdapter None
DataAdapter is used to
fill_________.
77 Which method used to Fill() Release() Dispose() Close()
release the resource that
DataAdapter class uses ?
78 Which one is true for Points to a provides dose not support None
DataSet? single table disconnected data relation
environment
79 Which one is false for Virtual Multiple DataTables XML DataSet None
DataSet database
80 DataSet generate new Typed DataSet Untyped DataSet XML DataSet None
class is based on XML is
known as ________ .
81 Which one is not true DataReader is DataReader can't It has live Provides
about DataReader connected persist data connection while Disconnected
architecture reading data Environment
82 _______ is the default Click Load KeyPress DoubleClick
event of Form control.
83 We can use ________ Name Id Text Tag
property of Form control
to change the title.
84 _______ is default event SelectedIndex SelectedValueChang SelectionIndexChan SelectionChangeC
of ComboBox. Changed ed ged ommitted
85 _______ is default event Load Click TextEntered TextChanged
of TextBox.
86 Which component is used DataReader DataAdapter DataSet None
in Connected Architecture
?
87 Which component is used DataReader DataSet DataScalar None
in DisConnected
Architecture ?
88 With the use of Item Items Value Values
_________ property we
can insert options in
combobox.
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

89 _______ is default event CheckedChan CheckStateChanged Click Checked


of CheckBox. ged
90 _______ is default event SelectedIndex SelectedValueChang SelectionIndexChan SelectionChangeC
of ListBox. Changed ed ged ommitted
91 Which of the following is a get set add All Of Above
contextual keyword in C#?
92 Which of the following ToBoolean ToSingle ToChar ToDateTime
converts a type to a
Boolean value, where
possible in C#?
93 Which of the following ToInt ToSingle ToChar ToDateTime
converts a type (integer or
string type) to date-time
structures in C#?
94 Which of the following sizeof typeof &</a> *
operator returns the size
of a data type in C#?
95 Which of the following define undef region endregion
preprocessor directive
defines a sequence of
characters as symbol in
C#?
96 CLR is the .NET equivalent Java Virtual Common Language Common Type Common
of _________. Machine Runtime System Language
Specification
97 ________ method is called Class() Main() Submain() namespace
when a C# program is
executed.
98 A _______ is a variable Constant Static variable Value Object
whose value cannot be
changed during execution.
99 _________ are reserved, Keywords literal variables Identifiers
and cannot be used as
identifiers.
100 Boxing converts a value Bool type Instance type Class type Object type
type on the stack to an
______ on the heap.
101 C# has _______ operator, Looping Functional Exponential Conditional
useful for making two way
decisions.
102 An ____ is a group of Operator Integer Exponential Array
contiguous or related data
items that share a
common name.
103 Objects in C# are ______ Reference Logical Value Arithmetic
type variables
104 _______ variables are System Global Local Console
visible only in the block
they are declared.
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

105 A constructor cannot be parameterized parameter-less Virtual Private


_________
106 Class data members are Protected Public Private Default
____________ by default.
107 A _______ creates an Copy Default constructor Invoking constructor Calling
object by copying constructor constructor
variables from another
object.
108 ________ class catches all RuntimeExcep Error Exception ArithmeticExcepti
the exception in a tion on
try...catch statement.
109 C# does not support: abstraction polymorphism multiple inheritance inheritance
110 Which of the following Single- Multidimensional Jazzed arrays Jagged arrays
is/are not types of arrays Dimensional
in C#?
111 A____block enclose the Try Catch Exception Error
code that could throw an
exception.
112 Exception objects are Try Catch Exception Event
derived from the class.
113 A method_____an Try Catch Throws a and b
exception when that
method detects that a
problem has occured.
114 Which namespace System Object Drawing Console
contains all other
important .NET
namespaces?
115 A delegate defines a Wahsington a class that a means of passing a substitue for an
representative encapsulates arrays into methods inherited method
methods
116 An Event is The result of a result of a party code to force users None of above
users action action
117 A variable declared inside Static Private Local Serial
a method is called
a________variable
118 A Constructor is used to must have the same is a method of a Both b and c
create objects name as the class it class
is declared within
119 An instance method Represents Represents the Represents another a and b
the behavior attribute of an class
of an object object
120 An instance variable is an object of Represents the is a method of a a and c
a class attribute of an class
object
121 What is the .NET HashTable ArrayList SortedList None of above
collection class that allows
an element to be accessed
using a unique key?
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

122 Features of readonly It is allocated Declaration and It is initialized at run all of these
variables at compile initialization can be time
time separated
123 An Event has _____ as No return Double Integer String
default return type type for
events
124 int keyword targets to System.Int8 System.Int16 System.Int32 System.Int64
which .Net type?
125 Which of the following is Ok OkCancel None YesNo
NOT the
MessageBoxButtons
enumeration value.
126 ………….. class is built into Msgbox MessageBox InputBox DisplayBox
the .Net Framework to
display messages and
accept input from the
user.
127 ……………. event occurs Keydown Keypress Keyup KeyEnter
when a key is pressed
while the form has the
focus.
128 If a class is using an inherit the contain the same a and b None of above
interface, it must properties of method definitions
the interface as the interface
129 ____________ class TreeNodes TreeView Collection TreeNodeCollectio
represents a collection of n
TreeNode objects.
130 The Windows ContextMenu TreeView Splitter ToolStrip
Forms__________control Strip
displays a hierarchy of
nodes, like the way files
and folders are displayed
in the left pane of the
Windows Explorer feature
in Windows operating
systems.
131 ______ class represents a None TreeNodes TreeNodeCollection None of above
node of a TreeView.
132 The Windows Forms Spitter Timer Delegate None of above
__________ is a
component that raises an
event at regular intervals.
133 The __________ control ContextMenu ToolStrip ToolStripTextBox None of above
provides a shortcut menu Strip
that you associate with a
control.
134 ContextMenuStrip ContextMenu Menu MenuStrip ToolStrip
replaces _______.
135 Two methods with the Overloading Multiplexing Duplexing Loading
same name but with
different parameters.
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

136 The RangeValidator Integer only Date, Integer and only string Date and Integer
control supports the String
following data types
137 Which keyword is used to This static base extend
refer baseclass
constructor to subclass
constructor?
138 In Inheritance concept, static protected private shared
which of the following
members of base class are
accessible to derived class
members?
139 Which keyword is used for interface intf This base
correct implementation of
an interface in C#.NET?
140 Can you store multiple No Yes None of above Can't say
data types in
System.Array?
141 Difference between Convert.ToStri ToString() output as Convert.ToString() ToString() handles
Convert.ToString() and ng() handles per format supplied only handles null null values but
ToString() null values but values Convert.ToString()
ToString() doesn't
doesn't
142 Different ways a method Different Different number of Different order of a and b
can be overloaded in parameter parameters parameters
C#.NET data types
143 Sealed Classes cannot be a TRUE FALSE None of above Can't say
base class.
144 What is accessibility It is available It is the least It is the most It is available
modifier "protected to classes that permissive access permissive access within the class
internal"? are within the level level definition
same
assembly or
derived from
the specified
base class.
145 Unboxing in .Net allows a interger a reference type to a value type to a a double type to
the user to convert type to double a value type reference type interger
146 __________object is used DataReader Dataset DataAdapter DataTables
to fill a DataSet/DataTable
with query results in
ADO.net.
147 We can add control on the Design Time & Properties & Both None of above
form using ___________ Run Time Methods
and __________
148 Using _______ property Text Name Index None of above
we can set the sequence
of the TAB key for the
controls
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

149 SDI Stands for Single Structure Document Single Data None of above
Document Interface Integration
Interface
150 MDI Stands for Master Data Multiple Document Multiple Data Multiple Data
Integration Interface Integration Integrity
151 MDF Stands for Master Master Data Folder Master Data File None of above
Database File
152 ___________ method is Checked Text Both None of above
default event of checkbox
153 List Box is collection of Nodes Text Items None of above
__________
154 _____________ are best ListBox ComboBox TextBox CheckBox
use for displaying large
number of choices.
155 To open any dialog control ShowDialog() Show() Shows() None of above
we need to call
______________ method.
156 TreeView is a collection of Items root Node None of above
___________.
157 The main starting node is child node root node parent node focus node
called _____________
node in Treeview.
158 ___________ displaying ListBox ComboBox TextBox None of above
data in a drop-down style
format.
159 ___________ control SaveFileDialog openFileDialog DataAdapter None of above
allow us to save the file in
a specified location.
160 To raise event of Timer Enable Interval Disable None of above
control we need to set
___________ property.
161 Full form of MSIL Microsoft Microsoft Microsoft None of above
Integrated Interconnect Intermediate
Language Language Language
162 Full form of JIT Just In Time Just In Tick Both None of above
163 GC Stands For Garbage Garbage Collect Garbage Collection None of above
Collector
164 DLL Stands For Dynamic Dynamic Link Library Deploy Link Library None of above
Language
Library
165 BCL Stand For Base Class Base Class Library Blank Class Library None of above
Language
166 FCL Stands For Framework Framework Class Both None of above
Class Library Language
167 JIT converts MSIL to Native Native machine Both None of above
______________ into machine code code to MSIL
______________
168 The major components of CLR & CLS CLR & CTS CLR & Class Library None of above
.NET framework are
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

___________ and
__________
169 Data Reader is used in Disconnected Connected Both None of above
___________
Architecture.
170 Using keyword is used to class method namespace None of above
imports ______________
171 ExecuteReader method is Disconnected Connected Both None of above
used in which
Architecture.
172 VS.NET is an example of TRUE FALSE Can't Say None of above
programming language.
173 IDE Stands for Integrity Integrated Integrated Develop None of above
Develop Development Enviornment
Envioenment Enviornment
174 XML Stands for Extensible Xtensible Markup Extensible managed None of above
Markup Language Language
Language
175 Every C# statement ends : ; , None of above
with ___________
176 C# is the case sensitive TRUE FALSE Can't Say None of above
language __________
177 Extension of C# program is .aspx .asax .sln .cs
___________
178 There are two types of Data Type Data Type Name & Class Name & None of above
scope of the variable Name & Class Name Function Name
_________ and Variable
_____________. Name
179 The conversion of a value Boxing Unboxing Both None of above
type instance to an object
is known as ___________
180 Decision statement is also Behavioral , Conditional , Both None of above
known as ____________ , Decision , Decision making ,
_____________ or Conditional Branching
____________. Statement
181 ____________ error is Runtime , Logical , Syntax , Syntax , Logical , None of above
easy to trap , _________ Syntax , Runtime Runtime
error is difficult to trap Logical
and _________ error is
trap with structured
exception handling.
182 Class is a collection of Data member Data function & Data member & None of above
_________ and & functions constructor Constructor
_____________.
183 Method overloading is an RunTime Compile Time Can't Say None of above
example of ___________ Polymorphism Polymorphism
polymorphism.
184 There are ___________ 2 3 4 5
type of properties.
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

185 The destructor should be ! @ # ~


start with __________
symbol.
186 A jagged array is an array TRUE FALSE Can't Say None of above
of arrays
187 The main advantage of Reusability Safety Both None of above
Inheritance is
_____________.
188 Indexer can't be Dynamic Static Both None of above
_______________ .
189 _______________ is Inheritance Delegate Class Indexer
reffered as smart arrays.
190 Visibility modifier also access public modifier Class modifier None of above
known as modifier
______________.
191 ____________ is also Class Inheritance Delegate Indexer
known as a generalization.
192 An interface represents has-a , am-a is-a , has-a has-a , is-a None of above
__________ relationship
while inheritance
represents
_____________
relationship.
193 _________ keyword is safe unsafe this None of above
compulsory to write when
we use pointer.
194 _________ holds the Delegate Indexer Inheritance Pointer
address of another
variable.
195 Members with public private protected internal
__________ access
modifier are accessible
within the child class
196 Hash Table is storing data Key value Value Key None of above
in __________
197 Data Adapter is used in Disconnected Connected Both None of above
_____________
Architecture.
198 __________ keyword is override overload operator new
used for overloading
operators.
199 A child class is also known Super Base Derived Parent
as a _________ class
200 Members with public private protected internal
__________ access
modifier are accessible
everywhere.
201 _______ keyword is used for ref static unsafe
for passing parameter by
reference.
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

202 _______ keyword is used enum struct class object


for creating an
enumeration.
203 ________ class is used for Local static sealed abstract
inhertiance purposes.
204 ________ constructor private public static protected
does not allow creating an
object of the class.
205 ________ keyword is used internal private partial base
when creating a single
class in multiple files.
206 ________ variables are private static internal virtual
shared between all the
object of a class.
207 ________ class in .NET System Console Form Convert
allows converting one
type to another.
208 ________ keyword is used break continue exit skip
for skipping an iteration of
a loop.
209 ________ keyword is used break continue exit skip
for terminating a loop.
210 ________ is known as an while foreach do-while for
exit-controlled loop.
211 Which of the following is a 4 3.14F 2.72 Hello
float value
212 To create an event, event delegate var dynamic
_________ keyword is
used
213 ___________ is a one Indexer Pointer Class Collection
dimensional storage area.
214 __________ is a collection BitArray HashTable ArrayList Queue
of objects.
215 LIFO Stands for Last Input Last In First Out Last In First Output None of above
First Out
216 FIFO Stands for First In First First Input First First In Last Output None of above
Out Output
217 Stack use which algorithm LIFO FIFO ArrayList None of above
?
218 Queue use which LIFO FIFO ArrayList None of above
algorithm ?
219 Section 3 of crystal report Report Report Footer Detailed Section None of above
include __________. Header Section
Section
220 Section 1 of crystal report Report Report Footer Detailed Section None of above
include __________. Header Section
Section
221 __________ event will Click Text Load None of above
occur whenever the user
control load.
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

222 __________ is the .asax .aspx .cs .ascx


extension of user control
file.
223 __________ method is close() exit() abandon() None of above
used to close the
connection.
224 __________ is default Color Text background color None of above
property of TextBox.
225 __________ is default Load Keypress Click Focus
event of button.
226 __________ class is Abstract Sealed Base None of above
prevent inheritance.
227 __________ method is Pop Remove Return None of above
used to remove and
return element in stack.
228 Which namespace System System.Data System.Data.SqlClie System.Windows.
contains DataTable and nt Forms
DataSet classes?
229 Which namepsace System System.Data System.Data.SqlClie System.Windows.
contains SqlConnection nt Forms
class?
230 Converting a smaller type Implicit Explicit External Internal
to bigger type is an
example of_______ type
casting.
231 _________ is to retrieve a Data Adapter Data Reader SQL Command None of above
read only , forward only
stream of data.
232 Which method is used to Fill() ExecuteReader() ExecuteNonQuery() None of above
execute DML Queries.
233 Converting a bigger type Implicit Explicit External Internal
to smaller type is an
example of_______ type
casting.
234 Static methods can only Virtual Public Static Private
access _______ members.
235 Which method is used to Fill() ExecuteReader() ExecuteNonQuery() None of above
fill data from DataAdapter
to DataTable.
236 _________ is a special Main Constructor Parameterized Destructor
method which is called Constructor
when an object is about to
be destroyed.
237 _________ refers to DataTable DataAdapter DataRow DataSet
collection of more than
one tables.
238 How many types of Data 1 2 3 4
Set in C#.
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

239 ___________ project type Console Windows Forms Class Library ASP.NET Web
allows to create GUI based Forms
Windows applications.
240 A method having same Method Sealed Method Method Overriding Abstract Method
name, same parameters Overloading
but different classes with
inheritance relationship is
known as ________.
241 A __________ method can Virtual Sealed Abstract None
be overridden by the child
class.
242 _____________ can not DataReader DataAdapter DataSet DataColumn
persist the data.
243 ___________ project type Console Windows Forms Class Library ASP.NET Web
allows to create Forms
Command-line based
applications.
244 Console class in C# is a System System.Windows.Fo System.Data Microsoft
part of _________ rms
namespace.
245 An object of ___________ Public Internal Abstract Virtual
class cannot be created.
246 _________ is used to DataGridView DataTable Panel GroupBox
disply the data in tabular
format.
247 ___________ is a virtual DataRow DataColumn DataSet DataAdapter
database that is stored
locally.
248 ___________ method Sealed Virtual Public Protected
cannot be overridden by
the child class
249 _____ symbol is used = - + :
when inheriting a class
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

1 2 11 3 21 2 31 3 41 2
2 4 12 2 22 3 32 1 42 1
3 3 13 1 23 4 33 2 43 4
4 1 14 1 24 1 34 2 44 3
5 3 15 1 25 1 35 2 45 1
6 1 16 1 26 1 36 3 46 1
7 2 17 2 27 2 37 4 47 2
8 2 18 1 28 4 38 3 48 3
9 2 19 3 29 1 39 1 49 2
10 2 20 1 30 2 40 3 50 1

51 2 61 1 71 1 81 4 91 4
52 4 62 4 72 4 82 2 92 1
53 1 63 2 73 2 83 3 93 4
54 1 64 4 74 1 84 1 94 1
55 2 65 3 75 2 85 4 95 1
56 4 66 4 76 3 86 1 96 1
57 4 67 4 77 3 87 2 97 2
58 1 68 4 78 2 88 2 98 1
59 4 69 1 79 3 89 1 99 1
60 1 70 3 80 1 90 1 100 4

101 4 111 1 121 1 131 2 141 1


102 4 112 3 122 4 132 2 142 4
103 1 113 3 123 1 133 1 143 1
104 3 114 1 124 3 134 1 144 1
105 3 115 2 125 3 135 1 145 2
106 3 116 1 126 2 136 2 146 3
107 1 117 3 127 2 137 3 147 1
108 3 118 4 128 3 138 2 148 3
109 3 119 1 129 4 139 1 149 1
110 3 120 2 130 2 140 2 150 2
SUB : PROGRAMMING WITH C# MULTIPLE CHOICE QUESTION

151 1 161 3 171 2 181 3 191 2


152 1 162 1 172 1 182 1 192 3
153 3 163 3 173 2 183 2 193 2
154 1 164 2 174 1 184 2 194 4
155 1 165 2 175 2 185 4 195 3
156 3 166 1 176 1 186 1 196 1
157 2 167 1 177 4 187 1 197 1
158 2 168 3 178 1 188 2 198 3
159 1 169 2 179 1 189 4 199 3
160 1 170 3 180 2 190 1 200 1

201 2 211 2 221 3 231 2 241 1


202 1 212 1 222 4 232 3 242 1
203 4 213 4 223 1 233 2 243 1
204 1 214 3 224 2 234 3 244 1
205 3 215 2 225 3 235 1 245 3
206 2 216 1 226 2 236 4 246 1
207 4 217 2 227 1 237 4 247 3
208 2 218 1 228 2 238 2 248 1
209 1 219 3 229 2 239 2 249 4
210 3 220 1 230 1 240 3

You might also like