Wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

SS2425 WMAD S6+L17 Quiz Time

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

Which of the following HTML element is used for creating an unordered list?

a)

<ui>

b)

<i>

c)

<em>

d)

<ul>

2.

What is an element that does not have a closing tag called?

a)

Tag

b)

Empty element

c)

Closed element

d)

None of the above

3.

How do you write "Hello World" in an alert box?

a)

msg("Hello World");

b)

alertBox("Hello World");

c)

alert("Hello World");

d)

msgBox("Hello World");

4.

How do we destructure this object and get the age, name & height as separate variables from the following object?

const obj = {age: 25, name: "John Doe", height: "5.7"};

a)

const {age, name, height} = obj;

b)

const [age, name, height] = obj;

c)

const age, name, height = obj;

d)

const age = obj.age;

const name = obj.name;

const height = obj.height;

5.

Which of the following is used for concatenation in PHP?

a)

+ (plus)

b)

*(Asterisk)

c)

. (dot)

d)

append()

6.

Which of the following is the correct way to create an array in PHP?

a)

$season = array["summer" , "winter" , "spring" , "autumn"];

b)

$season = array("summer" , "winter" , "spring" , "autumn");

c)

$season = "summer" , "winter" , "spring" , "autumn";

d)

All of the above

7.

Which of the following is the feature of TypeScript?

a)

TypeScript is just JavaScript

b)

TypeScript supports other JS libraries

c)

TypeScript is portable

d)

All of the above

8.

_____ is similar to 'any', but a safer alternative when uncertain about the type.

a)

never

b)

similar

c)

unknown

9.

What does the term "bounded context" mean in relation to microservices?

a)

The logical domain represented by the data consumed and emitted by a microservice according to the data's purpose, structure and meaning

b)

The cloud provider's region where the microservice operates

c)

The common characteristics within a collection of entities in one or many business domains

d)

How a microservice uses memory

10.

Which of these personnel should be involved in managing APIs for microservices?

a)

Business leaders

b)

Enterprise architects

c)

Developers

d)

All of the above