Structura alternativă și operatori

Structura alternativă și operatori

6th - 8th Grade

8 Qs

quiz-placeholder

Similar activities

5.3. Запис математичних виразів на мові Python

5.3. Запис математичних виразів на мові Python

8th Grade

13 Qs

Latihan Format Cell

Latihan Format Cell

8th - 9th Grade

10 Qs

BÀI KIỂM TRA GIỮA KÌ 2 LỚP 5

BÀI KIỂM TRA GIỮA KÌ 2 LỚP 5

1st - 10th Grade

10 Qs

Scratch Programming- Introduction to game creation

Scratch Programming- Introduction to game creation

6th Grade

10 Qs

Excel Test Eins

Excel Test Eins

5th - 9th Grade

13 Qs

Recuperação Pensamento Computacional 2º semestre

Recuperação Pensamento Computacional 2º semestre

8th Grade

10 Qs

Programming with Karel the Dog 2

Programming with Karel the Dog 2

6th - 9th Grade

13 Qs

Programs and Variables in Code and Play

Programs and Variables in Code and Play

5th - 9th Grade

7 Qs

Structura alternativă și operatori

Structura alternativă și operatori

Assessment

Quiz

Computers

6th - 8th Grade

Practice Problem

Easy

Created by

Adina Boerescu

Used 12+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

0 sec • 1 pt

Media Image

Ce se afișează în urma executării următoarelor instrucțiuni?

int a=4,b=5;

if(a==b){ cout << "DA";}

else { cout << "NU";}

DA

NU

4

5

2.

MULTIPLE CHOICE QUESTION

0 sec • 1 pt

Pentru x=10 si y=20, afirmatia x>y este adevarata sau falsa?

adevarat

fals

3.

MULTIPLE CHOICE QUESTION

0 sec • 1 pt

Pentru x=10 si y=20, afirmatia (2*x) >= y este adevarata sau falsa?

adevarat

fals

4.

MULTIPLE CHOICE QUESTION

0 sec • 1 pt

Pentru x=15 si y=15, afirmatia x>=y este adevarata sau falsa?

adevarat

fals

5.

MULTIPLE CHOICE QUESTION

0 sec • 1 pt

Pentru x=15 si y=18, afirmatia x==y este adevarata sau falsa?

adevarat

fals

6.

MULTIPLE CHOICE QUESTION

0 sec • 1 pt

Cum afișăm pe ecran înălțimea unei cladiri, notată cu x?

double x;

cin>>x;

cout<<x;

int x;

7.

MULTIPLE CHOICE QUESTION

0 sec • 1 pt

Fie a și b două numere întregi. Alege codul care afișează pe ecran care dintre cele două numere este mai mare.

if (a >= b)

cout<<a;

else

cout<<b;

if (a < b)

cout<<a;

else

cout<<b;

if (a > b)

cout<<a;

else

cout<<b;

8.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

Ce se afișează pe ecran în urma execuției codului alăturat?

x

y

10

15