BA340 L5

BA340 L5

3rd Grade

8 Qs

quiz-placeholder

Similar activities

Pointer

Pointer

1st - 3rd Grade

8 Qs

Basic of C

Basic of C

1st - 3rd Grade

10 Qs

Базові оператори мови С

Базові оператори мови С

1st - 5th Grade

10 Qs

คำสั่งวนรอบภาษาซี (post-test)

คำสั่งวนรอบภาษาซี (post-test)

3rd Grade - University

10 Qs

Dasar C++

Dasar C++

KG - 3rd Grade

10 Qs

C# lesson10

C# lesson10

1st - 10th Grade

10 Qs

CS50x.ni Y24C1 - 1S03

CS50x.ni Y24C1 - 1S03

3rd Grade

10 Qs

LENGUAJE DE PROGRAMACIÓN

LENGUAJE DE PROGRAMACIÓN

1st - 3rd Grade

10 Qs

BA340 L5

BA340 L5

Assessment

Quiz

Computers

3rd Grade

Medium

Created by

Oyungerel Delger

Used 3+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

#include <stdio.h>

main(){

int a=2569,b;

b=a%1000/100;

printf("%d",b);}

2

5

6

9

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

#include <stdio.h>

main(){

int a=25699,b;

b=a%1000/100;

printf("%d",b);}

2

5

6

9

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

#include <stdio.h>

main(){

int a=25699,b;

b=a%1000/10;

printf("%d",b);}

5

56

69

99

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

#include <stdio.h>

main(){

int x=2506,y;

y=x/100%10;

switch(y){

case 2: printf( "One" );

case 5: printf( "Zero" );

case 0: printf( "Hello World" );

case 6: printf( "Big World" );}}

One

Zero

Hello World

ZeroHello WorldBig World

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

#include <stdio.h>

main(){

int s=1287,p;

p=(s%1000/10)*100+4;

printf("%d",p);}

1024

204

2804

704

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Логик AND үйлдлийг хэрхэн тэмдэглэдэг вэ?

And

&&

||

|

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

#include <stdio.h>

main(){

int a = 3, b = 5;

int t = a;

a = b;

b = t;

printf("%d %d", a, b);}

3 5

3 3

5 5

5 3

8.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

int a=5;

switch(a){ бол

Case-ийн зөв бичиглэлийг сонго.

case "5":

case: "5"

case: 5

case 5: