Chapt 6 Flashcards
binary numbers can have the values of _____ or ______
0 or 1
hexadecimal uses what numbers and letters?
0-9 and A-F
what is the data notational system that contains only English letters, numbers and symbols?
ASCII
if you need a notational system that has non-english letters, what do you need to use?
unicode
which data type represents a single letter or number?
char
which data type represents several letters or numbers?
string
which data type indicates a number with no decimal places?
integer
which data type indicates a number with decimal places?
float
a boolean data type represents which two values?
true or false
name three types of interpreted languages
scripted, scripting, markup
what are two examples of markup languages?
html, xml
what type of high level language is read line by line every time it’s executed?
interpreted
which programming language category is used to write scripts?
scripting
programming languages that are converted a single time into low-level code are called what?
compiled languages
what type of programming language is designed to pull data from a database?
query
what is the low level programming language best suited for direct hardware access?
assembly
code that is for people to read and does not affect a program is called what?
comments or pseudo code
to map out a program, you would use a(n) ___________?
flow chart
which programming logic component uses if and else if statements?
branching
which program logic component uses while statements?
looping
in programming, what are the two types of data identifiers?
variables and constants
which type of programming data identifier does not change?
constant
which type of programming data identifier can change?
variable
what are the two types of data containers in programming?
arrays and vectors
which type of data container is fixed in length?
array
which type of data container can hold only one data type at a time?
array
which type of data container can have dynamically adjusted length?
vector
which type of data container can store multiple data types at once?
vector
which two programming concepts are used to break code into smaller, reusable chunks?
function and methods
the three characteristics of an object in programming are what?
properties, attributes and methods
what are some examples of object-oriented programming languages?
c++, python, c#, java, php, perl, ruby