[GEAS] COMPUTER PROGRAMMING Flashcards
The process of creating a sequence of instructions that a computed will follow to perform a specific task
Computer Programming
Used to represent start and end of flowchart and what shape?
Terminal (oblong)
Used for input and output operation and what shape?
input/output (parallelogram)
Used to represent the operation in which there are 2 or 3 alternatives, true and false etc. and what shape?
Decision making (diamond)
Used for arithmetic operations and data-manipulations and what shape?
Process (rectangle)
Used to represent a group of statements performing one processing task
Predefined process
Link to another process (two answers)
Connector or on-page and off-page
Language used to control the behavior of a machine
Programming Language
Software that is used to translate high-level language into machine code
Compiler
Used for storing data values
Variables
What are the different data types? and their functions
integer: numbers, can be computed
double: can handle larger values, 64 bits in size
float: 32 bits in size
character: cannot be computed
string: text
boolean: true or false
Used to store multiple values in a single variable, instead of declaring separate variables for each value.
Arrays
[Arithmetic Operations] +
Addition
[Arithmetic Operations] -
Subtraction
[Arithmetic Operations] *
Multiplication
[Arithmetic Operations] /
Division
[Arithmetic Operations] %
Modulus: remainder
[Assignment Operations] ++
increment (+1)
[Assignment Operations] –
decrement (-1)
[Assignment Operations] +=
increment by n (+n)
[Assignment Operations] -=
decrement by n (-n)
[Comparison Operations] >
greater than
[Comparison Operations] <
less than
[Comparison Operations] >=
greater than or equal
[Comparison Operations] <=
less than or equal
[Comparison Operations] ==
is equal to
[Comparison Operations] !=
is not equal to
[Logical Operations] &&
AND
[Logical Operations] ||
OR
[Logical Operations] !
NOT
Explain if-else statement
if-else statement: if the specified statement is true then execute the “if” block. Otherwise, execute “else” block.
Explain switch-case statement
switch-case statement: works with a lot of data types. It executes one statement from multiple ones.
Explain while Loop statement
while Loop statement: hanggat nasasatisfy yung condition, nag eexecute yung block. Otherwise, titigil na.
for Loop statement
for Loop statement: instead of using while Loop, kung alam mo kung ilang beses dapat umulit yung block, gamitin ang for Loop statement.
FTP
File Transfer Protocol
HTTPS
HyperText Transfer Protocol Secure
HTML
HyperText Markup Language
CSS
Cascading Style Sheets
XML
Extensible Markup Language
PHP
PHP Hypertext Processor
SQL
Structured Query Language
API
Application Programming Interface
IDE
Integrated Development Environment
GUI
Graphic User Interface
UI
User Interface
UX
User Experience
SSH
Secure Shell
REGEX
Regular Expression
UTC
Coordinated Universal Time
EOF
End of File
FIFO
First In, First Out
OOP
Object Oriented Programming
CSV
Comma Separated Values
WYSIWYG
What You See Is What You Get
ASCII
American Standard Code for Information Interchange
BIOS
Basic Input Output System