C 프로그래밍 퀴즈

C 프로그래밍 퀴즈

8th Grade

10 Qs

quiz-placeholder

Similar activities

Programming

Programming

1st - 10th Grade

10 Qs

C++ Functions

C++ Functions

6th - 8th Grade

11 Qs

Programming in Java

Programming in Java

8th Grade

10 Qs

Year 7 Python Lesson 1 Recap

Year 7 Python Lesson 1 Recap

8th Grade

10 Qs

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

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

6th Grade - University

10 Qs

컴퓨터 기본상식 문제

컴퓨터 기본상식 문제

5th Grade - University

10 Qs

kpop

kpop

KG - Professional Development

10 Qs

앱인벤터 기초 복습 퀴즈

앱인벤터 기초 복습 퀴즈

2nd - 12th Grade

15 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?