Preskoči na glavni sadržaj
Prijava
Sign up for FREE
arrow_back
Biblioteka

if quiz review

star
star
star
star
star
Posljednje ažuriranje about 7 years ago
6
Napomena autora:

Processing Review for if

1
Pitanje 1
1.

What is the output:

println (17/6);

1
Pitanje 2
2.

What is the output:

println(17%6)

1
1
1
1
Pitanje 3
3.

Select the legal variable names:

Pitanje 4
4.

Write a statement that will declare a float named myNum.

Pitanje 5
5.

What is the output?

int i=3;

if(i<10)

println("hello");

println("goodbye");

Pitanje 6
6.

int b=3, c=14;

if(b<10)

println("hello");

if(c<10)

println("howdy");

println("goodbye");