wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

RIA Mock ver 3

Total questions: 40

Worksheet time: 20mins

Name
Class
Date
1.

Which type of sound begin to play as soon as enough data loaded in Animate?

a)

Stream Sound

b)

Event Sound

c)

MP3

d)

DX Sound

2.

Which of the following is the extension of Adobe Soundbooth?

a)

.asnd

b)

.wav

c)

.aiff

d)

.mp3

3.

Which video format options allows the file to have a smaller file size?

a)

External Video

b)

Embedded Video

c)

Rendered Video

d)

Flash Video

4.

Which are the 3 steps in creating a good folder structure?

a)

Brainstorm, Create, Share

b)

Plan, Analysis, Implementation

c)

Plan, Create, Share

d)

Brainstorm, Create, Implementation

5.

Which file format cannot be used as an export format to maintain transparency?

a)

PNG

b)

JPEG

c)

GIF

d)

TIFF

6.

Which folder structure is suitable for teams whose work centers around their clients?

a)

Department

b)

Client

c)

Project

d)

Company

7.

Which of the following statement is false?

a)

A variable is a container that stores data values.

b)

A string is a series of characters.

c)

A undefined variable has ZERO as a value.

d)

NaN means Not a Number but it’s technically a number datatype.

8.

Which type of statements are use to decide the flow of execution based on different conditions?

a)

if - else statement

b)

for statement

c)

do / while statement

d)

while statement

9.

Which of the following can be use to repeat a specific set of instructions for a number of times depending on the condition stated?

a)

Conditional Statement

b)

Loop Statement

c)

Stop Statement

d)

Exception Statement

10.

Which are the 6 primitive datatypes?

a)

Strings, Whole, Boolean, Undefined, NA, Symbol

b)

Strings, Numbers, Boolean, Undefined, Null, Symbol

c)

Strings, Numbers, Undefined, Var, Symbol, Object

d)

Strings, Numbers, Boolean, Object, Array, Symbol

11.

var X1 = 5;

var X2 = 6;

var result = X1 + X2;

var X3 = X1 * X2;

result = x3;

Based on the above following codes, what is X3?

a)

5

b)

6

c)

30

d)

11

12.

How many iterations are there for the following while loop?

var index = 10;

while (index <= 20) {

document.write("<br>The square of " + x + " is " + x*x );

x = x--;

}

a)

0

b)

10

c)

20

d)

Infinite

13.

What can be used to handle and verify, user input, user actions and browser actions in animate?

a)

Event Handlers

b)

Function

c)

Variable

d)

Event

14.

Which of the following best describe the block of codes that's designed to perform a particular task?

a)

Event Handlers

b)

Variable

c)

Function

d)

Event

15.

Which of the following allow the user to select one or more options from a set?

a)

Radio Buttons

b)

Checkboxes

c)

Toggles

d)

List Boxes

16.

Which of the following is an update message that announces something new for the user to see?

a)

Modal Windows

b)

Notification

c)

Progress Bar

d)

Accordion

17.

How many design principles are stated in RIA module?

a)

4

b)

5

c)

6

d)

7

18.

Which of the following is NOT part of the design principle?

a)

Visibility

b)

Matching

c)

Affordance

d)

Constraint

19.

Which design principle shows the user "what is it doing now?" after the user had perform an action?

a)

Visibility:

b)

Feedback:

c)

Affordance:

d)

Consistency:

20.

Which Interactive Application Development process would most likely deal with the analysis of needs, audience, content, system ?

a)

Planning

b)

Designing

c)

Developing

d)

Evaluating

21.

Which Interactive Application Development process would most likely deal with Project Authoring?

a)

Analysing

b)

Designing

c)

Developing

d)

Evaluating

22.

Which of the following options is NOT one of the 4 organizing structure used in Interactive Application Projects?

a)

Straight

b)

Hierarchical

c)

Non-linear

d)

Composite

23.

Which organization structure allows users to navigate along the branches of a tree structure based on the natural logic organisation of the content?

a)

Linear

b)

Hierarchical

c)

Non-linear

d)

Composite

24.

Which of the following statements BEST describe Stand-alone environment for deployment platforms?

a)

Does not include technical, licensing or financial dependencies on web services.

b)

Focus on hosting services

c)

Ability to scale up or down with resources demand

d)

Intended to provide a focus development environment

25.

In an interactive application development tea, which role would have solid understanding of learning theory and can apply that knowledge to the multimedia design?

a)

Subject Matter Expert

b)

Instructional Designer

c)

Content Specialist

d)

Project Manager

26.

Which of the following is NOT a step in debugging?

a)

Update the erroneous content

b)

Correct Syntax errors

c)

Correct Logic errors

d)

Improve existing codes to make program work better

27.

Which of the following is / are factors affecting Debugging?

a) Debugging skill of programmer.

b) The complexity of the system.

c) Programming language(s) used.

d) Available tools, such as debuggers.

a)

None of the above

b)

All of the above

c)

a, b and d only

d)

a, c and d only

28.

Which of the follow statements are true about console.log()?

a) If your browser supports debugging, you can use console.log() to display JavaScript values in the debugger window.

b) The console.log() method writes a message to the console.

c) Useful for testing purposes.

d) The syntax is "console.log(message);"

a)

All of the above

b)

a, b and c only

c)

b, c and d only

d)

None of the above

29.

Which of the following is/are true about the debugger keyword?

a) The debugger keyword stops the execution of JavaScript and calls the debugging function.

b) It has the same function as setting a breakpoint in the debugger.

c) If no debugging is available, the debugger statement has no effect.

d) the debugger is for use in animate only.

a)

a, b and c only

b)

All of the above

c)

None of the above

d)

b, c and d only

30.

Which category of errors does "Invalid variable name" and "Miss-used functions" fall under?

a)

Compile-Time Error

b)

Logic Error

c)

Run-Time Error

d)

Syntax Error

31.

Which of the following is also known as exceptions, which is detected only after or during program execution?

a)

Compile-Time Error

b)

Logic Error

c)

Run-Time Error

d)

Syntax Error

32.

Which type of error is usually the most difficult type of error to track down as it produces unintended or undesired output or other behaviour?

a)

Compile-Time Error

b)

Logic Error

c)

Run-Time Error

d)

Syntax Error

33.

Which of the test goes beyond functionality testing and combines testing for functionality as well as overall user experience?

a)

Functional Testing

b)

Usability Testing

c)

Interface Testing

d)

Performance Testing

34.

Which of the test ensures all interactions between the web server and application server interfaces are running smoothly?

a)

Functional Testing

b)

Usability Testing

c)

Interface Testing

d)

Performance Testing

35.

Which of the test can conduct Load test and Stress Test to determine the breaking point of the application?

a)

Functional Testing

b)

Usability Testing

c)

Interface Testing

d)

Performance Testing

36.

Which of the following is a constraint of online platforms?

a)

Hard Disk Space

b)

Central Processing Unit

c)

Random Access Memory

d)

Speed of the web host

37.

Why is there a need to optimize media content?

a) To enable the application to be running at the highest speed

b) To reduce unnecessary elements and space.

c) To enable the application to provide response in a short amount of time

d) To enable the application to function at it’s fastest possible speed

a)

None of the above

b)

All of the above

c)

a, c and d only

d)

b only

38.

Which of the following is NOT a method of optimizing media content?

a)

Convert graphic text into styled text

b)

Maximize cropping and minimize dimensions

c)

Use the right image format

d)

Maximize colours for palette-based formats

39.

var choice = prompt ("Enter choice", 55);

if ( choice > 40) {

document.write("Gold");

} else {

document.write("Silver");

}

What is the output when the following program is executed?

a)

Gold

b)

Silver

c)

40

d)

55

40.

Which of the following are the common media classifications?

a)

Image, Audio, Video, Text

b)

Interaction, static, dynamic

c)

GIF, JPEG, PNG

d)

HTML, CSS, Javascript