BA340 L5

BA340 L5

3rd Grade

8 Qs

quiz-placeholder

Similar activities

Programación

Programación

1st - 6th Grade

11 Qs

C Beginner Test

C Beginner Test

KG - Professional Development

5 Qs

BA340 Lec4

BA340 Lec4

3rd Grade

8 Qs

cadenas en c++

cadenas en c++

1st - 10th Grade

10 Qs

MCA-Quiz-2

MCA-Quiz-2

1st - 3rd Grade

11 Qs

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

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

3rd Grade - University

10 Qs

LTP - 2018-2 (1 e 2 semestre)

LTP - 2018-2 (1 e 2 semestre)

1st - 10th Grade

13 Qs

Pengantar C/C++/Java

Pengantar C/C++/Java

1st - 12th Grade

9 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: