Computer Science I - Chapter 02 Basics

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

1/13

flashcard set

Earn XP

Description and Tags

These are vocabulary flashcards based on key concepts from the Computer Science I lecture notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

14 Terms

1
New cards

include

Preprocessor directive to include the Standard Input Output library in a C program.

2
New cards

define directive

Used to define macros in C, which are replaced by their value throughout the code.

3
New cards

Constant variable

An initialized variable whose value cannot change after its initial assignment.

4
New cards

Type casting

The conversion of one data type to another, such as from int to double.

5
New cards

Primitive data types

Basic data types provided by C, such as char, int, float, and double.

6
New cards

Built-in Math functions

Functions that perform mathematical operations, like sqrt for square root.

7
New cards

Format specifiers

Used in printf and scanf to define the type of data being handled.

8
New cards

Implicit conversion

Automatic conversion of data types by the compiler when needed.

9
New cards

User-defined type

A type defined by the user in C, such as structs or unions.

10
New cards

Data type sizes

Discusses the size and memory allocation for different data types in C.

11
New cards

Fixed Constants

Constants defined using the #define directive which are substituted by values.

12
New cards

Variable declaration statement

A statement that defines a variable's name and type.

13
New cards

Output statement

A command used to display information to the console.

14
New cards

User input retrieval

The process of receiving input from the user in a program.