Sunteți pe pagina 1din 104

This is used to specify as present or absent one or more items

Select one:
a. <input type=“text”>
b. <input type=“radio”>
c. <input type=“checkbox”>
d. <textarea>
Feedback

Your answer is correct.

Question 2
Incorrect
Mark 0.00 out of 1.00

Flag question

Question text

This is used to choose from a predefined list a single option

Select one:
a. <input type=“text”>
b. <input type=“checkbox”>
c. <textarea>
d. <input type=“radio”>
Feedback

Your answer is incorrect.

Question 3
Correct
Mark 1.00 out of 1.00

Flag question

Question text
The background color property is used to set the element's background image

Select one:
True
False

Question 4
Correct
Mark 1.00 out of 1.00

Flag question

Question text

If you are using CSS, there is no need to write attributes of HTML tags every time. Just write
the CSS rule for a tag and apply it to all occurrences of the tag.

Select one:
a. Superior styles to HTML
b. Easy maintenance
c. CSS saves time
d. Pages load faster
Feedback

Your answer is correct.

Question 5
Correct
Mark 1.00 out of 1.00

Flag question

Question text

!DOCTYPE is case sensitive”.

Select one:
True
False

Question 6
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The word-spacing property is used to add or remove space between the letters making up a
word.

Select one:
True
False

Question 7
Correct
Mark 1.00 out of 1.00

Flag question

Question text

CSS stands for __________.

Select one:
a. Cascade Style Sheet
b. Cascade Sheets Style
c. Cascading Style Sheets
d. Color Style Sheets
Feedback

Your answer is correct.


Question 8
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Use the text-indent property to indent a paragraph's content.

Select one:
True
False

Question 9
Correct
Mark 1.00 out of 1.00

Flag question

Question text

You can not write a form on the web and send it to end-users for download as a Fillable PDF
and either upload, email or submit form information.

Select one:
True
False

Question 10
Correct
Mark 1.00 out of 1.00

Flag question

Question text
Simply change the style to make a global change, and it will automatically update all elemen
ts on all web pages.

Select one:
a. Easy maintenance
b. Pages load faster
c. CSS saves time
d. Superior styles to HTML
Feedback

Your answer is correct.

Question 11
Correct
Mark 1.00 out of 1.00

Flag question

Question text

A key feature of web pages is the ability to navigate between pages, positions within a page
and other locations.

Select one:
True
False

Question 12
Correct
Mark 1.00 out of 1.00

Flag question

Question text

_________ selectors are used to specify a group of elements.

Select one:
a. class
b. id
c. both class and tag
d. tag
Feedback

Your answer is correct.

Question 13
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The font-variant property is used to increase or decrease the appearance of a font bold or
light.

Select one:
True
False

Question 14
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Anchors are often used to enable readers to navigate back to the top of the page or to a loc
ation further down the page.

Select one:
True
False

Question 15
Correct
Mark 1.00 out of 1.00

Flag question

Question text

CSS has a much wider range of attributes than HTML, so you can look much better than HT
ML attributes.

Select one:
a. Global web standards
b. Multiple Device Compatibility
c. Superior styles to HTML
d. CSS saves time
Feedback

Your answer is correct.

Question 16
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The background repeat property is used to set an element's background image.

Select one:
True
False

Question 17
Correct
Mark 1.00 out of 1.00

Flag question

Question text

This is used for text and numerical entries

Select one:
a. <input type=“checkbox”>
b. <input type=“text”>
c. <input type=“radio”>
d. <input type=“checkbox”>
Feedback

Your answer is correct.

Question 18
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which selector is used to specify a rule to bind a particular unique element?

Select one:
a. id
b. both class and tag
c. class
d. tag
Feedback

Your answer is correct.


Question 19
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Tag used for Anchor, or link to another page, another location on a page, or another site.
Accompanied by the name of the link as “href,” e.g., <a href=”filename.html”>

Select one:
a. <audio>
b. <a>
c. <table>
d. <td>
Feedback

Your answer is correct.

Question 20
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The text-transform property enables the message shadow to be placed around a text.

Select one:
True
False

Animations involving transition between two states are often referred to as implicit
transitions since the user explicitly specifies the states between the start and the final states.
Select one:
True
False

Question 2
Correct
Mark 1.00 out of 1.00

Flag question

Question text

This identify transition points in the action as a concept borrowed from film animation.

Select one:
a. Layers
b. Keyframes
c. Stage
d. Drawing
Feedback

Your answer is correct.

Question 3
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following property defines when the transition will start and it allows a
transition to begin execution some some period of time from when it is applied?

Select one:
a. transition-delay
b. transform-delay
c. transform-duration
d. none of the mentioned
Feedback

Your answer is correct.

Question 4
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following selector is used to select and style when you place mouse over it?

Select one:
a. focus
b. hover
c. mouse
d. all of the mentioned
Feedback

Your answer is correct.

Question 5
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Set the time it takes for an animation to complete a loop.

Select one:
a. animation-timing-function
b. animation-name
c. animation-duration
d. animation-delay
Feedback

Your answer is correct.

Question 6
Correct
Mark 1.00 out of 1.00

Flag question

Question text

A language of control allows users to control the animation and interact with it. Interactions
involve starting and stopping the animation and moving in the timeline to specified points.

Select one:
a. Drawing
b. Layers
c. Scripting language
d. Stage
Feedback

Your answer is correct.

Question 7
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The syntax for Animation with jQuery


(selector).animate({styles},speed,easing,callback)
Select one:
True
False

Question 8
Correct
Mark 1.00 out of 1.00

Flag question

Question text

What does this code do?


Code:
@media only screen and (max-width: 500px) {
body {
background-color: lightblue;
}
}

Select one:
a. The background color will change to lightblue
b. Nothing happens
c. If the browser window is larger than 500px, the background color will change to lightblue:
d. If the browser window is smaller than 500px, the background color will change to
lightblue:
Feedback

Your answer is correct.

Question 9
Correct
Mark 1.00 out of 1.00
Flag question

Question text

A CSS animation can be triggered by applying the animation styles to the: hover or: active
states when the reader has the mouse over the object or when the user clicks on the object.

Select one:
True
False

Question 10
Incorrect
Mark 0.00 out of 1.00

Flag question

Question text

What should be written in the blank of the code for resizing elements in Responsive Web
Design with Transitions
Code:
body { background-image: url(fog.jpg); background-size: cover;
background-repeat: no-repeat; color: #fff; font-family: Avenir, Arial, sans-serif;
}
h1 { font-family: 'Calluna Sans', Arial, sans-serif; text-align: center;
font-size: 10rem; margin: 8rem auto;
}
h1 { font-family: 'Calluna Sans', Arial, sans-serif;
text-align: center; font-size: 10rem; margin: 8rem auto; transition: 1s font-size
linear;
}
______________ and (max-width: 1100px) {
h1 { font-size: 8rem; }

Select one:
a. transform
b. @media
c. @media screen
d. div
Feedback

Your answer is incorrect.

Question 11
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following property defines the length of time that a transition takes?

Select one:
a. transition-duration

b. transform-duration
c. transition-property
d. transition
Feedback

Your answer is correct.

Question 12
Incorrect
Mark 0.00 out of 1.00

Flag question

Question text
Which of the following css propery define the properties that will be animated in an
animation rule?

Select one:
a. animation-origin
b. @keyframes
c. animation
d. transform
Feedback

Your answer is incorrect.

Question 13
Correct
Mark 1.00 out of 1.00

Flag question

Question text

CSS transitions allow you to decide which properties to animate when the animation begins,
how long the transition will last and how the transition will continue

Select one:
True
False

Question 14
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Sets the number of times the animation will repeat; to repeat the animation forever, you can
specify infinite.
Select one:
a. animation-fill-mode
b. animation-delay
c. animation-iteration-count
d. animation-direction
Feedback

Your answer is correct.

Question 15
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following property specifies the speed curve of the transition effect?

Select one:
a. transition-delay
b. transition-duration
c. transition-timing-function
d. transition
Feedback

Your answer is correct.

Question 16
Correct
Mark 1.00 out of 1.00

Flag question
Question text

The shorthand transition property is used to manage CSS animations.

Select one:
True
False

Question 17
Correct
Mark 1.00 out of 1.00

Flag question

Question text

elapsedTime is a float showing the number of seconds the transition was going on at the
time the event was going on.

Select one:
True
False

Question 18
Correct
Mark 1.00 out of 1.00

Flag question

Question text

It is convenient to place each object on a separate layer to organize and work easily with
multiple moving objects.

Select one:
a. Keyframes
b. Layers
c. Stages
d. Scripting language
Feedback

Your answer is correct.

Question 19
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Configures whether or not the animation should alternate direction and repeat itself on
each run through the sequence or reset to the starting point.

Select one:
a. animation-name
b. animation-fill-mode
c. animation-direction
d. animation-play-state
Feedback

Your answer is correct.

Question 20
Correct
Mark 1.00 out of 1.00

Flag question

Question text

propertyName is a string that indicates the name of the CSS property that has completed its
transition.
Select one:
True
False

he text-transform property enables the message shadow to be placed around a text.

Select one:
True
False

Question 2
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Duplicate pixels from another area

Select one:
a. Spot Healing Brush Tool
b. Healing Brush Tool
c. Retouch through a Layer
d. Clone Stamp Tool
Feedback

Your answer is correct.

Question 3
Correct
Mark 1.00 out of 1.00
Flag question

Question text

Which of the following Color Format can also be defined using the keyword rgb, followed
by three numbers between 0 and 255, contained in parentheses and separated by commas,
with no spaces between them?

Select one:
a. RGBa Color
b. HSLa Color
c. HSL Color
d. RGB Color
Feedback

Your answer is correct.

Question 4
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The drawback of adobe photoshop is images that are already produced can not be easily
modified as there are minimal filters and image editing software at your fingertips

Select one:
True
False
Question 5
Correct
Mark 1.00 out of 1.00

Flag question

Question text

One of the drawbacks of photoshop is you can have complete control of your projects as
you can edit your pixel-by-pixel graphics

Select one:
True
False

Question 6
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Adobe Photoshop is a popular program for vector-based editing to create icons,


illustrations, cartoons, and fonts.

Select one:
True
False

Question 7
Correct
Mark 1.00 out of 1.00

Flag question

Question text
Moves selected pixels and replaces them automatically

Select one:
a. Content-Aware Fill
b. Healing Brush Tool
c. Content-Aware Move
d. Content-Aware Scale
Feedback

Your answer is correct.

Question 8
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The white-space property governs text flow and formatting.

Select one:
True
False

Question 9
Correct
Mark 1.00 out of 1.00

Flag question

Question text

_________ selectors are used to specify a group of elements.

Select one:
a. both class and tag
b. class
c. tag
d. id
Feedback

Your answer is correct.

Question 10
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Use the __________________ property to set the object border length.

Select one:
a. height
b. border
c. width
d. -moz-opacity
Feedback

Your answer is correct.

Question 11
Correct
Mark 1.00 out of 1.00

Flag question

Question text

This is critical and can have a significant impact on the final file size

Select one:
a. Image Size
b. Image Type
c. Image Quality
d. Dimensions
Feedback

Your answer is correct.

Question 12
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Changes the visual properties of the layer

Select one:
a. Layer Mask
b. Layer Effect
c. Layer
d. Adjustment Layer
Feedback

Your answer is correct.

Question 13
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Use the text-indent property to indent a paragraph's content.

Select one:
True
False

Question 14
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Tag used for Anchor, or link to another page, another location on a page, or another site.
Accompanied by the name of the link as “href,” e.g., <a href=”filename.html”>

Select one:
a. <a>
b. <td>
c. <table>
d. <audio>
Feedback

Your answer is correct.

Question 15
Incorrect
Mark 0.00 out of 1.00

Flag question

Question text

In CSS, “font-size” can be called as ________

Select one:
a. Property-Name
b. Selector
c. Rule
d. Property
Feedback

Your answer is incorrect.

Question 16
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following css property specifies an image to use as the background of an
element?

Select one:
a. background-img
b. none of the mentioned
c. background
d. background-image
Feedback

Your answer is correct.

Question 17
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which selector is used to specify a rule to bind a particular unique element?


Select one:
a. both class and tag
b. class
c. id
d. tag
Feedback

Your answer is correct.

Question 18
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Is it the best way to include H1 heading only one time on the web page.

Select one:
True
False

Question 19
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Fills an area using pixels within proximity

Select one:
a. Content-Aware Fill
b. Spot Healing Brush Tool
c. Content-Aware Scale
d. Content-Aware Move
Feedback

Your answer is correct.

Question 20
Incorrect
Mark 0.00 out of 1.00

Flag question

Question text

Destructive editing is done through layers and masks and preserves information about the
original pixels.

Select one:
True
False

Question 21
Correct
Mark 1.00 out of 1.00

Flag question

Question text

CSS stands for __________.

Select one:
a. Color Style Sheets
b. Cascading Style Sheets
c. Cascade Style Sheet
d. Cascade Sheets Style
Feedback

Your answer is correct.

Question 22
Incorrect
Mark 0.00 out of 1.00

Flag question

Question text

The background color property is used to set the element's background image

Select one:
True
False

Question 23
Correct
Mark 1.00 out of 1.00

Flag question

Question text

This is used to choose from a predefined list a single option

Select one:
a. <input type=“text”>
b. <input type=“radio”>
c. <input type=“checkbox”>
d. <textarea>
Feedback

Your answer is correct.

Question 24
Correct
Mark 1.00 out of 1.00

Flag question

Question text

__________ has introduced text, list, box, margin, border, color, and background properties.

Select one:
a. ajax
b. css
c. php
d. html
Feedback

Your answer is correct.

Question 25
Correct
Mark 1.00 out of 1.00

Flag question

Question text

This is used for text and numerical entries

Select one:
a. <input type=“text”>
b. <input type=“radio”>
c. <input type=“checkbox”>
d. <input type=“checkbox”>
Feedback

Your answer is correct.

Question 26
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The file type will affect the output file quality and size

Select one:
a. Image Quality
b. Dimensions
c. Image size
d. Image Type
Feedback

Your answer is correct.

Question 27
Correct
Mark 1.00 out of 1.00

Flag question

Question text

In css, “color:red” can be called as _____________

Select one:
a. Rule
b. Selector
c. Value
d. Declaration
Feedback

Your answer is correct.

Question 28
Correct
Mark 1.00 out of 1.00

Flag question

Question text

This is used to specify as present or absent one or more items

Select one:
a. <input type=“text”>
b. <input type=“checkbox”>
c. <input type=“radio”>
d. <textarea>
Feedback

Your answer is correct.

Question 29
Incorrect
Mark 0.00 out of 1.00

Flag question

Question text
Adobe Photoshop is a popular program for vector-based editing to create icons,
illustrations, cartoons, and fonts.

Select one:
True
False

Question 30
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The _________________ of the image is set to the height of the image.

Select one:
a. width
b. -moz-opacity
c. border
d. height
Feedback

Your answer is correct.

Question 31
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Automatically fix artifacts in a specific area


Select one:
a. Content-Aware Scale
b. Content-Aware Fill
c. Content-Aware Move
d. Spot Healing Brush Tool
Feedback

Your answer is correct.

Question 32
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The word-spacing property is used to add or remove space between the letters making up a
word.

Select one:
True
False

Question 33
Correct
Mark 1.00 out of 1.00

Flag question

Question text

A key feature of web pages is the ability to navigate between pages, positions within a page
and other locations.

Select one:
True
False

Question 34
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Simply change the style to make a global change, and it will automatically update all elemen
ts on all web pages.

Select one:
a. CSS saves time
b. Pages load faster
c. Easy maintenance
d. Superior styles to HTML
Feedback

Your answer is correct.

Question 35
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Scales selected pixels while automatically filling empty pixels

Select one:
a. Spot Healing Brush Tool
b. Content-Aware Move
c. Content-Aware Fill
d. Content-Aware Scale
Feedback

Your answer is correct.

Question 36
Correct
Mark 1.00 out of 1.00

Flag question

Question text

!DOCTYPE is case sensitive”.

Select one:
True
False

Question 37
Correct
Mark 1.00 out of 1.00

Flag question

Question text

This changes the picture dimensions.

Select one:
a. Dimensions
b. Image Quality
c. Image Size
d. Image Type
Feedback

Your answer is correct.


Question 38
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Use the ________________ property to set the image width.

Select one:
a. border
b. height
c. -moz-opacity
d. width
Feedback

Your answer is correct.

Question 39
Correct
Mark 1.00 out of 1.00

Flag question

Question text

CSS has a much wider range of attributes than HTML, so you can look much better than HT
ML attributes.

Select one:
a. Superior styles to HTML
b. Global web standards
c. Multiple Device Compatibility
d. CSS saves time
Feedback
Your answer is correct.

Question 40
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Anchors are often used to enable readers to navigate back to the top of the page or to a loc
ation further down the page.

Select one:
True
False

Question 41
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following CSS3 Color Feature like RGB color but adds an alpha channel value
to specify the opacity of the color?

Select one:
a. RGB
b. RGBa
c. AlphaRGB
d. RGBaplha
Feedback

Your answer is correct.


Question 42
Correct
Mark 1.00 out of 1.00

Flag question

Question text

You can write CSS once and then reuse the same sheet in multiple HTML pages.

Select one:
a. Easy maintenance
b. CSS saves time
c. Pages load faster
d. Superior styles to HTML
Feedback

Your answer is correct.

Question 43
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The font-variant property is used to increase or decrease the appearance of a font bold or
light.

Select one:
True
False

Question 44
Correct
Mark 1.00 out of 1.00

Flag question

Question text

If you are using CSS, there is no need to write attributes of HTML tags every time. Just write
the CSS rule for a tag and apply it to all occurrences of the tag.

Select one:
a. Easy maintenance
b. Pages load faster
c. Superior styles to HTML
d. CSS saves time
Feedback

Your answer is correct.

Question 45
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Dithering is the manner in which two-


color pixels are juxtaposed to create the illusion that a third color exists.

Select one:
True
False

Question 46
Correct
Mark 1.00 out of 1.00
Flag question

Question text

Automatically fix artifacts in image by painting over them

Select one:
a. Content-Aware Fill
b. Spot Healing Brush Tool
c. Healing Brush Tool
d. Clone Stamp Tool
Feedback

Your answer is correct.

Question 47
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following tag is used to embed css in html page?

Select one:
a. <!DOCTYPE html>
b. <style>
c. <script>
d. <css>
Feedback

Your answer is correct.


Question 48
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The background repeat property is used to set an element's background image.

Select one:
True
False

Question 49
Correct
Mark 1.00 out of 1.00

Flag question

Question text

A digital single-lens reflex (DSLR) camera, whether mirrored or mirrorless, is the best way to
capture high-quality images for the web.

Select one:
True
False

Question 50
Correct
Mark 1.00 out of 1.00

Flag question
Question text

The property _________________ is used to set the object opacity.

Select one:
a. border
b. -moz-opacity
c. width
d. height

Which of the following css property allows elements to be offset, rotated, scaled, and
skewed in a variety of different ways?

Select one:
a. transform
b. transform-3D
c. transition
d. transform-origin
Feedback

Your answer is correct.

Question 2
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following css property is used to define a delay before an animation starts?

Select one:
a. transform-delay
b. none of the mentioned
c. transition-delay
d. delay
Feedback

Your answer is correct.


a)
b)
c)
d)

Question 3
Correct
Mark 1.00 out of 1.00

Flag question

Question text

An easing function takes a progress value for input and generates a progress value for
output.

Select one:
True
False

Question 4
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The translate3d() function is a 3D transform function used in three-dimensional space to


transfer an object.
Select one:
True
False

Question 5
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following CSS Property defines which property values to apply to the element
before the animation begins (if delayed) and after it ends?

Select one:
a. animation-fill-mode
b. animation-delay
c. animation-play
d. animation-play-state
Feedback

Your answer is correct.

Question 6
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following CSS Property selects an animation defined in an @keyframes rule
and applies it to the element?
Select one:
a. none of the mentioned
b. animation
c. animation-element
d. animation-name
Feedback

Your answer is correct.


a) b) c) d)

Question 7
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following css property repeats an image both horizontally and vertically?

Select one:
a. background
b. background-image
c. background-repeat
d. background-position
Feedback

Your answer is correct.

Question 8
Correct
Mark 1.00 out of 1.00

Flag question
Question text

Which of the following css property defines whether or not an element should be visible
when not facing the screen?

Select one:
a. none of the mentioned
b. visibility
c. backface-visibility
d. backface-control
Feedback

Your answer is correct.


a)
b)
c)
d)

Question 9
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The < blink > is an effective HTML mark.

Select one:
True
False

Question 10
Correct
Mark 1.00 out of 1.00
Flag question

Question text

Which of the following CSS3 property specifies how nested elements are rendered in 3D
space

Select one:
a. transform-style
b. transform-render
c. none of the above
d. transform
Feedback

Your answer is correct.

 A.
 B.
 C.
 D.

Question 11
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following transform property value defines a translation, using only the value
for the X-axis?

Select one:
a. translate(x)
b. translateX(x)
c. translateY(x)
d. translateZ(x)
Feedback

Your answer is correct.

Question 12
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following css property specifies a delay for the transition effect?

Select one:
a. transition-duration
b. transition-effect
c. transition
d. transition-delay
Feedback

Your answer is correct.

Question 13
Correct
Mark 1.00 out of 1.00

Flag question

Question text
An easing function must be a pure function which means that it always produces the same
progress value for a given set of inputs.

Select one:
True
False

Question 14
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The linear easing function is an identity function meaning that its output progress value is
equal to the input progress value for all inputs.

Select one:
True
False

Question 15
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Transition is a process of manipulating objects to appear as moving images.

Select one:
True
False
Question 16
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The syntax for specifying an easing function is as follows:


<easing-function> = linear | <cubic-bezier-easing-function> | <step-easing-function>

Select one:
True
False

Question 17
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The syntax for the linear easing function is simply the linear keyword.

Select one:
True
False

Question 18
Correct
Mark 1.00 out of 1.00

Flag question

Question text
Which of the following transform property value defines a 2D translation?

Select one:
a. translate2d(x,y)
b. all of the mentioned
c. translate(x,y)
d. translate3d(x,y)
Feedback

Your answer is correct.

Question 19
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The HTML < blink > tag is a non-standard component that is used to construct an enclosed
text that slowly flashes.

Select one:
True
False

Question 20
Correct
Mark 1.00 out of 1.00

Flag question

Question text
Which of the following CSS Property determines whether an animation should run in reverse
on some cycles?

Select one:
a. animation
b. animation-repeat
c. none of the mentioned
d. animation-run
Feedback

Your answer is correct.

Which of the following css propery define the properties that will be animated in an
animation rule?

Select one:
a. transform
b. animation-origin
c. animation
d. @keyframes
Feedback

Your answer is correct.

Question 2
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The linear easing function is an identity function meaning that its output progress value is
equal to the input progress value for all inputs.

Select one:
True
False
Question 3
Correct
Mark 1.00 out of 1.00

Flag question

Question text

An easing function must be a pure function which means that it always produces the same
progress value for a given set of inputs.

Select one:
True
False

Question 4
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following transform property value defines a 2D translation?

Select one:
a. translate2d(x,y)
b. translate3d(x,y)
c. all of the mentioned
d. translate(x,y)
Feedback

Your answer is correct.


Question 5
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following transform property value defines a translation, using only the value
for the X-axis?

Select one:
a. translateX(x)
b. translate(x)
c. translateY(x)
d. translateZ(x)
Feedback

Your answer is correct.

Question 6
Correct
Mark 1.00 out of 1.00

Flag question

Question text

A CSS animation can be triggered by applying the animation styles to the: hover or: active
states when the reader has the mouse over the object or when the user clicks on the object.

Select one:
True
False
Question 7
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Configures whether or not the animation should alternate direction and repeat itself on
each run through the sequence or reset to the starting point.

Select one:
a. animation-name
b. animation-fill-mode
c. animation-play-state
d. animation-direction
Feedback

Your answer is correct.

Question 8
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following selector is used to select and style when you place mouse over it?

Select one:
a. hover
b. focus
c. mouse
d. all of the mentioned
Feedback
Your answer is correct.

Question 9
Correct
Mark 1.00 out of 1.00

Flag question

Question text

It is convenient to place each object on a separate layer to organize and work easily with
multiple moving objects.

Select one:
a. Scripting language
b. Layers
c. Keyframes
d. Stages
Feedback

Your answer is correct.

Question 10
Correct
Mark 1.00 out of 1.00

Flag question

Question text

elapsedTime is a float showing the number of seconds the transition was going on at the
time the event was going on.

Select one:
True
False

Question 11
Correct
Mark 1.00 out of 1.00

Flag question

Question text

CSS stands for __________.

Select one:
a. Cascade Sheets Style
b. Color Style Sheets
c. Cascading Style Sheets
d. Cascade Style Sheet
Feedback

Your answer is correct.

Question 12
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Animations involving transition between two states are often referred to as implicit
transitions since the user explicitly specifies the states between the start and the final states.

Select one:
True
False

Question 13
Correct
Mark 1.00 out of 1.00
Flag question

Question text

This is used to choose from a predefined list a single option

Select one:
a. <input type=“checkbox”>
b. <textarea>
c. <input type=“radio”>
d. <input type=“text”>
Feedback

Your answer is correct.

Question 14
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following css property is used to define a delay before an animation starts?

Select one:
a. transform-delay
b. delay
c. none of the mentioned
d. transition-delay
Feedback

Your answer is correct.


a)
b)
c)
d)

Question 15
Correct
Mark 1.00 out of 1.00

Flag question

Question text

A language of control allows users to control the animation and interact with it. Interactions
involve starting and stopping the animation and moving in the timeline to specified points.

Select one:
a. Scripting language
b. Layers
c. Drawing
d. Stage
Feedback

Your answer is correct.

Question 16
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Simply change the style to make a global change, and it will automatically update all elemen
ts on all web pages.

Select one:
a. Pages load faster
b. CSS saves time
c. Superior styles to HTML
d. Easy maintenance
Feedback

Your answer is correct.

Question 17
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following css property repeats an image both horizontally and vertically?

Select one:
a. background
b. background-position
c. background-image
d. background-repeat
Feedback

Your answer is correct.

Question 18
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Transition is a process of manipulating objects to appear as moving images.


Select one:
True
False

Question 19
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The HTML < blink > tag is a non-standard component that is used to construct an enclosed
text that slowly flashes.

Select one:
True
False

Question 20
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following property defines when the transition will start and it allows a
transition to begin execution some some period of time from when it is applied?

Select one:
a. transform-duration
b. transform-delay
c. transition-delay
d. none of the mentioned
Feedback

Your answer is correct.

Question 21
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following CSS3 property specifies how nested elements are rendered in 3D
space

Select one:
a. none of the above
b. transform-style
c. transform
d. transform-render
Feedback

Your answer is correct.

 A.
 B.
 C.
 D.

Question 22
Correct
Mark 1.00 out of 1.00

Flag question
Question text

CSS has a much wider range of attributes than HTML, so you can look much better than HT
ML attributes.

Select one:
a. CSS saves time
b. Global web standards
c. Superior styles to HTML
d. Multiple Device Compatibility
Feedback

Your answer is correct.

Question 23
Correct
Mark 1.00 out of 1.00

Flag question

Question text

propertyName is a string that indicates the name of the CSS property that has completed its
transition.

Select one:
True
False

Question 24
Correct
Mark 1.00 out of 1.00

Flag question

Question text
Which of the following css property specifies a delay for the transition effect?

Select one:
a. transition-effect
b. transition
c. transition-delay
d. transition-duration
Feedback

Your answer is correct.

Question 25
Correct
Mark 1.00 out of 1.00

Flag question

Question text

_________ selectors are used to specify a group of elements.

Select one:
a. class
b. both class and tag
c. id
d. tag
Feedback

Your answer is correct.

Question 26
Correct
Mark 1.00 out of 1.00

Flag question
Question text

CSS transitions allow you to decide which properties to animate when the animation begins,
how long the transition will last and how the transition will continue

Select one:
True
False

Question 27
Correct
Mark 1.00 out of 1.00

Flag question

Question text

__________ has introduced text, list, box, margin, border, color, and background properties.

Select one:
a. ajax
b. css
c. php
d. html
Feedback

Your answer is correct.

Question 28
Correct
Mark 1.00 out of 1.00

Flag question
Question text

The shorthand transition property is used to manage CSS animations.

Select one:
True
False

Question 29
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Sets the number of times the animation will repeat; to repeat the animation forever, you can
specify infinite.

Select one:
a. animation-fill-mode
b. animation-direction
c. animation-delay
d. animation-iteration-count
Feedback

Your answer is correct.

Question 30
Correct
Mark 1.00 out of 1.00

Flag question

Question text
You can write CSS once and then reuse the same sheet in multiple HTML pages.

Select one:
a. Pages load faster
b. Easy maintenance
c. Superior styles to HTML
d. CSS saves time
Feedback

Your answer is correct.

Question 31
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following property defines the length of time that a transition takes?

Select one:
a. transition-property
b. transform-duration
c. transition-duration

d. transition
Feedback

Your answer is correct.

Question 32
Correct
Mark 1.00 out of 1.00
Flag question

Question text

Which of the following CSS Property selects an animation defined in an @keyframes rule
and applies it to the element?

Select one:
a. animation-element
b. animation
c. none of the mentioned
d. animation-name
Feedback

Your answer is correct.


a) b) c) d)

Question 33
Correct
Mark 1.00 out of 1.00

Flag question

Question text

A language of control allows users to control the animation and interact with it. Interactions
involve starting and stopping the animation and moving in the timeline to specified points.

Select one:
a. Stage
b. Drawing
c. Layers
d. Scripting language
Feedback
Your answer is correct.

Question 34
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The translate3d() function is a 3D transform function used in three-dimensional space to


transfer an object.

Select one:
True
False

Question 35
Correct
Mark 1.00 out of 1.00

Flag question

Question text

If you are using CSS, there is no need to write attributes of HTML tags every time. Just write
the CSS rule for a tag and apply it to all occurrences of the tag.

Select one:
a. CSS saves time
b. Easy maintenance
c. Pages load faster
d. Superior styles to HTML
Feedback

Your answer is correct.


Question 36
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The _________________ of the image is set to the height of the image.

Select one:
a. -moz-opacity
b. border
c. height
d. width
Feedback

Your answer is correct.

Question 37
Correct
Mark 1.00 out of 1.00

Flag question

Question text

This identify transition points in the action as a concept borrowed from film animation.

Select one:
a. Stage
b. Layers
c. Keyframes
d. Drawing
Feedback
Your answer is correct.

Question 38
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The syntax for specifying an easing function is as follows:


<easing-function> = linear | <cubic-bezier-easing-function> | <step-easing-function>

Select one:
True
False

Question 39
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Set the time it takes for an animation to complete a loop.

Select one:
a. animation-name
b. animation-delay
c. animation-duration
d. animation-timing-function
Feedback

Your answer is correct.

Question 40
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following css property allows elements to be offset, rotated, scaled, and
skewed in a variety of different ways?

Select one:
a. transition
b. transform
c. transform-3D
d. transform-origin
Feedback

Your answer is correct.

Question 41
Correct
Mark 1.00 out of 1.00

Flag question

Question text

What does this code do?


Code:
@media only screen and (max-width: 500px) {
body {
background-color: lightblue;
}
}

Select one:
a. If the browser window is larger than 500px, the background color will change to lightblue:
b. The background color will change to lightblue
c. If the browser window is smaller than 500px, the background color will change to
lightblue:
d. Nothing happens
Feedback

Your answer is correct.

Question 42
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following CSS Property defines which property values to apply to the element
before the animation begins (if delayed) and after it ends?

Select one:
a. animation-fill-mode
b. animation-play
c. animation-play-state
d. animation-delay
Feedback

Your answer is correct.

Question 43
Correct
Mark 1.00 out of 1.00

Flag question

Question text
Which of the following CSS Property determines whether an animation should run in reverse
on some cycles?

Select one:
a. animation-repeat
b. animation
c. animation-run
d. none of the mentioned
Feedback

Your answer is correct.

Question 44
Correct
Mark 1.00 out of 1.00

Flag question

Question text

What should be written in the blank of the code for resizing elements in Responsive Web
Design with Transitions
Code:
body { background-image: url(fog.jpg); background-size: cover;
background-repeat: no-repeat; color: #fff; font-family: Avenir, Arial, sans-serif;
}
h1 { font-family: 'Calluna Sans', Arial, sans-serif; text-align: center;
font-size: 10rem; margin: 8rem auto;
}
h1 { font-family: 'Calluna Sans', Arial, sans-serif;
text-align: center; font-size: 10rem; margin: 8rem auto; transition: 1s font-size
linear;
}
______________ and (max-width: 1100px) {
h1 { font-size: 8rem; }

Select one:
a. transform
b. div
c. @media
d. @media screen
Feedback

Your answer is correct.

Question 45
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The < blink > is an effective HTML mark.

Select one:
True
False

Question 46
Correct
Mark 1.00 out of 1.00

Flag question

Question text

An easing function takes a progress value for input and generates a progress value for
output.

Select one:
True
False

Question 47
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following property specifies the speed curve of the transition effect?

Select one:
a. transition-delay
b. transition-duration
c. transition
d. transition-timing-function
Feedback

Your answer is correct.

Question 48
Correct
Mark 1.00 out of 1.00

Flag question

Question text

In CSS, “font-size” can be called as ________

Select one:
a. Selector
b. Property-Name
c. Property
d. Rule
Feedback

Your answer is correct.


Question 49
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The syntax for the linear easing function is simply the linear keyword.

Select one:
True
False

Question 50
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following css property defines whether or not an element should be visible
when not facing the screen?

Select one:
a. none of the mentioned
b. backface-visibility
c. visibility
d. backface-control

Transition software allows frame-by-frame motion to be produced.

Select one:
True
False
Question 2
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The DOM abstracts a lot of the details that would get you bogged down otherwise.

Select one:
a. Redrawing is handled for you.
b. Memory intensive.
c. Animations are easy to define and modify.
d. Easy to use.
Feedback

Your answer is correct.

Question 3
Correct
Mark 1.00 out of 1.00

Flag question

Question text

You specify only what you want on the screen to display.

Select one:
a. Redrawing is handled for you
b. Easy to use
c. Animations are pre-designed, configurable, and extensible via CSS
d. Animations are easy to define and modify.
Feedback

Your answer is correct.


Question 4
Correct
Mark 1.00 out of 1.00

Flag question

Question text

It is an open-source Flash IDE based on Adobe Flex created to assist System Dynamics
Modelers in creating and publishing Interactive Learning Environments for their work.

Select one:
a. SWFTools
b. SVGDreams
c. Open Dialect
d. Synfig Studio
Feedback

Your answer is correct.

Question 5
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Uses models, puppets or clay – as seen in the films

Select one:
a. 3D computer animation
b. stop frame animation
c. 2D computer animation
d. 2D drawn animation
Feedback

Your answer is correct.

Question 6
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Generate three-dimensional images

Select one:
a. 2D drawn animation
b. 3D computer animation
c. stop motion/stop frame animation
d. 2D computer animation
Feedback

Your answer is correct.

Question 7
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Immediate mode refers to the whole situation where you change the rate of change in your
animated products.

Select one:
True
False

Question 8
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Uses traditional hand-drawn animation

Select one:
a. stop motion/stop frame animation
b. 2D drawn animation
c. 2D computer animation
d. 3D computer animation
Feedback

Your answer is correct.

Question 9
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Parallax scrolling is when the layout of the website has the web page background move to
the foreground at a slower rate, producing a 3D effect as you scroll.

Select one:
True
False

Question 10
Correct
Mark 1.00 out of 1.00

Flag question

Question text

It was developed using the Qt library's OpenGL and follows the same interface style as
Macromedia Flash (TM) and ToonBoom (TM) for commercial products.

Select one:
a. Ajax Animator
b. KToon
c. SVGDreams
d. Toon Boom
Feedback

Your answer is correct.

Question 11
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The only easing implementations in the jQuery library are the default, called swing, and one
that progresses at a constant pace, called linear.

Select one:
True
False
Question 12
Correct
Mark 1.00 out of 1.00

Flag question

Question text

For animations, the name is called easing to specify the rate at which properties change.

Select one:
True
False

Question 13
Correct
Mark 1.00 out of 1.00

Flag question

Question text

You can write CSS once and then reuse the same sheet in multiple HTML pages.

Select one:
a. Superior styles to HTML
b. Easy maintenance
c. Pages load faster
d. CSS saves time
Feedback

Your answer is correct.

Question 14
Correct
Mark 1.00 out of 1.00
Flag question

Question text

It was originally intended to be a free replacement to Flash MX, but is now a general-
purpose animation tool.

Select one:
a. Pencil
b. Toon Boom
c. Ajax Animator
d. KToon
Feedback

Your answer is correct.

Question 15
Correct
Mark 1.00 out of 1.00

Flag question

Question text

It is a free flash IDE that allows anyone to create Rich Internet Applications quickly and easily
from beginners to advanced Flash coders.

Select one:
a. Open Dialect
b. Ajax Animator
c. SVGDreams
d. KToon
Feedback

Your answer is correct.


Question 16
Correct
Mark 1.00 out of 1.00

Flag question

Question text

It is a Canadian software company dedicated to the production of animation and


storyboarding software.

Select one:
a. Toon Boom Animation Inc.
b. Ajax Animator
c. KToon
d. Pencil
Feedback

Your answer is correct.

Question 17
Correct
Mark 1.00 out of 1.00

Flag question

Question text

callbackFunction is a function that is called by requestAnimationFrame().

Select one:
True
False

Question 18
Correct
Mark 1.00 out of 1.00

Flag question

Question text

It is a suite of integrated tools designing and building games, simulations, and visualizations
for game developers.

Select one:
a. Unreal Engine
b. Blender
c. Synfig Studio
d. Unity
Feedback

Your answer is correct.

Question 19
Correct
Mark 1.00 out of 1.00

Flag question

Question text

It is a free, open-source 2D vector graphics and computer animation program based on


timeline created by Robert Quattlebaum with additional contributions from Adrian Bentley.

Select one:
a. SWFTools
b. SVGDreams
c. Synfig Studio
d. Vectorian Giotto
Feedback

Your answer is correct.


Question 20
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Immediate Mode (Canvas), the user issues calls resulting in the showing of graphic objects
immediately.

Select one:
True
False

Question 21
Correct
Mark 1.00 out of 1.00

Flag question

Question text

requestAnimationFrame method can be used for different animation types, including styling
for CSS, canvas, WebGL, or SVG.

Select one:
True
False

Question 22
Correct
Mark 1.00 out of 1.00
Flag question

Question text

requestAnimationFrame method offers significant animation performance optimizations


over timer-based options such as setTimeout( ) and setInterval( ), typically resulting in
smoother animations.

Select one:
True
False

Question 23
Correct
Mark 1.00 out of 1.00

Flag question

Question text

It is a free, web-based animation suite.

Select one:
a. Open Dialect
b. Pencil
c. Ajax Animator
d. KToon
Feedback

Your answer is correct.

Question 24
Correct
Mark 1.00 out of 1.00
Flag question

Question text

It is a free Windows, Apple, and Linux Open Source CAD software.

Select one:
a. Opensource/Freeware 3D
b. Web animations
c. Illustrator/Photoshop and animation software
d. Open Source 2D-CAD LibreCAD
Feedback

Your answer is correct.

Question 25
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following css property is used to define a delay before an animation starts?

Select one:
a. delay
b. transition-delay
c. none of the mentioned
d. transform-delay
Feedback

Your answer is correct.


a)
b)
c)
d)

Question 26
Correct
Mark 1.00 out of 1.00

Flag question

Question text

CSS transitions allow you to decide which properties to animate when the animation begins,
how long the transition will last and how the transition will continue

Select one:
True
False

Question 27
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The remaining parameter of .animate() is a string naming an easing function to use.

Select one:
True
False

Question 28
Correct
Mark 1.00 out of 1.00
Flag question

Question text

An easing function specifies the speed at which the animation progresses at different points
within the animation.

Select one:
True
False

Question 29
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Web animations are often stored in the form of GIF, CSS, SVG, WebGL or video.

Select one:
True
False

Question 30
Correct
Mark 1.00 out of 1.00

Flag question

Question text
It is a free and open-source software package of 3D computer graphics tools used to build
animated films, visual effects, photography, 3D printed models, motion graphics, immersive
3D applications and computer games.

Select one:
a. Unity
b. Blender
c. Vectorian Giotto
d. Unreal Engine
Feedback

Your answer is correct.

Question 31
Correct
Mark 1.00 out of 1.00

Flag question

Question text

This is a new 2D animation toolkit created by Toonka Films and now available to the 2D
animation industry as a free GPL's option.

Select one:
a. Ajax Animator
b. Pencil
c. KToon
d. Open Dialect
Feedback

Your answer is correct.

Question 32
Correct
Mark 1.00 out of 1.00
Flag question

Question text

It is a simple program that allows anyone to make 2D animation.

Select one:
a. Pencil
b. Toon Boom Animation
c. KToon
d. Ajax Animator
Feedback

Your answer is correct.

Question 33
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following CSS3 Color Feature like RGB color but adds an alpha channel value
to specify the opacity of the color?

Select one:
a. AlphaRGB
b. RGB
c. RGBaplha
d. RGBa
Feedback

Your answer is correct.


Question 34
Correct
Mark 1.00 out of 1.00

Flag question

Question text

It is a great way to create immersive, resolution-independent vector graphics that look great
on any screen size.

Select one:
a. SVGDreams
b. Synfig Studio
c. Vectorian Giotto
d. SWFTools
Feedback

Your answer is correct.

Question 35
Correct
Mark 1.00 out of 1.00

Flag question

Question text

He is a very intelligent person who describes code-based easing equations

Select one:
a. Albert Penner
b. Robert Penner
c. Robert Benner
d. Roger Penner
Feedback

Your answer is correct.

Question 36
Correct
Mark 1.00 out of 1.00

Flag question

Question text

elapsedTime is a float showing the number of seconds the transition was going on at the
time the event was going on.

Select one:
True
False

Question 37
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The shorthand transition property is used to manage CSS animations.

Select one:
True
False

Question 38
Correct
Mark 1.00 out of 1.00
Flag question

Question text

Create animations using computer packages

Select one:
a. 3D computer animation
b. 2D computer animation
c. stop motion/stop frame animation
d. 2D drawn animation
Feedback

Your answer is correct.

Question 39
Correct
Mark 1.00 out of 1.00

Flag question

Question text

The most important part of creating an animation is to indicate the speed at which the value
of a property changes from value to value.

Select one:
True
False

Question 40
Correct
Mark 1.00 out of 1.00
Flag question

Question text

It is a Free Alternative for Adobe Flash, a very full software to create flash animations with
almost nothing to learn.

Select one:
a. SVGDreams
b. Vectorian Giotto
c. SWFTools
d. Synfig Studio
Feedback

Your answer is correct.

Question 41
Correct
Mark 1.00 out of 1.00

Flag question

Question text

propertyName is a string that indicates the name of the CSS property that has completed its
transition.

Select one:
True
False

Question 42
Correct
Mark 1.00 out of 1.00
Flag question

Question text

For some activities related to graphics, the default rendering may be somewhat restrictive.

Select one:
a. Less control over how things get drawn.
b. Animations are easy to define and modify.
c. Redrawing is handled for you.
d. Easy to use
Feedback

Your answer is correct.

Question 43
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Which of the following CSS Property defines which property values to apply to the element
before the animation begins (if delayed) and after it ends?

Select one:
a. animation-delay
b. animation-play
c. animation-play-state
d. animation-fill-mode
Feedback

Your answer is correct.


Question 44
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Canvass is the illusion name where the positions of objects appear to be changed based on
the angle in which you view them.

Select one:
True
False

Question 45
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Animations involving transition between two states are often referred to as implicit
transitions since the user explicitly specifies the states between the start and the final states.

Select one:
True
False

Question 46
Correct
Mark 1.00 out of 1.00

Flag question

Question text
The requestAnimationFrame method requires the browser to paint in an animation
sequence in the next frame.

Select one:
True
False

Question 47
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Parallax Scrolling can be used sparingly to provide a nice, subtle depth element resulting in
a distinctive and memorable website.

Select one:
True
False

Question 48
Correct
Mark 1.00 out of 1.00

Flag question

Question text

In retained mode (DOM), user requests do not result in the showing of graphic artifacts
instantly.

Select one:
True
False
Question 49
Correct
Mark 1.00 out of 1.00

Flag question

Question text

Animation technology that enables typical hand-drawn animation (cartoon) to be produced


using both bitmap and vector graphics.

Select one:
a. Pencil.
b. Ajax Animator
c. Toon Boom Animation
d. KToon
Feedback

Your answer is correct.

Question 50
Correct
Mark 1.00 out of 1.00

Flag question

Question text

You can easily define animations or transitions because of the CSS support, specify a
lightening feature, make some other modifications, and you're good to go.

Select one:
a. Animations are easy to define and modify.
b. Animations are pre-designed, configurable, and extensible via CSS
c. Easy to use.
d. Redrawing is handled for you.

S-ar putea să vă placă și