FIT9131 PASS Week1 S2 2022

FIT9131 PASS Week1 S2 2022

1st - 3rd Grade

9 Qs

quiz-placeholder

Similar activities

วิทยาการคำนวณ ป.6 (สนบ)

วิทยาการคำนวณ ป.6 (สนบ)

KG - Professional Development

10 Qs

สอบ ป.2

สอบ ป.2

1st - 2nd Grade

10 Qs

Y4 - Scratch What do you know quiz?!?

Y4 - Scratch What do you know quiz?!?

3rd Grade

10 Qs

G2_MS Word Basic Parts

G2_MS Word Basic Parts

2nd Grade

10 Qs

Fun with text tool

Fun with text tool

3rd - 5th Grade

12 Qs

Lets Revise!

Lets Revise!

KG - 1st Grade

10 Qs

html

html

1st - 5th Grade

11 Qs

Mengenal Pivot Animator

Mengenal Pivot Animator

3rd Grade

10 Qs

FIT9131 PASS Week1 S2 2022

FIT9131 PASS Week1 S2 2022

Assessment

Quiz

Computers

1st - 3rd Grade

Hard

Created by

Shu Li

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

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

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Java's programming paradigm, characterized by the use of objects to solve problems, is called:

Object-based programming

Object-centred programming

Object-focused programming

Object-oriented programming

Answer explanation

Java is an object-oriented programming language. Everything in java is an object, all the program codes and data resides within classes and objects

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement is true regarding an object?

An object is a variable

An object is an instance of a class

An object is not an instance of a class

An object is a reference to an attribute

Answer explanation

A class is a template or blueprint from which objects are created. When you create an object, you are creating an 'instance' (result) of a class.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Fill the Gap: A Java _______translates _______to machine code.

Translator, bytecode

Virtual Machine, Java source code

Compiler, Java source code

Virtual Machine, bytecode

Answer explanation

Java Virtual Machine (JVM) has both compiler and interpreter. Which compiler compiles the code and generates bytecode and interpreter converts bytecode to machine code so the computer can understand.

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which is/are true about Compiler? (multiple answers possible)

Use batch processing.

Use interactive processing.

Translate entire code in one go.

Translate one instruction at a time.

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which is/are true about Interpreter? (multiple answers possible)

Use batch processing.

Use interactive processing.

Translate entire code in one go.

Translate one instruction at a time.

6.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

What could be the attribute of Student?

name

study

run

student id

7.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

What could be the behaviour of a student?

study

age

run

name

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In object oriented programming, mango is a/an ____ of class Fruits.

attribute

object

behaviour

another class

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the below is not part of the program execution process?

Writing

Checking

Compiling

Debugging

Answer explanation

Writing -> Compiling -> Debugging -> Executing