Instructiunile ciclice Pascal

Instructiunile ciclice Pascal

10th Grade

5 Qs

quiz-placeholder

Similar activities

Programming Basics

Programming Basics

10th Grade

10 Qs

Exploring Python: Input and Output Essentials

Exploring Python: Input and Output Essentials

9th Grade - University

10 Qs

Iteration Assessment

Iteration Assessment

9th - 10th Grade

10 Qs

Python_10 câu

Python_10 câu

10th Grade

10 Qs

Simple Easy Basic Lua Quiz

Simple Easy Basic Lua Quiz

4th Grade - Professional Development

10 Qs

1:1 Cart Procedures

1:1 Cart Procedures

KG - 12th Grade

10 Qs

test_10R_repet

test_10R_repet

10th Grade

10 Qs

Python lists & file operations

Python lists & file operations

10th 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