I think the answer is D
hopethishelpsyouout
B) Indents & Spacing
C) Text Flow
D) Outline & Numbering
The answer is B: Indents & Spacing
In Microsoft Word, the word indent describes the number of spaces used to separate a paragraph from the right or the left margins. By default, pressing the tab key at the beginning of the first line of a paragraph will automatically indent the paragraph. If David always wants the first line indentation, he is able to change that on the indents and dialog tab under the paragraph dialog box of the Home tab. Under the indentation tab, David should select first line under the special drop down box and select OK.
Answer:
1820-1900
Explanation:
*
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * * * *
* * * * * * * * *
Hint: You will need to create a variable that controls how far the * is from edge of the console. That variable should change size each iteration through the outer loop!
public class JavaApplication82 {
public static void main(String[] args) {
for (int i = 1; i <= 9; i++){
for (int w = 0; w < i; w++){
System.out.print("*");
}
System.out.println("");
}
}
}
This works for me.
Answer: improved communication access , increased exposure to western culture
Explanation: Globalization promises to be a major player in the cultural life of Southwest Asia and North Africa. The region's role in the global economy presents a challenge to its traditional cultural values. Oil-producing nations have seen not only an influx of foreign capital, but of foreign workers as well. As a result, exposure to Western culture has increased. Further, technological advances such as the Internet, e-mail, and cell phones have made foreign cultures more accessible and communication much easier. Even in Islamic nations, Western drinks, foods, fashions, and entertainment have found their way into regional cultural practices. This region is becoming increasingly intertwined with the network that makes up the global community. It will surely be the site of very interesting future developments.
There are six devices which need to magnetism to operate. Those six devices are microphones, an audio console, audio interference, computers, disks players, and studio monitors.
Explanation:
To identify the fundamental recording tools of a digital radio studio and to classify if devices use magnetism and/or electricity or when used in recording audio, there are some steps to do. You can begin reading on electromagnetic induction’s role in recording technology, doing experiments by following the guide, and many more. Typically, there are some materials in the control room. They are pictures of video clip on video player, a radio station tour, accessories, and screen. In general, a lot of materials run on electricity has a related magnetism to it. This study is the focus on physics subject with the focus on electricity and magnetism. Considering that you are studying physics about electricity and magnetism and not to be confused by the differences between electrical devices and magnetism devices, some terms should know about magnetism devices:
• Electromagnetism contains the study of magnetism and electricity, and how the two are connected. Electromagnets are temporary magnet, if electric current flows through a magnet, producing a magnetic field. Some electromagnets create a very strong magnetic field when current flows through it.
• Magnetism and electromagnetism are basic concepts in Physics, the key disparity is the magnetic surrounds just a phenomenon due to magnetic force, while electromagnetism surrounds a phenomenon due to magnetic and electric forces.
• Generic control room sample images are attached.
LEARN MORE
If you’re interested in learning more about this topic, we recommend you to also take a look at the following questions:
• How many of devices you identified inside the control room need to magnetism to operate? brainly.com/question/1642736
• How many of the devices you identified inside the control room need electricity to operate? brainly.com/question/730146
KEYWORDS :
magnetism, electromagnetism
Subject : Computers and technology
Class : 10-12
Sub-Chapter : Force, Motion and Electricity
makeOutWord("<<>>", "WooHoo") → "<>"
makeOutWord("[[]]", "word") → "[[word]]"
Answer:
The following are the answer to this question.
Explanation:
In the given code, a "makeOutWord and word" is already used to hold some value. In this code, we define a string method "makeOutWord" that accepts two string variables "out and the word" in its parameter.
Inside the method, a return keyword is used that uses the string variable "out and the word" with the "substring" method, this method is used to returns a new string from an old string value, and it also uses the "word" string variable for the return value.
please find the attached file for code:
The function makeOutWord combines the 'out' string and the given word by using the substring method to separate the 'out' string into two parts, then inserting the given word in between. An example solution in Java is provided.
The goal of this problem is to create a new string, incorporating the original 'out' string and the given word. This can be achieved by utilizing the substring method in Java which allows us to extract part of a string. Given an 'out' string with length 4, such as '<<>>', and a word, the task is to return a new string where the word is in the middle of the 'out' string.
An example solution in Java would be as follows:
public String makeOutWord(String out, String word) { return out.substring(0, 2) + word + out.substring(2, 4);}With this function, we take the first two characters from the 'out' string, then append the word, then add the last two characters of the 'out' string. So, makeOutWord("<<>>", "Yay") would yield "<>".
#SPJ3