ICT [ Last Knowt :'( ]

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/43

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

44 Terms

1
New cards

clean and organized

Understanding the structure of C# code is essential for writing ______________ applications.

2
New cards

Classes

_______ are the building blocks of C# applications.

3
New cards

classes, methods, variables, and statements.

C# code is composed of ____________________________

4
New cards

Main Method

The ___________ is the entry point of a C# program.

5
New cards

Main Method

It's the first method executed when the program is run

6
New cards

Methods

__________ contain a series of instructions that define a specific behavior.

7
New cards

Variables

_______ are used to store data in memory.

8
New cards

int, string, double, and more.

C# supports various data types such as _________________

9
New cards

Statements

___________ are individual instructions within methods.

10
New cards

Comments

__________ provide explanations for code.

11
New cards

Debugging Tools

___________ help identify and fix errors in code.

12
New cards

collaboration and future maintenance.

Documenting code enhances _______________________

13
New cards

Writing Unit Tests

_______________ ensures code behaves as expected.

14
New cards

Function

A __________ is a block of code that performs a specific task.

15
New cards

Organizing code and making it more manageable.

Functions help in _____________________________________

16
New cards

Functions

__________ are defined using the function keyword followed by the function's name.

17
New cards

parameters and return values.

They may accept ____________________________

18
New cards

Parameters

____________ are placeholders for values that a function receives.

19
New cards

Arguments

____________ are the actual values passed to a function when it's called.

20
New cards

Return Values

Functions can ___________ to the calling code.

21
New cards

Return Type

The _________ is specified in the function's declaration.

22
New cards

Execute a Function

Calling Functions: To ____________, it must be called from another part of the program

23
New cards

Name and Arguments

Calling Functions: The function's ________________ are used to call it

24
New cards

Reusability and Modularity.

Benefits of Using Functions: Functions promote code _____________________

25
New cards

Readability and Maintainability

Benefits of Using Functions: They enhance code __________________________

26
New cards

Organization.

Keep functions focused on a specific task for better ____________

27
New cards

Purpose

Use meaningful function names that describe their _________.

28
New cards

Variable

A ________ is a named storage location in memory.

29
New cards

numbers, text, and more.

Variables hold different types of data, such as ______________

30
New cards

Declare A Variable

To _____________, specify its data type followed by its name. Example: int age;

31
New cards

Initializing

________ a variable means giving it an initial value. Example: int score = 0;

32
New cards

int, double, string, char, and more.

C# supports various data types such as

33
New cards

Data Type

Each __________ is used for specific purposes.

34
New cards

Variable names must follow certain rules:

ļ” Begin with a letter or underscore.
ļ” Can include letters, digits, and underscores.
ļ” Case-sensitive.

35
New cards

Variables, Scope

________ have a ______, which defines where they can be accessed

36
New cards

Local Variables

___________ are declared within a method and are only accessible within that method.

37
New cards

___________ are variables with fixed values that cannot be changed.

38
New cards

Const

They are declared using the _______ keyword

39
New cards

Variable Names

Use meaningful ___________ that describe their purpose.

40
New cards

Initialize Variables

________________ when declaring them.

41
New cards

Data type conversion

_________________ is the process of converting one data type to another.

42
New cards

Implicit and explicit

____________ conversions are used in C#.

43
New cards

Understanding variables

___________________ is essential for effective C# programming.

44
New cards

Practice and experimentation

___________________ will enhance your skills in working with variables