BA345 L

BA345 L

4th Grade

8 Qs

quiz-placeholder

Similar activities

ICT Quiz P4 (Unit 2)

ICT Quiz P4 (Unit 2)

4th Grade

10 Qs

LTP - 2018-2 (1 e 2 semestre)

LTP - 2018-2 (1 e 2 semestre)

1st - 10th Grade

13 Qs

Chromebook Rules at SES

Chromebook Rules at SES

2nd - 5th Grade

13 Qs

Postest Struktur data

Postest Struktur data

1st - 5th Grade

10 Qs

SAMPLE QUIZ

SAMPLE QUIZ

4th Grade

10 Qs

Module 2: Strangers and Trust

Module 2: Strangers and Trust

3rd - 5th Grade

10 Qs

Be Internet Awesome! Smart!

Be Internet Awesome! Smart!

3rd - 5th Grade

10 Qs

AUP

AUP

3rd - 5th Grade

12 Qs

BA345 L

BA345 L

Assessment

Quiz

Computers

4th Grade

Medium

Created by

Oyungerel Delger

Used 6+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Үр дүнг гарга

10

20

0

алдаатай

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Үр дүнг гарга.

12

123

321

23

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Класс удамшуулахад ямар түлхүүр үг ашигладаг вэ?

super

extends

this

extent

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

class A

{

int i;

void display()

{

System.out.println(i);

}

}

class B extends A

{

int j;

void display()

{

System.out.println(j);

}

}

class inheritance_demo

{

public static void main(String args[])

{

B obj = new B();

obj.i=1;

obj.j=2;

obj.display();

}

}

0

1

2

3

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

class A

{

int i;

}

class B extends A

{

int j;

void display()

{

super.i = j + 1;

System.out.println(j + " " + i);

}

}

class inheritance

{

public static void main(String args[])

{

B obj = new B();

obj.i=1;

obj.j=2;

obj.display();

}

}

2 2

2 3

3 3

3 2

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

public class Vehicle {

public void move() {

System.out.println("The vehicle moves"); } }

public class Car extends Vehicle {

public void move() { System.out.println("The car moves"); } }

public class Main { public static void main(String[] args) {

Vehicle vehicle = new Car(); vehicle.move(); } }

The vehicle moves

The car moves

The vehicle moves

The car moves

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

class Parent {

String name = "parent";

String message() { return "from parent"; } }

class Child extends Parent {

String name = "child";

String message() { return "from child"; } }

public class Main { public static void main(String[] args) {

Parent p = new Child();

System.out.println(p.name + " " + p.message()); } }

"parent from parent" 

"child from child" 

"parent from child" 

"child from parent" 

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Class зарладаг түлхүүр үг

new

define

class