C 프로그래밍 퀴즈

C 프로그래밍 퀴즈

8th Grade

10 Qs

quiz-placeholder

Similar activities

Python for Class 7

Python for Class 7

7th - 8th Grade

11 Qs

6반 1.1.2. 1.1.3. 종합퀴즈

6반 1.1.2. 1.1.3. 종합퀴즈

8th Grade

12 Qs

디지털윤리_생성형AI(고)

디지털윤리_생성형AI(고)

6th Grade - University

10 Qs

데이터의 기초 형성평가

데이터의 기초 형성평가

7th Grade - University

10 Qs

스크래치기초_BNC

스크래치기초_BNC

6th - 8th Grade

10 Qs

정보_알고리즘 퀴즈

정보_알고리즘 퀴즈

6th - 8th Grade

10 Qs

Programming

Programming

1st - 10th Grade

10 Qs

алгоритм python

алгоритм python

6th - 8th Grade

12 Qs

C 프로그래밍 퀴즈

C 프로그래밍 퀴즈

Assessment

Quiz

Computers

8th Grade

Medium

Created by

강민정 강민정

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

int a = 12, b = 5;

int result = a % b;

다음 C 코드의 출력 값은 무엇인가요?

1

2

3

4

2.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

다음 중 관계 연산자가 아닌 것은 무엇인가요?

==

!=

>

&&

3.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

int x = 7, y = 2;

int result = (x >= y);

다음 코드의 결과로 result의 값은 무엇인가요?

0

1

7

2

4.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

int a = 0, b = 1;

int result = !(a && b);

다음 논리 연산의 결과는 무엇인가요?

0

1

-1

2

5.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

다음 중 a = 10일 때, a의 값을 12로 만드는 올바른 복합 연산자는?

a += 2;

a -= 2;

a *= 2;

a /= 2;

6.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

int a = 4;

int result = a++;

다음 코드에서 result의 값은 무엇인가요?

4

5

3

6

7.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

int b = 3;

int c = --b;

다음 코드에서 c의 값은 무엇인가요?

2

3

4

1

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?