CBSE 8 PT-1 FLASHCARDS(1.1-1.4)

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

1/21

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.

22 Terms

1
New cards

What is an algorithm?

A step-by-step process where raw data is converted into refined data through logical instructions to solve a problem.

2
New cards

What is a flowchart?

A diagram that shows an algorithm using standard symbols and arrows to represent control flow.

3
New cards

What is pseudocode?

Pseudocode means "false code"; it's a way to write out an algorithm in structured English before actual programming.

4
New cards

What is a program?

A set of coded instructions written in a programming language to perform a specific task.

5
New cards

What is source code?

Human-readable code written in a high-level language like Python.

6
New cards

What is machine code?

Binary code (0s and 1s) that a computer can directly understand and execute.

7
New cards

What is a compiler?

A tool that converts the entire source code into machine code before execution.

8
New cards

What is an interpreter?

A tool that reads and executes source code line by line.

9
New cards

What are relational operators?

Symbols used to compare values, like ==, !=, >,

10
New cards

What are logical operators?

Operators like AND, OR, and NOT used to combine or reverse conditions.

11
New cards

What is iteration?

Repeating a set of instructions using loops until a condition is met.

12
New cards

What is a FOR loop?

A loop that repeats instructions a set number of times.

13
New cards

What is a WHILE loop?

A loop that runs as long as a condition is true.

14
New cards

What is a subroutine?

A small, reusable block of code that performs a specific task.

15
New cards

What is a function?

A named subroutine that runs when called and can return a value.

16
New cards

What is a parameter?

A value passed into a function to be used in its operation.

17
New cards

What is a return value?

The result a function gives back after it finishes.

18
New cards

What is looping in text-based programs?

Using loops like FOR and WHILE in languages such as Python to repeat instructions.

19
New cards

What is an infinite loop?

A loop that never ends because the condition is always true.

20
New cards

What is a condition?

A logical expression that decides whether code runs or not.

21
New cards

What is an iteration variable?

The variable that changes during each loop cycle (e.g., i in for i in range).

22
New cards