Answer:
The answer is 34.
Explanation:
Look at the pic.
Answer:
B
Explanation:
5*2=10
6*4=24
24+10=34 wheels
5+6=11 vehicles
pls mark brainliest
Which option lists the correct steps to apply a style?
A. Select the text, click the Home tab, and in the Styles Gallery, click to select a style to apply.
B. Select the text, click the Insert tab, and in the Formatting Gallery, click to select a style to apply.
C. Select the text, click the Home tab, and in the Font group, select a font, font size, and type to apply.
D. All of the options listed above are correct.
Answer:
B
Explanation:
just took the test
Answer:c
Explanation:
Which method is the quickest for removing multiple different indent types applied to a paragraph?
O Drag the left and right indent markers back to their respective positions against the page margins.
O Launch the Paragraph djalog box and clear the values for the left and right indents and set Special indents to "none."
O Press Ctrl+Q on your keyboard to clear paragraph formatting.
O Click the indent markers and drag them off the horizontal ruler.
Mark this and retum
Next
Submit ASAP
Answer:
c
Explanation:
Press Ctrl+Q on your keyboard to clear paragraph formatting is the quickest for removing multiple different indent types applied to a paragraph.
What is paragraph?
A paragraph is a self-contained unit of speech in writing that addresses a certain subject or idea. Though paragraphs are not needed by the orthographic standards of any language with a writing system, they are a common way of structuring long portions of prose. The earliest classical British and Latin writing was boustrophedon, with little or no gap between words. Text direction (left to right) became standardised over time, as did word dividers and terminal punctuation.
To delete the paragraph's formatting, press Ctrl+Q. The Ctrl+Q key in various programmes can be used to terminate the programme or close the programme window. To utilise the keyboard shortcut Ctrl+Q, press and hold either Ctrl key on the keyboard, then press the "Q" key with either hand while continuing to hold.
So, C is correct.
To learn more about paragraph
https://brainly.com/question/27243200
#SPJ2
Meghla has brought a smartphone with length is 4 unit and breadth is 3 unit, what is the screen size of the smartphone
Answer:
[tex]12unit^2[/tex]
Explanation:
Assuming that the screen covers the entire area of the smart phone.
[tex]3 * 4 = 12 unit^2[/tex]
Most likely this wouldn't be the case, so the screen size would be at most [tex]12unit^2[/tex]
[tex]0unit^2<size < 12unit^2[/tex]
And would most likely fall under this range of answers.
Organisms are classified as producers or consumers acorrding to the way they
A)obtain
B)release wastes
C)produce offspring
D)move from place to place
Lower doses blank causes confusion and memory loss and hallucination
Writa function to read content from "Zone. txt" and write it into another file "zone1. txt" by reversing each line if the line starts with A
Answer:
You have specified no language. Here's an algorithm to follow with most platforms, my example is in NodeJS
const fs = require('fs');
let zone = fs.readFile('Zone.txt', 'utf8', function (err, data) {
if (err) throw new Error(err);
data = data.toString(); //convert the buffer to a string
let lines = data.split("\n"),
content = [];
for (i in lines) {
let l = lines[i];
if (l.toLowerCase().startsWith("a")) l = reverseString(l);
content.push(l);
}
content = content.join("");
fs.writeFile('zone1.txt', content, , function (err) {
if (err) throw new Error(err);
}
});
function reverseString (str) {
return str.split("").reverse().join("");
}
vectors
Pre-Test
Active
1
2
3
4
5
6
THE REMAINI
24:13
Two vectors, X and Y, form a right angle. Vector X is 48 inches long and vector Y is 14 inches long. The length of the resultant
vector is
inches.
Answer:
[tex]c { }^{2} = a ^{2} +b {}^{2} [/tex]
[tex]c {}^{2} = 48 {}^{2} + 14 {}^{2} [/tex]
[tex]c {}^{2} = 2304 + 196[/tex]
[tex]c {}^{2} = 2500[/tex]
[tex]c = 50[/tex]
An item with both magnitude and direction is referred to be a vector. A vector can be visualized geometrically as a directed line segment, with an arrow pointing in the direction and a length equal to the magnitude of the vector.
What is Vector?The vector points in a direction from its tail to its head. If the magnitude and direction of two vectors match, they are the same vector.
This indicates that if we take a vector and move it to a different point (without rotating it), the vector we finish up with is the same vector we started with.
The vectors that denote force and velocity are two examples. The direction of force and velocity are both fixed. The size of the vector would represent the force's strength or the velocity's corresponding speed.
Therefore, An item with both magnitude and direction is referred to be a vector. A vector can be visualized geometrically as a directed line segment, with an arrow pointing in the direction and a length equal to the magnitude of the vector.
To learn more about vector, refer to the link:
https://brainly.com/question/13322477
#SPJ7