C#

0.0(0)
Studied by 3 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/44

Last updated 9:09 AM on 3/20/23
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

45 Terms

1
New cards
It is used to inform the compiler about the type, size & nature of data that can be stored in a variable.
Data Types
2
New cards
These are containers for storing data values.
Variables
3
New cards
checking#account
Illegal
4
New cards
y2x5_w7h3
Legal
5
New cards
It is a symbol that tells/command the compiler to perform mathematical or logical manipulations.
Operator
6
New cards
It reverse the output of Boolean Expression(s) into its opposite value.
Logical Not
7
New cards
These are expressions that is either true or false “Boolean Expression”
Conditions
8
New cards
It is a sequence of finite characters which can contain spaces and number.
String
9
New cards
These are variables can be assigned a value directly.
Value type
10
New cards
It is used to store a floating-point number i.e. number with decimal values.
Float
11
New cards
In C#, variable names can contain letters, digits, and the underscore character (_).
True
12
New cards
The first character of the name must be a number.
False
13
New cards
It means to provide the value to the variable during the compilation of the program.
Compile Time Initialization
14
New cards
It is used to assign value to the variables.
Assignment Operator
15
New cards
It is a programming statement that we used in decision-making especially if we want to execute logical processes like printing output based on the conditions.
Conditional Statement
16
New cards
It allows a variable to be tested for equality against a list of values.
Switch Statement
17
New cards
\
\
If-else Statement
18
New cards
It is a programming structure that repeats a sequence of instructions until a specific condition is met.
Loop
19
New cards
term image
For each Loop
20
New cards
A short form of integer
Int
21
New cards
This value data type contains set of related named constants which are called as enumerator list.
Enumerations
22
New cards
It is referred as block of memory that executes according to the blueprint.
Object
23
New cards
Operators used to perform basic mathematical operations.
Arithmetic Operators
24
New cards
term image
Do While Loop
25
New cards
It is a programming statement that allows us to execute a statement or group of statements multiple times.
Looping Statement
26
New cards
A short form of Boolean, contains two values i.e. true or false.
Bool
27
New cards
Referred as a grouped list of variables that can be placed under one name in memory. It is the same like “Class” in the reference type.
Structure or struct
28
New cards
It is also called as indicator or locator, is a data type in C# that points towards the memory address of a data, we need to use (\*) in its declaration.
Pointer
29
New cards
int, float, double, structs, enums etc
Value Data Types
30
New cards
In this, the user has to enter the value and that value is copied to the required variable.
Run Time Initialization
31
New cards
In C#, it is a combination of operands (variables, literal, method calls, etc.) and operators that can be evaluated to a single value.
Expression
32
New cards
term image
For Loop
33
New cards
A short form of character, which is used to store alphabets.
Char
34
New cards
It can refer to a memory location.
Reference Types
35
New cards
string, interface, class, delegates etc
Reference Data Types
36
New cards
_2010_tax
Legal but not advised
37
New cards
It assigns some value to the variable
Initializing Variables
38
New cards
It is used to combine Boolean Expression and evaluate the result depending on the operator used.
Logical Operators
39
New cards
term image
While Loop
40
New cards
When at least one of the Boolean expressions in this operator is true, the result of the whole Boolean expressions is True.
Logical Or
41
New cards
It can do almost every logical process you need to perform unlike switch statement that has lot of limitations when it comes to C# programming language.
If Else Statement
42
New cards
It is used to modify the value of a variable by performing an operation on the value currently stored in that variable.
Compound Assignment Operators
43
New cards
When one of the Boolean expressions in this operator is false, the result of the whole Boolean expressions is False.
Logical And
44
New cards
9byte
Illegal
45
New cards
It is used to evaluate a comparison between two operands. We used also these operators to form Boolean expressions.
Relational/Comparison Operators