Score: 0
Time 02:00
1. What does HTML stand for?
- Hyper Transfer Markup Language
- Hyper Text Markup Language
- High Tech Markup Language
- Hyperlinks Text Management Language
2. Which attribute is used in image tag to specify an image source?
3. What is the difference between id and class in CSS?
- Both are the same
- id is used for multiple elements, class for one element
- id is unique for one element, class can be used for multiple elements
- id is only for CSS, class is only for JavaScript
4. How can you center text using CSS?
- align: center;
- text-center: true;
- text-align: center;
- center: text;
5. Which HTML attribute is used to open a link in a new tab?
- new="true"
- window="_blank"
- target="_blank"
- open="new"
6. Which CSS property adds space inside an element, between the content and border?
- margin
- padding
- spacing
- border-spacing
7. What is the default display property of a div element?
- inline
- block
- inline-block
- flex
8. Which CSS property is used to change the font of text?
- font-family
- font-style
- text-font
- font-weight
9. Which of the following is used to declare a variable in JavaScript?
- var
- let
- const
- all of the above
10. Which operator is used to assign a value to a variable?