may 2018 question paper Flashcards

1
Q

What is an algorithm?

A

A step-by-step procedure for solving a problem.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the role of a compiler in C#?

A

It translates C# code into Intermediate Language (IL) that the CLR executes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a comment in C# and why is it used?

A

A non-executable line in the code, used for documentation (// Single-line, /* Multi-line */).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the purpose of the Main() method in a C# program?

A

It serves as the entry point for execution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the difference between int and double in C#?

A

int stores whole numbers, while double stores decimal numbers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a variable in C#?

A

A named memory location used to store data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is an if statement used for in C#?

A

It allows conditional execution of code blocks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the difference between while and do-while loops?

A

while checks the condition first; do-while executes once before checking.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is an array in C#?

A

A collection of elements of the same data type, stored in contiguous memory locations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do you declare an integer array in C#?

A

int[] numbers = new int[5];

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the purpose of the foreach loop?

A

It iterates over elements in a collection without using an index.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is a method in C#?

A

A reusable block of code that performs a specific task.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is method overloading?

A

Defining multiple methods with the same name but different parameters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the difference between public and private access modifiers?

A

public allows access from anywhere, while private restricts access to within the class.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a class in C#?

A

A blueprint for creating objects, containing fields, properties, and methods.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is inheritance in C#?

A

It allows a derived class to inherit members from a base class.

17
Q

What is polymorphism?

A

The ability of different classes to be treated as instances of the same base class.

18
Q

What is encapsulation?

A

Hiding the internal implementation details of an object.

19
Q

What is exception handling in C#?

A

Using try-catch blocks to handle runtime errors gracefully.

20
Q

How do you read a text file in C#?

A

string text = File.ReadAllText(“file.txt”);