علم البيانات | 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 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
Which event occurs when a user clicks on an HTML element?
Anonymous Quiz
86%
onclick
5%
onmouseover
7%
onkeypress
2%
onhover
How do you find the length of a string str?
Anonymous Quiz
0%
str.size
55%
str.length
14%
str.len
32%
str.length()
Which function pops the last element from an array?
Anonymous Quiz
71%
arr.pop()
20%
arr.push()
2%
arr.shift()
7%
arr.unshift()