(C777) LATEST 2025-2026 REAL EXAM WITH
COMPLETE QUESTIONS AND CORRECT
ANSWERS GRADED A+||ACTUAL EXAM
PRACTICE TEST GUARANTEEING 100%PASS
CSS3 effects that change an element from one style to another
style Correct Answer transition
Property that specifies the CSS property that the transition will
affect Correct Answer transition-property
Properties that defines the amount of time that a transition takes
in seconds (s) or milliseconds (s). Default is 0. If no value is
specified, then no transition occurs Correct Answer duration
Properties that describe the speed of a transition. Valid options
are ease, linear, ease-in, ease-out, and ease-in-out Correct
Answer timing function
Properties that defines how long before a transition or animation
begins Correct Answer delay
,At-rule used to create CSS3 animations Correct Answer
@keyframes
@keyframes requires a prefix for these two browsers Correct
Answer Chrome 34 and Safari 7
Property that specifies the identifier for the @keyframes
animation that binds it to a selector Correct Answer animation-
name
Property that specifies the number of times the animation will
play. Default is 1. Correct Answer animation-iteration-count
Property that specifies whether to play the animation in reverse
on alternate cycles.
Requires an iteration count greater than 1. Parameters are
normal, reverse, alternate, alternate-reverse Correct Answer
animation-direction
Property that specifies whether the animation is running or
paused. Default is running Correct Answer animation-play-state
The resize property only works in these browsers Correct Answer
Chrome, Safari, and Firefox
,CSS3 UI property that makes an element look like a standard
user interface element, such as a button or window Correct
Answer appearance
CSS3 UI property that forces specified elements fit an area in a
certain way Correct Answer box-sizing
CSS3 UI property that styles an element with an iconic equivalent
Correct Answer icon
CSS3 UI property that specifies the tabbing order for an element
Correct Answer nav-index
CSS3 UI property that specifies where the cursor will navigate to
when the user presses the "direction" arrow key Correct Answer
nav-direction
CSS3 UI property that draws an outline beyond the border edge
(i.e., offsets the outline) as specified Correct Answer outline-offset
CSS3 UI property that specifies whether an element can be
resized by the user and how it can be resized Correct Answer
resize
, A CSS3 technique used to place an HTML element on top of
another HTML element Correct Answer overlay
Use this CSS3 property to create an overlay. Without it and by
default, the HTML element listed last in the page appears at the
top and vice versa. Correct Answer z-index
The first character of a variable name in JavaScript must be one
of these Correct Answer letters, _, or $
Except for the first character, the name of a variable in JavaScript
can contain these only Correct Answer letters, numbers, or _
The 6 data types in JavaScript Correct Answer number, string,
boolean, Object, null, undefined
Data that is to be operated upon or manipulated in some manner
by an operator Correct Answer operand
Event that occurs when the loading of an image is aborted
Correct Answer abort
Event that occurs when input focus is removed from a form
element Correct Answer blur