File Explorer
AKA: Where to find files
Answer:
The answer to the given question is the option "a".
Explanation:
In this question, the answer is "middleware" software because this software works between the operating system and the applications that provide connectivity to two or more software applications. for example database, application server, etc and other choices that are not correct can be described as:
- In option b, The integration middle wear represents the software of the system. It does not coordinate between operating and application software.
- In option c, It is used to manage the data and the information for the process.
- In option d, It includes the hardware, software and the networks. In this hardware and software link for use software.
That's why the answer to this question is the option "a".
Answer:Their motherboards,battery packs and circuits.
Mother boards are green tech plates that help connect and make a device work,they have sod (melted metal) to hold wires and buttons to it.
Answer:
On - demand
Transition
Codecs
Media Player
Video compression
Explanation:
The image for the question is attached.
Another name for streaming of media is known as on - demand service. The resources are only available based on request.
Transition tells a viewer when a scene ends and another one begins.
Codecs has a lot of standard and MPEG is one of the popular standard. Some include Dolby Digital (AC3, ATSC A/52, ETSI TS 102 366).
Media Player is the type of software needed to watch a video on a computer.
Video Compression is the technology that is used to compress and depress video files.
Answer:
We create a block div with an id="block" and we make the css code
Explanation:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>bloque</title>
<link href="bloque.css" rel="stylesheet" type="text/css">
</head>
<body>
<!--we create the div with the id="block" and a text "hello world"-->
<div id="block"> hello world </div>
</body>
</html>
/* CSS Document */
/* we create the CSS file, then with the same id="block" we're programming in the CSS code*/
#block{
background-color: #ECDEC9;
padding: 20px;
float: left;
font-size: 50px;
font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Verdana", "sans-serif";
}