علم البيانات | 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
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
Which shorthand is correct for padding top=10px, right=20px, bottom=30px, left=40px?
Anonymous Quiz
21%
padding: 10 20 30 40;
26%
padding: top 10 right 20 bottom 30 left 40;
14%
padding: 10px, 20px, 30px, 40px;
38%
padding: 10px 20px 30px 40px;
Syntax of media query for screens smaller than 600px is:
Anonymous Quiz
79%
@media (max-width: 600px)
13%
@media (width < 600px)
6%
@media screen < 600px
2%
@media width <= 600px
Which is the correct CSS syntax to change the background color to blue?
Anonymous Quiz
24%
background-color: blue;
6%
body {bg: blue;}
0%
body {background=blue;}
69%
body {background-color: blue;}
1
What is the expected result of this code?
div {
width: 200px; height: 100px; padding: 20px; }
Anonymous Quiz
13%
Syntax error
8%
Hides the box
15%
Box size = 200x100
63%
Box size = 240x140
👏3
--

CSS questions done

--
أخي الطالب : في حال وجدت خطأ في أي من هذه الأسئلة ، لاتتردد في إرسال السؤال والإجابة الصحيحة لنا عبر بوت المشاركات؛ لتصحيح الخطأ. فكلنا بشر نُخطئ و نصيب نُجرب و نتعلم نفشّل و ننجح  فلآ نتظآهر بالكَمال .

بوت المشاركات:
https://news.1rj.ru/str/DS_Combot
هذه جميع أسئلة بنك أسئلة (HTML و CSS ) الخاص بالدكتور #محمد_زايد . أما بالنسبة لأسئلة قسم (JavaScript)، فسيتم تزويدكم بها فور الانتهاء من إعدادها.
علم البيانات | DS2 Quizes
Which element is used for italic text?
هٌنا 👇👇
https://news.1rj.ru/str/Computer_DS_2/2738
الإجابة الصحيحة A و B.
كل من <i> و <em> يستخدمان للنص المائل، ويعطي <em> أيضًا معنى التأكيد.
Which of the following is a valid JS data type?
Anonymous Quiz
4%
String
9%
Number
7%
Boolean
80%
All of the above
What keyword is used to define a constant variable?
Anonymous Quiz
76%
const
4%
let
10%
var
10%
constant
How do you write an alert in JS?
Anonymous Quiz
80%
alert(Hi!)
7%
msg(Hi!)
9%
console.log(Hi!)
4%
prompt(Hi!)