L1 Flashcards
What is programming?
Programming is organizing a computer’s work using sequences of instructions. Computers process input, perform processing, and generate output.
What is an algorithm?
An algorithm is a sequence of steps to solve a problem.
How do programmers write algorithms?
Programmers write algorithms in programming languages like C#, Java, and Python.
What are the stages of software development?
- Gathering Requirements – Identify user needs.
- Planning & Design – Select technologies, architecture, and languages.
- Implementation – Write source code.
- Product Testing – Verify functionality.
- Deployment & Operation – Install and run the software.
- Technical Support – Maintain and update software.
What is the entry point of a C# program?
The Main() method.
What is the basic structure of a C# program?
namespace ExampleNamespace
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(“Hello, World!”);
}
}
}
What is C#?
C# is a modern, object-oriented, high-level programming language developed by Microsoft (1999-2002).
What does C# code compile into?
C# compiles into executables (.exe) or dynamic libraries (.dll).
What are the components of the .NET Framework?
C# language
Common Language Runtime (CLR)
Libraries
What is Microsoft Intermediate Language (MSIL)?
MSIL is used by .NET instead of direct processor instructions.
Name some .NET technologies.
ASP.NET & ASP.NET MVC – For web applications.
ADO.NET – For database access.
Multi-platform support (via third-party tools).
What are the three main steps in computer information processing?
b) Input, Processing, Output
Which stage involves writing the actual code?
b) Implementation
What is the role of the CLR?
b) It manages the execution of .NET programs
What is the correct syntax for the Main() method?
b) static void Main(string[] args)