علم البيانات | DS2 Quizes – Telegram
علم البيانات | DS2 Quizes
966 subscribers
96 photos
2 videos
14 files
110 links
"قناة علمية متخصصة في مجال علم البيانات، قناة خاصة بالاختبارات MCQ ."
القناة العامة: @Computer_DS_1
النقاشات: @Computer_DS1
قناة الاختبارات: @Computer_DS_2
بوت التواصل والمشاركات : @DS_Combot
Download Telegram
Which property defines the name of an animation?
Anonymous Quiz
15%
animation-id
65%
animation-name
11%
keyframes
9%
animate
Which rule defines keyframes in CSS?
Anonymous Quiz
11%
0%
@font-face
Which property sets how long an animation takes?
Anonymous Quiz
17%
animation-delay
11%
animation-time
63%
animation-duration
9%
animation-speed
1
Which property sets how many times an animation repeats?
Anonymous Quiz
7%
animation-loop
7%
animation-count
67%
animation-iteration-count
20%
animation-repeat
Which value makes an animation run infinitely?
Anonymous Quiz
9%
forever
16%
loop
73%
infinite
2%
endless
Which property sets the delay before an animation starts?
Anonymous Quiz
2%
animation-wait
80%
animation-delay
13%
animation-duration
4%
animation-timing
Which shorthand combines multiple animation properties?
Anonymous Quiz
9%
animate
62%
animation
24%
keyframes
4%
transition
Transitions and animations are the same in CSS.
Anonymous Quiz
37%
True
63%
False
👍1👎1
Which property freezes the final keyframe at the end?
Anonymous Quiz
4%
animation-delay
9%
animation-direction
78%
animation-fill-mode: forwards;
9%
animation-state
Can we define multiple animations on the same element?
Anonymous Quiz
89%
Yes
11%
No
Which unit is valid for animation-duration?
Anonymous Quiz
12%
px
16%
%
67%
s and ms
5%
em
Which property lets you specify multiple stages (0%, 50%, 100%)?
Anonymous Quiz
35%
animation-stages
2%
animation-breaks
9%
animation-percent
To apply an animation named spin with duration 3s, correct is:
Anonymous Quiz
67%
animation: spin 3s;
7%
animate: spin 3s;
16%
keyframe: spin 3s;
9%
transition: spin 3s;
Which rule is used to define media queries?
Anonymous Quiz
84%
5%
0%
Which media type targets printing?
Anonymous Quiz
11%
screen
73%
print
11%
all
5%
paper
😁2
Which property is often adjusted in responsive design?
Anonymous Quiz
11%
background-color
55%
font-size
14%
border-style
20%
cursor
Which query is best for mobile-first design?
Anonymous Quiz
47%
min-width
33%
max-width
7%
min-height
13%
resolution
Which query hides element on screens larger than 1024px?
Anonymous Quiz
24%
@media (min-width: 1024px) { display: none; }
27%
@media (max-width: 1024px) { display: none; }
47%
@media (min-width: 1025px) { display: none; }
2%
@media (width > 1024px) { display: none; }
👎1😁1
Can you nest media queries inside CSS selectors?
Anonymous Quiz
63%
Yes
38%
No
Which value hides overflowing content completely?
Anonymous Quiz
82%
overflow: hidden;
2%
overflow: visible;
5%
overflow: scroll;
11%
overflow: auto;
Which value adds scrollbars only when necessary?
Anonymous Quiz
0%
hidden
52%
auto
11%
visible
37%
scroll