علم البيانات | 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 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!)
Which keyword declares a variable that can be reassigned?
Anonymous Quiz
7%
var
10%
const
7%
let
76%
Both let and var
What is the output of console.log( typeof 42)?
Anonymous Quiz
86%
number
5%
string
5%
boolean
5%
object
What does console.log(true && false) return?
Anonymous Quiz
7%
true
84%
false
9%
0
0%
1
How do you access the first element of arr?
Anonymous Quiz
85%
arr[0]
5%
arr[1]
5%
arr.first
5%
arr[0,0]
Which keyword defines a variable globally (if not in a function)?
Anonymous Quiz
28%
var
7%
let
9%
const
56%
Both A and B