Q4 PGAS SDF 22-25 C1

Q4 PGAS SDF 22-25 C1

12th Grade

9 Qs

quiz-placeholder

Similar activities

Python Testing

Python Testing

9th - 12th Grade

10 Qs

XII RPL

XII RPL

11th - 12th Grade

12 Qs

Break the fear

Break the fear

11th - 12th Grade

10 Qs

RDBMS 2

RDBMS 2

12th Grade

10 Qs

Coding and Robotics

Coding and Robotics

8th - 12th Grade

12 Qs

CSP 1.3.4 1.3.5 Branching and Input/Strings

CSP 1.3.4 1.3.5 Branching and Input/Strings

10th - 12th Grade

10 Qs

Python Debugging

Python Debugging

9th - 12th Grade

8 Qs

Unit 6 Review

Unit 6 Review

9th - 12th Grade

11 Qs

Q4 PGAS SDF 22-25 C1

Q4 PGAS SDF 22-25 C1

Assessment

Quiz

Computers

12th Grade

Easy

Created by

Rebecca Sims

Used 2+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

____________ is a programming technique that causes a method to call itself in order to compute a result.

Procedure

Recursion

Base

.NET

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The _________________ framework supports standard exception handling to raise and handle runtime errors.

Procedure

Recursion

Base

.NET

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

This is the part that specifies the terminating condition and doesn't call the method again.

base case

recursive case

method

procedure

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

this is the part that moves the algorithm toward the base case.

flex case

recursive case

method

procedure

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

An ____________ is an error condition that occurs during the execution of a program.

error

instance

exception

alias

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To handle exceptions, place the code that throws the exception inside a _____________ and place the code that handles the exceptions inside a _______________.

catch block;

try block;

parameter;

function

function;

parameter

try block;

catch block

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the ExceptionTest method, it is ___________ to change the order of the two catch blocks.

okay

incorrect

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In order to avoid compilation errors, the more specific exceptions need to be listed where?

anywhere is fine

after the generic exceptions

before the generic exceptions

at the end

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The finally block is not always executed regardless of whether an exception is thrown.

true

false