Technology-Chapter 17 Flashcards

(33 cards)

1
Q

Programming

A

is the act of formulating an algorithm or program, it entails developing a systemic means of solving a problem so that an agent can follow the instructions and produce the intended result for every input, every time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Adele Koss

A

one of the first professional programmers, summarized programing the Univac I in 1950.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Java Script

A

a modern programming language that is especially effective for Web applications

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Names are seen as titles that having

A

changing values

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Names are called ,

A

variables, a term that reminds us that their values vary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

assignment

A

most commonly used programing language operation is the command to change the value of a variable, that command is this

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

addresses

A

memory locations that have different values at different times

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

identifier

A

the letter sequence that makes up a variable’s name, and can not contain any spaces, and are case sensitive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

declaring variables

A

first thing you do when writing any program is to state what variables will be used, and we do it using a command called declaration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

statement terminator in Java Script is

A

a semicolon

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

every variable used in a program must ..

A

be declared

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

undefined

A

when the names is declared but there is no value assigned yet

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

initialize

A

when javascript allows us to set the initial value as part of the declaration, it does this to the variable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

three types of data in java script programs

A

numbers, strings, and Booleans

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

numbers

A

the values assigned to the variables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

strings

A

sequences of keyboard characters, can initialize a declaration

17
Q

rules for writing strings in JavaScript

A
  • surrounded by quotes,
  • the enter, backspace,tab, and \ key are not allowed inside a quote
  • any number of characters are allowed
  • double quoted can contain single quoted and vice versa
  • apostrophe is the same as a single quote
  • empty string-min. number of characters is zero
18
Q

literals

A

the numbers and strings

19
Q

Boolean Value (Booleans)

A

only two values, true or false

20
Q

data types or value types

A

different kinds of a programming language

21
Q

meta-brackets

A

to separate language that is being defined you use angle brackets called this

22
Q

assignment statement

A

changes a variable’s value , it is the workhorse of programing

23
Q

in the computer, an assignment statement causes the value in the memory locations corresponding to the variable to be

A

replaced by the new value resulting from the expression

24
Q

expression

A

describe the means of preforming the actual computation

25
operators
expressions are built off of this, are the standard arithmetic operations
26
the symbols used for basic arithmetic are
arithmetic operators
27
Binary operators
operate on two values called operands, and unary operators
28
modulus (mod) operation
divides two integers and returns the remainder
29
relational operators
are used to make comparisons between numerical values
30
operator overload
the use of an operator with different data types
31
concatenation
when we use + with strings , it joins the stings by the operation of this
32
conditional statement
to test numbers and strings easier
33
compound statement
when we group the statements by surrounding them in curly brackets which then collects them to become a single statement