QUIZ Pass by value and reference

QUIZ Pass by value and reference

University

9 Qs

quiz-placeholder

Similar activities

Flutter Intermediate

Flutter Intermediate

KG - Professional Development

10 Qs

UNIT 5 Function Types

UNIT 5 Function Types

University

7 Qs

CSNP-04103 Chapter 6 - Functions

CSNP-04103 Chapter 6 - Functions

University

10 Qs

CSC404 Quiz 1

CSC404 Quiz 1

University

10 Qs

Weekly Contest #8 - TechXNinjas

Weekly Contest #8 - TechXNinjas

University

10 Qs

Function Quiz 3

Function Quiz 3

University

10 Qs

Functions C

Functions C

University

10 Qs

2.2 EOU Quiz

2.2 EOU Quiz

1st Grade - Professional Development

10 Qs

QUIZ Pass by value and reference

QUIZ Pass by value and reference

Assessment

Quiz

Computers

University

Medium

Created by

M.Syafiq Asyraff

Used 11+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

By passing parameters, functions tell other functions what data to process.

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int &x; this syntax is used when...

x is passed by value

x is passed by reference

x is declare outside functions

None of them

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement is correct about passing by value parameters?

It cannot change the actual parameter value

It can change the actual parameter value

Parameter is always in read-write mode

None of them

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

___________ is the identifier used in a method to stand for the value that is passed into the method by a caller

formal parameter

actual parameter

functions

none of them

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Actual parameters must be variables, is a condition of when parameters are passed by reference

true

false

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is Sentinel?

a different value that is used to indicate the end of data

A functions where argument will change as the parameter change

two or more arrays that contain related data

None of them

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

A counter controlled loop is the definite repetition loop as the number of repetitions is known before the loop begins executing.

true

false

8.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Parallel data concept is the shared index between parallel data can be used to detect the corresponding data of a certain data that share the same index in a table of data.

True

False

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a functions where argument will change as the parameter change?

Sentinel

Call by reference

Call by value

Function loops