NEW
Font size
WorksheetsRIA Mock ver 3
Total questions: 40
Worksheet time: 20mins
Which type of sound begin to play as soon as enough data loaded in Animate?
Stream Sound
Event Sound
MP3
DX Sound
Which of the following is the extension of Adobe Soundbooth?
.asnd
.wav
.aiff
.mp3
Which video format options allows the file to have a smaller file size?
External Video
Embedded Video
Rendered Video
Flash Video
Which are the 3 steps in creating a good folder structure?
Brainstorm, Create, Share
Plan, Analysis, Implementation
Plan, Create, Share
Brainstorm, Create, Implementation
Which file format cannot be used as an export format to maintain transparency?
PNG
JPEG
GIF
TIFF
Which folder structure is suitable for teams whose work centers around their clients?
Department
Client
Project
Company
Which of the following statement is false?
A variable is a container that stores data values.
A string is a series of characters.
A undefined variable has ZERO as a value.
NaN means Not a Number but it’s technically a number datatype.
Which type of statements are use to decide the flow of execution based on different conditions?
if - else statement
for statement
do / while statement
while statement
Which of the following can be use to repeat a specific set of instructions for a number of times depending on the condition stated?
Conditional Statement
Loop Statement
Stop Statement
Exception Statement
Which are the 6 primitive datatypes?
Strings, Whole, Boolean, Undefined, NA, Symbol
Strings, Numbers, Boolean, Undefined, Null, Symbol
Strings, Numbers, Undefined, Var, Symbol, Object
Strings, Numbers, Boolean, Object, Array, Symbol
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?
5
6
30
11
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--;
}
0
10
20
Infinite
What can be used to handle and verify, user input, user actions and browser actions in animate?
Event Handlers
Function
Variable
Event
Which of the following best describe the block of codes that's designed to perform a particular task?
Event Handlers
Variable
Function
Event
Which of the following allow the user to select one or more options from a set?
Radio Buttons
Checkboxes
Toggles
List Boxes
Which of the following is an update message that announces something new for the user to see?
Modal Windows
Notification
Progress Bar
Accordion
How many design principles are stated in RIA module?
4
5
6
7
Which of the following is NOT part of the design principle?
Visibility
Matching
Affordance
Constraint
Which design principle shows the user "what is it doing now?" after the user had perform an action?
Visibility:
Feedback:
Affordance:
Consistency:
Which Interactive Application Development process would most likely deal with the analysis of needs, audience, content, system ?
Planning
Designing
Developing
Evaluating
Which Interactive Application Development process would most likely deal with Project Authoring?
Analysing
Designing
Developing
Evaluating
Which of the following options is NOT one of the 4 organizing structure used in Interactive Application Projects?
Straight
Hierarchical
Non-linear
Composite
Which organization structure allows users to navigate along the branches of a tree structure based on the natural logic organisation of the content?
Linear
Hierarchical
Non-linear
Composite
Which of the following statements BEST describe Stand-alone environment for deployment platforms?
Does not include technical, licensing or financial dependencies on web services.
Focus on hosting services
Ability to scale up or down with resources demand
Intended to provide a focus development environment
In an interactive application development tea, which role would have solid understanding of learning theory and can apply that knowledge to the multimedia design?
Subject Matter Expert
Instructional Designer
Content Specialist
Project Manager
Which of the following is NOT a step in debugging?
Update the erroneous content
Correct Syntax errors
Correct Logic errors
Improve existing codes to make program work better
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.
None of the above
All of the above
a, b and d only
a, c and d only
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);"
All of the above
a, b and c only
b, c and d only
None of the above
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, b and c only
All of the above
None of the above
b, c and d only
Which category of errors does "Invalid variable name" and "Miss-used functions" fall under?
Compile-Time Error
Logic Error
Run-Time Error
Syntax Error
Which of the following is also known as exceptions, which is detected only after or during program execution?
Compile-Time Error
Logic Error
Run-Time Error
Syntax Error
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?
Compile-Time Error
Logic Error
Run-Time Error
Syntax Error
Which of the test goes beyond functionality testing and combines testing for functionality as well as overall user experience?
Functional Testing
Usability Testing
Interface Testing
Performance Testing
Which of the test ensures all interactions between the web server and application server interfaces are running smoothly?
Functional Testing
Usability Testing
Interface Testing
Performance Testing
Which of the test can conduct Load test and Stress Test to determine the breaking point of the application?
Functional Testing
Usability Testing
Interface Testing
Performance Testing
Which of the following is a constraint of online platforms?
Hard Disk Space
Central Processing Unit
Random Access Memory
Speed of the web host
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
None of the above
All of the above
a, c and d only
b only
Which of the following is NOT a method of optimizing media content?
Convert graphic text into styled text
Maximize cropping and minimize dimensions
Use the right image format
Maximize colours for palette-based formats
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?
Gold
Silver
40
55
Which of the following are the common media classifications?
Image, Audio, Video, Text
Interaction, static, dynamic
GIF, JPEG, PNG
HTML, CSS, Javascript
