Programming Languages (5): Expressions & Assignment Statements

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/26

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

27 Terms

1
New cards

Expressions & Assignment Statements

Fundamental means of specifying computations in a programming language

2
New cards

Arithmetic Expressions

Expressions that consist of operators, operands, parentheses, and function calls

3
New cards

Unary Operator

An operator that has one operand

4
New cards

Binary Operator

An operator that has two operands

5
New cards

Ternary Operator

An operator that has three operands

6
New cards

Operator Associativity Rules

(Arithmetic Expression) Design issue where it defines the ORDER in which ADJACENT operators with the SAME PRECEDENCE are evaluated

7
New cards

Overloaded Operators

(Arithmetic Expression) Design issue where an operator is used for more than one purpose

8
New cards

Operator Precedence, Operator Associativity, Operand Evaluation Order, Operand Evaluation Side Effects, Operator Overloading, Type Mixing in Expressions, Conditional Expressions

What are possible Arithmetic Expression Design Issues?

9
New cards

Functional Side Effects

(Side Effect) When a function CHANGES a TWO-WAY parameter or a NON-LOCAL variable

10
New cards

[Write the language definition to disallow functional side effects] OR [Write the language definition to demand that operand evaluation order be fixed]

What are possible solutions to Functional Side Effects?

11
New cards

Referential Transparency

A property programs may have if ANY TWO EXPRESSIONS in the program that have the same value CAN BE SUBSTITUTED for one another anywhere in the program, without affecting the action of the program.

12
New cards

Narrow Conversion

(Coercion Type) where it converts an object to a type that CANNOT INCLUDE all of the values of the original type

13
New cards

Widening Conversion

(Coercion Type) where it converts an object to a type that CAN INCLUDE AT LEAST APPROXIMATIONS to all values of the original type

14
New cards

Coercion

Implicit type of conversion

15
New cards

Mixed Mode

(Coercion Type) where it has operands of different types

16
New cards

Explicit Type Conversions

Conversion that gets the value of a variable and converting it to the data type of the variable BUT DOES NOT CHANGE THE VARIABLE’S DATATYPE. Also called “Casting'“ or “Type-Casting” in C-based languages.

17
New cards

Relational Expressions

(Expressions) of user-relational operators and operands of various types. Are used to evaluate some Boolean representation.

18
New cards

Boolean Expressions

(Expressions) where operands are Boolean and the result is Boolean

19
New cards

False (C89 has no Boolean type—it uses “int” type with 0 for false and nonzero for true.)

[TRUE/FALSE] C89 has a Boolean type—it uses “int” type with nonzero for false and 0 for true.

20
New cards

Short Circuit Evaluation

(Expression) in which the result is determined without evaluating all of the operands and/or operators

21
New cards

<target_var> <assign_operator> <expression>

What’s the general syntax of Assignment Statements?

22
New cards

Compound Assignment Operators

A shorthand method of specifying a commonly needed form of assignment

23
New cards

a += b

(Compound Assignment Operators) How would the assignment statement “a = a + b” be shortened?

24
New cards

Unary Assignment Operators

COMBINE INCREMENT and DECREMENT operations with assignment

25
New cards

C-based languages, Perl, JavaScript

What are some PL’s that allow Assignment as an Expression?

26
New cards

Perl, Ruby, Lua

Which PL’s allow multiple-target multiple-source assignments?

27
New cards

TRUE

[TRUE/FALSE] Fortran, C, Perl, and C++ let any numeric type value be assigned to any numeric type value while Java and C# only let widening assignment coercions be done.