علم البيانات | 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
To create a table with 3 rows and 2 columns, which basic tags are used?
Anonymous Quiz
5%
<form>, <input>, <button>
11%
<ul>, <li>, <ol>
2%
<div>, <span>
2%
<section>, <article>
82%
<table>, <tr>, <td>
What will this code create? <a href=https://example.com>Click here</a>
Anonymous Quiz
7%
A bookmark
80%
A link
9%
A button
4%
An image
Which tag is wrong in this code? <bold>Hello</bold>
Anonymous Quiz
3%
Nothing wrong
80%
<b> should be used instead of <bold>
6%
Should use <p>
11%
Should use <h1>
What does this code do? <ul> <li>HTML</li> <li>CSS</li> </ul>
Anonymous Quiz
6%
Numbered list
58%
Bullet list
15%
Dropdown menu
20%
Definition list
Which is the correct HTML for a checkbox? <input type= name=agree>
Anonymous Quiz
3%
<check>
15%
<checkbox>
77%
<input type=checkbox>
5%
<option>
What does this code produce? <ol> <li>One</li> <li>Two</li> </ol>
Anonymous Quiz
14%
Bulleted list
78%
Numbered list
3%
Dropdown menu
4%
Definition list
Which is correct for inserting a comment?
Anonymous Quiz
4%
// Comment
6%
# Comment
85%
<!-- Comment -->
6%
/* Comment */
What’s wrong here? <table> <tr> <td>Apple</td> <td>Banana</td> </table>
Anonymous Quiz
0%
Nothing wrong
86%
Missing closing </tr>
6%
Wrong tag
9%
Should use <th>
What does this code display? <input type=text value=Hello>
Anonymous Quiz
4%
A password field
93%
A text field with “Hello”
3%
A button
0%
A dropdown
1
What’s wrong in this code? <form> <input name=username> <submit>Send</submit> </form>
Anonymous Quiz
1%
Nothing wrong
94%
<submit> is not valid, should use <button> or <input type=submit>
3%
Missing method
1%
Missing action
🔥4
What does this code produce? <iframe src=page.html></iframe>
Anonymous Quiz
4%
Insert CSS
86%
Insert another HTML page
8%
Insert JavaScript
1%
Insert comment
1
What’s wrong here? <a href=home.html target=new>Home</a>
Anonymous Quiz
8%
Nothing wrong
83%
target=new is not standard, should be _blank
4%
Should use <link>
4%
Should be <button>
What does this code produce? <video controls> <source src=movie.mp4 type=video/mp4> </video>
Anonymous Quiz
5%
Audio player
86%
Video player
5%
Image
3%
Link
What’s wrong here? <html> <head> <noscript>Test</noscript> </head> <body> <h1>Hello</h1> </head> </html>
Anonymous Quiz
5%
Nothing wrong
87%
Closing </head> is wrong, should be </body>
3%
Missing </noscript>
5%
Wrong <h1>