CSS Multiple Choice Questions & Answers on CSS3 Transitions for UI Elements for Freshers

https://www.computersprofessor.com/2017/12/css-multiple-choice-questions-answers_30.html
1. Which of the following selector is used to select and style when you place mouse over it?
a) focus
b) hover
c) mouse
d) all of the mentioned
Answer: b
2. Which of the following method increases or decreases the size of an element using tranform?
a) rotate()
b) scale()
c) translate()
d) matrix()
Answer: b
3. Which of the following method moves an element from its current position using tranform?
a) rotate()
b) scale()
c) translate()
d) matrix()
Answer: c
4. Which of the following property specifies the speed curve of the transition effect?
a) transition-delay
b) transition-duration
c) transition-timing-function
d) transition
Answer: c
5. Which of the following method skews an element along the X-axis by the given angle using tranform?
a) skewX()
b) skewy()
c) x-axis()
d) skew()
Answer: a
6. Which of the following method skews an element along the X and Y-axis by the given angles using tranform?
a) skewX()
b) skewy()
c) skew-X-Y()
d) skew()
Answer: d
7. Which of the following transition-timing-function property specifies a transition effect with a slow start?
a) ease
b) ease-in
c) ease-in-out
d) none of the mentioned
Answer: b
8. Which of the following transition-timing-function property specifies a transition effect with a slow start, then fast, then end slowly
a) ease
b) ease-in
c) ease-in-out
d) none of the mentioned
Answer: a
9. Which of the following transition-timing-function property lets you define your own values in a cubic-bezier function
a) cubic(n,n,n,n)
b) matrix(n,n,n,n)
c) cubic-bezier(n,n,n,n)
d) none of the mentioned
Answer: c
10. Which of the following method combines all the 2D transform methods into one using transform?
a) combine()
b) 2D-tranform()
c) matrix()
d) matrix-2D()
Answer: c