1 Flashcards

1
Q

Start and end tag are also called ______and________

A

Opening /closing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

In what year that W3C Recommend the implementation of HTML 5.2?

A

2017

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The_______ tag is used inside the <head> tag to mention the document title

A

<title>
</title>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

It is java function to combined to strings.

A

Concat

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

It is a java function to combined to strings.

A

Concat()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Its is a data structures that allow you to store multiple values of the same data type in a single variable

A

Array

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Initializing an array means assigning values to its________

A

Element

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Widely use in java program that constrains a sequence of characters

A

String

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

It refers to the position of a certain object in array.

A

Index

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

String are more commonly concatenated with the________operator

A

+

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Every array elements when created needs a set of__________specified

A

Length

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Accessing to elements of array are done in_________

A

Constant time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

It is a simple collection of the same data type arranged in a linear order .

A

Single dimentional

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Is a collection of element organized in rows and columns,forming a grid-like structure

A

Two dimensional

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

A set of array to more than two dimensions.

A

Multi dimensional

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

One accessor method that you can use with strings is the_______method,which returns the number of characters contained in string object.

A

Length()

17
Q

This tag defines the document type and HTML version

A

<!DOCKTYPE>

18
Q

________are similar to keywords,which specify how a web browser will format and display content

A

HTML tag

19
Q

It tests the condition before executing the loop body

A

While loop

20
Q

Terminate the loop or switch statement

A
21
Q

Like a while statement except that it tests the condition at the end of the loop body

A

Do while loop

22
Q

It can be an array variable or method call that returns an array

A

Expression

23
Q

It can be an array variable or method call that returns an array

A

Expression

24
Q

It is a function to compare this number object to the arguments

A

ToCompare To()

25
Q

Consists of a boolean expression followed by one or more statements

A

If statement

26
Q

A______statement allows us to execute a statement or group of statements multiple times

A

Loop

27
Q

Execute a sequence of statement multiple times and abbreviates the code that manages the loop variable.

A

For loop

28
Q

Causes the loop to skip the remainder of its body and immediately retest its condition prior to reiterating.

A

Continue statement

29
Q

You can use one if or else if statement inside another if or else if statement(s)

A

Nested if statement

30
Q

Types of loop control

A

While loop
Do while loop
For loop

31
Q

The variable will be available within the for block and its value would be the same as the current array element

A

Declaration

32
Q

4 Types of decision marking

A

If statement
If else statement
Nested if statement
Switch statement

33
Q

Give at least 4 Number methods

A

XxxValue()
ToString()
Equal()
Compare()