HTML stands for Hyper Text Markup Language. It is the most commonly language used for <span>creating web pages and web applications. </span>
<span>The correct HTML element for playing video files is <video>.
</span>
To show a video in HTML, use the <video> element:
Example:<span><video<span> width="320" height="240" controls</span>></span>
<span><source<span> src="video 1.mp4" type="video/mp4"</span>></span>
<span><source<span> src="movie.ogg" type="video/ogg"</span>></span>
<span></video<span>></span></span>
Answer:
junk files
Explanation: if a file is in a junk file it is most likely unwanted
Answer:
The answer is "selective exposure".
Explanation:
It is a theory in psychology, that is sometimes used in marketing and advertising studies. It traditionally applies to the propensity of people to prefer evidence, that enhances existing previous views while ignoring conflicting information.
These types of approaches are occurring, when the people pursue knowledge and consistently express desires for solutions, that are associated with their beliefs, rather than incompatible.
Answer:
It will show compilation error like - no match for 'operator>>'
Explanation:
<< and >> are input output stream operators which are used with different input output stream objects in C++. So << operator is used to output stream of characters to console or a file and >> operator is used to input or read some characters or integers from a file or console. Here input stream character is used with output stream object cout, which produces an error.