CCS 1400

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

1/18

flashcard set

Earn XP

Description and Tags

Reviewer 1

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

19 Terms

1
New cards

Programming

Process of preparing an instructional program for a device.

2
New cards

Program

A instruction that helps the computer to perform task.

3
New cards

Vocabulary and Syntax

Learning a computer programing language requires learning both its _____.

4
New cards

Syntax

Rules of any language.

5
New cards

Vocabulary

Words of any language.

6
New cards

Types of Errors

Syntax Error, Run-time Error, and Logical error.

7
New cards

Syntax Error

Mistakes in the code’s structure or grammar.

8
New cards

Run-time Error

Errors that happen while the program is running.

9
New cards

Logical Error

Mistakes in the program’s logic, causing wrong results.

10
New cards

Programming Universals

Fundamental concepts and principles applicable across programming languages, such as control structures, data types, and syntax.

11
New cards

Programming Language

Used to write a program or set of instructions.

12
New cards

Programming Language into three types:

Machine language, assembly language, and high-level language.

13
New cards

Machine Language

Is the set of instructions executed directly by a computer's CPU without any translation. It consists of binary code and is unique to each computer architecture.

− lowest level of programming language

− handles binary data

− directly interacts with system

− not portable and non-readable to humans

11001010 10110011 01101100 10011001
00101101 11010010 01010101 11100010
10010110 01011011 00110010 10101010

14
New cards

Assembly Language

− middle-level programming language
− consist of a set of instruction in command
− use symbols represent field of instruction
− very close to machine level language
− should have an assembler to translate assembly level program to machine level program
−in human-readable format and takes lesser time to write a program and debug it

Assembly Language | Machine Code
MOV AL, 61h       |10110000 01100001

15
New cards
16
New cards
17
New cards
18
New cards
19
New cards