PROG LANGUAGES

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

1/65

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.

66 Terms

1
New cards

Lexical analysis

involves reading the source code character from left to right

2
New cards

lexical analyzer

collects characters into logical groupings

3
New cards

regular expressions

In programming language, tokens can be described using what?

4
New cards

Input Preprocessing

Involves cleaning up the input text and preparing it for lexical analysis

5
New cards

Tokenization

Involves the process of breaking the input text into a sequence of tokens

6
New cards

Token Classification

The analyzer determines the type of each token

7
New cards

Token Validation

The analyzer checks if each token is valid based on the rules

8
New cards

Output Generation

The analyzer generates the output of the lexical analysis process,

9
New cards

Tokens

can be individual words or symbols in a sentence

10
New cards

Shift Operator

What is the name of this symbol? >>, < <, > > >

11
New cards

Logical

What is the name of this symbol? &&, |, ||, !

12
New cards

Comparison

What is the name of this symbol? ==, <, >,

13
New cards

Preprocessor

What is the name of this symbol? #

14
New cards

Logical Specifier

What is the name of this symbol? &

15
New cards

Punctuation

What is the name of this symbol? , and ;

16
New cards

Special Assignment

What is the name of this symbol? +=, -=, *=

17
New cards

Assignment

What is the name of this symbol? =

18
New cards

Lexemes

are the sequence of characters matched by a pattern to form the token

19
New cards

Non-tokens

What are these? Comments, preprocessor directive, macros, blanks, tabs, and new lines

20
New cards

27

How many tokens are there in this code:

int main() { int x = 15, y = 40; printf("sum is:%d", x + y); return 0; }

21
New cards

Syntax analysis, or parsing

is the process of analyzing a string of symbols

22
New cards

Syntax errors

are identified and flagged in this phase and must be corrected

23
New cards

syntax analyzer or parser

takes the token streams from a lexical analyzer and analyzes them against production rules

24
New cards

parse tree or Abstract Syntax Tree

is the output of this phase, representing the program’s structure

25
New cards

context-free grammar

syntax analysis uses this to define the syntax rules of a programming language

26
New cards

Parsing, Error Handling, Symbol Table Creation

Steps in a parser

27
New cards

Derivation

It is the process of applying the rules of Context-Free Grammar to generate a sequence of tokens

28
New cards

left-most derivation

if the sentential form of an input is scanned and replaced from left to right

29
New cards

right-most derivation

if the input is scanned and replaced with production rules

30
New cards

Parse Tree

It is the graphical representation of a derivation

31
New cards

Left-associative operations

include Addition, Multiplication, Subtraction, and Division

32
New cards

Right-associative operations

such as exponentiation will have the following evaluation in the same expression as above

33
New cards

1

What number of priority is this operator: ** or Exponentiation Operator

34
New cards

2

What number of priority is this operator:
Unary + and -

35
New cards

3

What number of priority is this operator:
*, / , //, %

36
New cards

4

What number of priority is this operator:
Binary + and -

37
New cards

name

is a string of characters used to identify some entity in a program

38
New cards

Java and C#

have no length limit, with all characters being significant

39
New cards

C++

does not specify length limits, but implementors sometimes do

40
New cards

PHP

All variable names in this Programming Language must begin with a dollar ($) sign

41
New cards

snake case

Use lowercase words. Separate words by underscores to improve readability

42
New cards

Pascal case

Start each word with a capital letter. Do not separate words with underscores

43
New cards

Special Words

These are used to make programs more readable by naming actions to be performed

44
New cards

reserved keyword

is a special word that cannot be used as a name in a programming language

45
New cards

Variables

is an abstraction of a computer memory cell or collection of cells

46
New cards

Variable Names

These are used to identify and reference values that can change

47
New cards

Variable Address

It acts as a numerical identifier that allows the program to access and manipulate the data

48
New cards

Variable Type

determines the range of values the variable can store

49
New cards

Variable Value

the contents of the memory cell or cells associated with the variable

50
New cards

Variable Lifetime

the amount of time it exists and retains its value in memory

51
New cards

Variable Scope

the part of the program where a variable can be accessed

52
New cards

Binding

is an association between an attribute and an entity

53
New cards

Binding time

is the time a binding takes place

54
New cards

explicit declaration

is a statement in a program that lists variable names

55
New cards

implicit declaration

is a means of associating variables with types through default conventions

56
New cards

static bindings

Both Explicit and Implicit declaration create this to types

57
New cards

binding

occurs when a value is assigned to a variable

58
New cards

Dynamic type binding

happens when the variable type is not specified

59
New cards

scope

is the range of statements wherein the variable is visible

60
New cards

Global Scope

Variables declared in this type of scope are accessible from anywhere in the program

61
New cards

Local Scope

Variables declared inside a function or block of code are local variables and can only be accessed within that specific function or block

62
New cards

Enclosing Scope

This refers to the scope of a function that encloses another function

63
New cards

Built-in Scope

contains all the functions and variables that are built into Python

64
New cards

LEGB Rule

Python follows this rule when looking up variables

65
New cards

Local, Enclosing, Global, Built-in

LEGB Stands for?

66
New cards

global keyword

In Python, to modify a global variable inside a function, it must be declared with what keyword