TLE

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

1/39

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:30 PM on 1/29/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

40 Terms

1
New cards

this is used in declaring the beginning and the end of the flowchart. It is labeled with the “Start” or “End”.

Terminator (Oblong/Oval)

2
New cards

this is used if the flowchart needs input from the user or output from a process.

Input/Output (Parallelogram)

3
New cards

this is used to process data, normally composed of mathematical symbols.

Process (rectangle)

4
New cards

If the procedure leads to a comparison, which involves logical or relational operators and questions that are answerable by “Yes” or “No”.

Decision (Diamond)

5
New cards

Is a connecting flowchart with the same page

On-page connector (Circle)

6
New cards

Is a connecting flowchart on another page

Off-page connector (pentagon)

7
New cards

declares the flow of the process

Arrows

8
New cards

is a problem-solving process.

Programming

9
New cards

The process of solving programming problems includes identifying the problem then writing instructions for the computer, which is called a?

source code

10
New cards

Problem-solving process in programming: first one

identify the problem

11
New cards

second step

analyze and identify a possible solution

12
New cards

The solution will be written in an ____ to itemize the step-by-step instructions.

algorithm

13
New cards

The process where instructions or source codes are entered through a programming language is called

coding

14
New cards

Once the coding is complete, the instructions will be translated by a

compiler

15
New cards

A ____ is a collection of resources or routines used by computer programs.

Library

16
New cards

If the compiling is successful, the ___, which combines one or more libraries or object files to produce an executable file.

linker

17
New cards

it will then by process the code for ___ to produce the desired output

execution

18
New cards

step-by-step procedure to solve problems

algorithm

19
New cards

a description of an algorithm using a natural language, which makes reading of the program easier.

pseudocode

20
New cards

a diagram representing the logical sequence in which a combination of steps or operations is to be performed

Flowchart

21
New cards

houses the major menu items like File, Edit, View, and others. It also houses the search bar, and it is where the name of the application and the name of the program are written.

Menu and title bar

22
New cards

has the most common action shortcuts and navigation utility used for interacting with Visual Studio

toolbar

23
New cards

has a set of tools or controls such as buttons, labels, texts, and the like

Toolbox

24
New cards

is where the design of the program’s interface is done

design/form window

25
New cards

is a panel that shows the files of your project

solution explorer

26
New cards

is mainly used to observe build progression during project compilation. It is important to keep an eye on this panel while building, as several useful information such as warnings, function deprecations, or compile errors will show up in this area.

properties window

27
New cards

is where programmers write the code!

Text editor

28
New cards

displays the string parameter followed by a new line. Including the using system directive at the beginning of the program also allows you to use input and output operations.

The statement Console.WriteLine (“Hello World!”) uses the WriteLine method.

29
New cards

character or small integer

char

30
New cards

use this data type for currency values

decimal

31
New cards

floating point number

double

32
New cards

integer

int

33
New cards

A ____ is a window which users can interact with in a system program.

console

34
New cards

The ____ is a method that can print all basic types (string, numeric, and primitive types) ____ and ____ are basically the same except for ____, the cursor goes to the next line after displaying the output

Console.Write/Writeline

and Console.Writeline

35
New cards

______ means combining two strings and returns as a result of a new string. C# uses the ‘+’ operator to _____ two strings.

string concatenation

36
New cards

concatenation can be done alternately with a variable. It can be composed on an output text followed by a variable then another output text.

mixed string concatenation

37
New cards

the _____ is a method that can read all the basic types: string, numeric, and primitive.

Console.Read/Readline ()

38
New cards

a ___ is an expression with a fixed value that cannot be changed runtime, unlike a variable whose value can be changed during runtime based on the user’s input.

constant

39
New cards

____ are used s particular values within the source code of a program.

Literals

40
New cards

____ in C# can be categorized as value types, reference types, and pointer type.

Data types