Instructiunile ciclice Pascal

Instructiunile ciclice Pascal

10th Grade

5 Qs

quiz-placeholder

Similar activities

Instrucțiunile for,while și repeat

Instrucțiunile for,while și repeat

10th Grade

10 Qs

Programming - Iteration, Basic Programming Constructs & Loop

Programming - Iteration, Basic Programming Constructs & Loop

2nd - 12th Grade

10 Qs

Repeat

Repeat

10th Grade

10 Qs

Programming - Selection in an Algorithm

Programming - Selection in an Algorithm

1st - 11th Grade

10 Qs

REVIEW QUIZ FOR & WHILE LOOP

REVIEW QUIZ FOR & WHILE LOOP

10th Grade

10 Qs

acTIC - Competència 6.2 – Treball bàsic amb fulls de càlcul

acTIC - Competència 6.2 – Treball bàsic amb fulls de càlcul

10th Grade

10 Qs

Đề 1

Đề 1

9th - 12th Grade

10 Qs

Keyboarding

Keyboarding

5th - 12th Grade

10 Qs

Instructiunile ciclice Pascal

Instructiunile ciclice Pascal

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Valentina Stratulat

Used 16+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Selectați instrucțiunile ciclice

for .... do....

if... then... else...

while .... do ....

case ....end;

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Instrucțiunea for i:=1 to 1 do s:=s+i; se va executa de 2 ori

false

true

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Instrucțiunea for se folosește în cazul cînd este cunoscut numărul de repetari

true

false

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

După do pot fi scrise mai mult de o instrucțiune

true

false

5.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Algoritmul va afișa :

x:=3; i:=0;

While x <= 10 do begin x:=x+5; i:=i+1; end

Writeln (x,’ ’,i);

13 2

2 13

8 0