In a(n) ________ either one condition or some other condition must be met in order for an event to take place.a. nested decision
b. AND decision
c. OR decision
d. logical decision

Answers

Answer 1
Answer:

I think the answer is D

hopethishelpsyouout


Related Questions

Photo editing can transform any image into a great photograph. True or Flase WILL GIVE BRAINLIEST TO FIRST ANSWER
Maria is an experienced programmer who has worked on different projects. she was recently promoted to be a software development team leader. what skills must programmers like maria exemplify in order to do well as a team leader?
Electronic ledger that tracks mathematical data
for the employee class program in the unit 3 finishing the employee class program tutorial, what if we need to update the display menu and selections to add in a way to change the id of an employee? what code segments would need to be added to the display menu() method and the command while loop respectively to implement this?
Which precautions should you follow to prevent an abrasive wheel from cracking? a. all of the answers are correct b. fit the wheel on the spindle c. make sure the spindle speed does not exceed the maximum speed marked on the wheel d. tighten the spindle nut enough to hold the wheel in place without distorting the flange

David writes an essay as part of an assignment at school. He wants to indent the first lines of several paragraphs. With a word processing program such as OpenOffice Writer, which tab in the Paragraph dialog box would allow him to indent the first line automatically?A) Alignment
B) Indents & Spacing
C) Text Flow
D) Outline & Numbering

Answers

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.

The answer is self explanatory, B

What span of dates best represents the Romantic era?

Answers

Romantic Era takes place from 1800 to 1850.

The movement is called Romanticism which takes place in the 18th Century in Europe. In this era, emotion and individualism, as well as the glorification of all the past and nature and emphasized. Medieval is also much preferred  than classical.

Answer:

1820-1900

Explanation:

55 POINTS, IN JAVAIn this program, you need to make an upright tree that contains stars *. Your output should look like:
*
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * * * *
* * * * * * * * *

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!

Answers

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.

Regional culture has been affected by technology in these ways. Select all that apply. decreased educational opportunities improved communication access increased exposure to western culture increased regional isolation threatened traditional values

Answers

Below are the effects of technology in a Regional Culture:
- improved access to communication- increased exposure to western culture- traditional values threatened 
Technology has evolved the ways of communications. It's faster and efficient. Examples are mobiles, telephone, and the internet. The Internet affects the culture of a region the most. By being exposed on the internet, most of the youths are liberated by the western culture and it threatened the traditional values of a region in some ways.

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.

How many of devices you identified inside the control room need to magnetism to operate

Answers

the answer is 3 devices

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

Given an "out" string length 4, such as "<<>>", and a word, return a new string where the word is in the middle of the out string, e.g. "<>". Note: use str.substring(i, j) to extract the String starting at index i and going up to but not including index j.makeOutWord("<<>>", "Yay") → "<>"
makeOutWord("<<>>", "WooHoo") → "<>"
makeOutWord("[[]]", "word") → "[[word]]"

Answers

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:

Final answer:

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.

Explanation:

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 "<>".

Learn more about String Manipulation here:

brainly.com/question/35897567

#SPJ3