0% found this document useful (0 votes)
66 views2 pages

Sample Questions For ITT

This document contains sample questions from an Information and Telecommunication Technology exam. The exam is divided into two parts: multiple choice questions and constructed response questions. The multiple choice section contains two sample questions, one about the risks of different SQL statements and another about identifying the programming technique used in a recursive function. The constructed response section asks examinees to provide written responses of varying lengths (up to two pages for short responses and four pages for long responses) to scenarios relating to relevant IT situations. A sample short response question asks about Software-Defined Networking and how it differs from traditional network architectures.

Uploaded by

Asere Jazmin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
66 views2 pages

Sample Questions For ITT

This document contains sample questions from an Information and Telecommunication Technology exam. The exam is divided into two parts: multiple choice questions and constructed response questions. The multiple choice section contains two sample questions, one about the risks of different SQL statements and another about identifying the programming technique used in a recursive function. The constructed response section asks examinees to provide written responses of varying lengths (up to two pages for short responses and four pages for long responses) to scenarios relating to relevant IT situations. A sample short response question asks about Software-Defined Networking and how it differs from traditional network architectures.

Uploaded by

Asere Jazmin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

SAMPLE QUESTIONS Information and Telecommunication Technology

Part 1: Multiple Choice Items


Sample 1. When issuing a SQL statement, which of the below has the highest risk?
a. Not specifically stating the columns to return
b. Not validating user supplied data
c. Not limiting the number of rows to return
d. Not using query optimization

Sample 2. What program technique does the following function use?


public static long Factorial (long number)
{
if (number <= 1)
return 1;
else
{
return number * Factorial (number - 1);
}
}

a. Recursion
b. Regression
c. Concurrency
d. Iteration

Part 2: Constructed Response Items


Part 2 consists of long and short constructed response items.
Long constructed response items: The examinee is presented with detailed information (narrative
and/or data, charts, etc.) about a relevant situation and is asked to provide a written response of up
to four pages in the answer booklet.
Short constructed response items: The examinee is provided with a brief overview of a relevant
situation and is asked to provide a written response of up to two pages in the answer booklet.

Sample short constructed response item:


What is Software-Defined Networking. Describe three ways in which it is different from traditional
network architecture?
SAMPLE QUESTIONS Information and Telecommunication Technology

Premire partie: questions choix multiples


Exemple 1. Quelle pratique est la plus risque lors de lutilisation dune instruction SQL?
a. Ne pas indiquer prcisment les colonnes renvoyer
b. Ne pas valider les donnes fournies par lusager
c. Ne pas limiter le nombre de ranges renvoyer
d. Ne pas utiliser loptimisation de requtes

Exemple 2. Sur quelle technique de programmation repose la fonction ci-aprs?


public static long Factorial (long number)
{
if (number <= 1)
return 1;
else
{
return number * Factorial (number - 1);
}
}
a. Rcursivit
b. Rgression
c. Simultanit
d. Itration

Deuxime partie: questions rponses construites

La deuxime partie se compose de questions auxquelles les candiat-e-s doivent formuler des
rponses qui doivent tre longues ou courtes.

Les questions qui exigent des rponses longues: des informations dtailles sont fournies au- la
candidat-e (rcit et/ou donnes, graphiques etc.) propos dune situation prcise et le-la candidat-e
doit formuler une rponse crite pouvant aller jusqu 4 pages.

Les questions qui exigent des rponses courtes: une situation est brivement prsente au- la
candidat-e qui doit formuler une rponse crite pouvant aller jusqu deux pages.

Exemples de questions exigeant des rponse courtes:


Quappelle-t-on rseau dfini par logiciel (Software-Defined Networking)? Dcrivez trois des
aspects par lesquels cela diffre dune architecture de rseau classique.

You might also like