علم البيانات | DS2 Quizes – Telegram
علم البيانات | DS2 Quizes
965 subscribers
96 photos
2 videos
14 files
110 links
"قناة علمية متخصصة في مجال علم البيانات، قناة خاصة بالاختبارات MCQ ."
القناة العامة: @Computer_DS_1
النقاشات: @Computer_DS1
قناة الاختبارات: @Computer_DS_2
بوت التواصل والمشاركات : @DS_Combot
Download Telegram
What is the expected result of this code? div { overflow: hidden; }
Anonymous Quiz
7%
Shows all content
63%
Cuts content that exceeds the box
5%
Adds a scrollbar
24%
Hides the element completely
What does this code do? h1 { text-transform: uppercase; }
Anonymous Quiz
90%
Converts text to uppercase
5%
Converts text to lowercase
5%
Changes color
0%
Changes font size
What is the error in this code? p { font-style: boldd; }
Anonymous Quiz
5%
Nothing
83%
Typo
13%
Works partially
0%
Changes color
What is the expected result of this code? p { color: rgb(255,0,0); }
Anonymous Quiz
0%
Blue text
15%
Green text
76%
Red text
10%
Black text
😢1
What is the error in this code? div { border 1px solid black; }
Anonymous Quiz
5%
Works normally
90%
Missing colon
5%
Changes color
0%
Hides element
What does this code do? div { position: absolute; top: 10px; left: 20px; }
Anonymous Quiz
93%
Positions the element relative to the page or container
0%
Hides the element
8%
Changes color
0%
Changes size
What does this code do? div { box-shadow: 2px 2px 5px grey; }
Anonymous Quiz
88%
Adds shadow around the element
8%
Changes background color
5%
Hides the element
0%
Adds border
What is the error in this code? p { margin-top 20px; }
Anonymous Quiz
83%
Missing colon
10%
Works normally
7%
Changes color
0%
Hides text
What does this code do? a { pointer-events: none; }
Anonymous Quiz
85%
Prevents interaction with the link
8%
Changes color
8%
Hides the link
0%
Adds underline
What does this grid code do? .container { display: grid; grid-template-columns: 1fr 2fr; }
Anonymous Quiz
22%
Creates 2 equal columns
68%
Creates 1 small and 1 large column
10%
Creates 3 columns
0%
Hides the content
1
What is the error in this code? div { transform scale(1.5); }
Anonymous Quiz
7%
Works normally
49%
Missing colon
44%
Missing colon after transform
0%
Wrong property name
What does this animation do? @keyframes fade { from { opacity: 0; } to { opacity: 1; } } div { animation: fade 2s; }
Anonymous Quiz
28%
Makes the element disappear
55%
Makes the element fade in
13%
Makes the element blink
5%
No effect
What is the effect of this code? .container { display: grid; grid-template-rows: 100px auto; }
Anonymous Quiz
76%
Creates 2 rows: one fixed and one flexible
14%
Creates 2 equal rows
5%
Creates 3 rows
5%
No effect
Which selector is used to select all elements of a specific type, e.g. all <p> tags?
Anonymous Quiz
33%
*
7%
.p
48%
p
Which selector applies to all elements in the page?
Anonymous Quiz
6%
body
6%
html
85%
*
2%
all
How do you select elements with the class name "menu"?
Anonymous Quiz
8%
menu
76%
.menu
0%
*menu
Which of the following is a valid CSS comment?
Anonymous Quiz
8%
# comment
73%
/* comment */
6%
// comment
12%
<!-- comment -->
Which selector selects elements only if they are the immediate sibling?
Anonymous Quiz
15%
A > B
64%
A + B
13%
A ~ B
9%
A B