L1 Flashcards

1
Q

What is programming?

A

Programming is organizing a computer’s work using sequences of instructions. Computers process input, perform processing, and generate output.

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

What is an algorithm?

A

An algorithm is a sequence of steps to solve a problem.

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

How do programmers write algorithms?

A

Programmers write algorithms in programming languages like C#, Java, and Python.

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

What are the stages of software development?

A
  1. Gathering Requirements – Identify user needs.
  2. Planning & Design – Select technologies, architecture, and languages.
  3. Implementation – Write source code.
  4. Product Testing – Verify functionality.
  5. Deployment & Operation – Install and run the software.
  6. Technical Support – Maintain and update software.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the entry point of a C# program?

A

The Main() method.

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

What is the basic structure of a C# program?

A

namespace ExampleNamespace
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(“Hello, World!”);
}
}
}

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

What is C#?

A

C# is a modern, object-oriented, high-level programming language developed by Microsoft (1999-2002).

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

What does C# code compile into?

A

C# compiles into executables (.exe) or dynamic libraries (.dll).

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

What are the components of the .NET Framework?

A

C# language

Common Language Runtime (CLR)

Libraries

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

What is Microsoft Intermediate Language (MSIL)?

A

MSIL is used by .NET instead of direct processor instructions.

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

Name some .NET technologies.

A

ASP.NET & ASP.NET MVC – For web applications.

ADO.NET – For database access.

Multi-platform support (via third-party tools).

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

What are the three main steps in computer information processing?

A

b) Input, Processing, Output

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

Which stage involves writing the actual code?

A

b) Implementation

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

What is the role of the CLR?

A

b) It manages the execution of .NET programs

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

What is the correct syntax for the Main() method?

A

b) static void Main(string[] args)

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