8 / 4 + 3 % 2
How do you do this problem? You have to do the order of operations for programming.

Answers

Answer 1

Answer:

Explanation:

3 (4 -6) = -8 is correct.  The next step is to combine 4 and -6, obtaining

3(-2)

and this 3(-2) should equal -6, which is not the same as -8.

3(4 - 6) = 12 - 18, which differs from the student's solution.  This is the reason for the wrong answer.

Answer 2

Answer:

3 (4 -6) = -8 is correct.  The next step is to combine 4 and -6, obtaining

3(-2)

and this 3(-2) should equal -6, which is not the same as -8.

3(4 - 6) = 12 - 18, which differs from the student's solution.  This is the reason for the wrong answer.

Explanation:


Related Questions

Type the correct answer in the box. Spell all words correctly. Which class is required to create an object that accepts input in Java

Answers

Answer:

Explanation:

In order to ask for and accept an input in Java you first need to import the Scanner class into your file. Once you have imported this class you then need to create a Scanner object and assign it a variable. Next you would need to print to the system the question that you want the user to input an answer to. Lastly, you save the input into a string variable to use for later. An example of which can be seen in the following code...

Scanner input = new Scanner(System.in);

System.out.println("Enter an answer: ");

String answer = input.nextLine();

Which of the following types of media distribution is considered "traditional"?

Answers

Answer:

Marketers have used traditional media such as print, radio, TV, yellow pages and even outdoor ads to reach consumer markets for the last 50 to 100 years. Traditional media can also play a role in the marketing mix for many B2B companies. These media often reach a broad audience and thus can be relatively expensive.

Explanation:

Answer:

Your answer would be ''television''

Explanation:

Traditional media refers to forms of mass media that focus on delivering news to the general public or a targeted group of the public. Traditional forms of media include print publications (newspapers and magazines), broadcast news (television and radio) and, in recent years, the digital version of those media outlets, such as digital newspapers and blogs.

The definition of network is:
A. the world wide web
B. the internet
C. a special computer that is used to store files and programs
D. two or more computers linked by cable, telephone lines or other communication devices

Answers

[tex]\text{Hello there!}[/tex]

Networks were originally used as a government weapon 61 years ago to communicate information such as data and research. However, individual networks were eventually discontinued by the government and made open to the public to use for things such as PAN, LAN, MAN, WAN, SAN, and so on.

Our internet today is capable of communicating with bilions of computers. This is possible due to your modem using radio wave-like speeds to connect to your ISP. Your ISP then connects to a larger network, which is connecting to thousands of other networks. You see, the internet is just a large network of networks that are connected through very fast radiowaves. However, it is not just a single network being used anymore; it's thousands of them. The term, "internet" was used to describe this large selection of networks. In short, B would be incorrect.

The worldwide web is a protocol used by the internet to connect to select websites favourably from whoever's using it. This obviously would not define the network, as this is something that's used by it. Furthermore, A would not be correct.

As described already, the network was a selection of computers used to communicate information to each other. C would not be correct as it states that there is only one computer being used.

[tex]\fbox{Therefore, D would be the correct answer.}[/tex]

[tex]\rule{300}{1.5}[/tex]

Describe how sharing and collaborating a spreadsheet can help the author of the spreadsheet.

hurry and answer you will get a brainly this is for a school assignment

Answers

It can help ensure that everything is correct. Having an extra set of eyes can never hurt :)

The author can save an Excel workbook as a shared workbook if they want multiple users to work in it at once. Then, users can enter data, add rows and columns, modify calculations, and alter formatting.

What is spreadsheet?

Data that has been arranged into rows and columns can be stored, displayed, and edited using spreadsheet software. The spreadsheet is one of the most used tools for personal computers. A spreadsheet is typically used to record numerical data and brief text strings.

A spreadsheet is a computer program used for tabular data organization, calculations, and storage. Spreadsheets were developed as electronic replacements for the old-fashioned paper accounting spreadsheets. The software runs on the data entered into a table's cells.

Thus, The author can save an Excel workbook as a shared workbook.

For more information about spreadsheet, click here:

https://brainly.com/question/8284022

#SPJ2

Discuss the advantages of DBMS over file-based information systems

Answers

Answer:

The primary benefits of DBMS over all the file processing parameters are described elsewhere here.

Explanation:

Flexibility:

So even though initiatives, as well as data, seem to be autonomous, projects don't have to be reconfigured because once totally unconnected input parameters were also incorporated or otherwise deactivated or removed from either the directory and whenever storage devices modifications are introduced.

Less storage:

Hypothetically, only certain instances of data elements now have to be collected once and only, eradicating the availability of redundant information.

(a) Draw a flow chart to a program that will have a servo arm move based on an input from a distance sensor. The sensor values will range from 20cm to 30cm and the servo angle should be proportional to the sensor values. (b) Write this algorithm using pseudo code. (c) Write the algorithm as if you are writing in Arduino IDE

Answers

Answer:

c

Explanation:

got it right

You wrote a program to allow the user to guess a number. Complete the code to get a number from the user.

# Get a guess from the user and update the number of guesses.

guess =

("Guess an integer from 1 to 10: ")

NEED HELP FAST

Answers

Answer:

import random

number = random.randrange(1, 10)

is_guess = 'y'

while is_guess == 'y':

   try:

       guess = int(input("Guess an integer number between 1 and 10: "))

       if guess < 1 or guess >10:

           print("You have exceeded the guessing range, try again")

           continue

       elif guess == number:

           print("Congrats! You guessed right.")

       else:

           print("Sorry, you guessed wrong")

   except ValueError:

       print("Your guess must be an integer number.")

   is_guess = input("Do you want to try again y/n ? ")

Explanation:

The random module of the python programming language is used to randomly select an integer value from a range of numbers. The guess variable value is a user input of an integer number.

If the guess variable is equal to the random number, then the program prints a congratulatory message. The program is no constant loop so long as the is_guess variable is equal to 'y'.

The try-except statement is used to detect the value error of the guess variable.

Answer:

input

Explanation:

Please program this in Python
Write the function spell_name that will takes a name as its input, then returns a list where each character in their name is an element.

For example,

spell_name('Jessica')
# => ['J', 'e', 's', 's', 'i', 'c', 'a']
spell_name('Ariel')
# => ['A', 'r', 'i', 'e', 'l']

# fill in this function to return a list ontaining each character in the name
def spell_name(name):
return []

Answers

def spell_name(name):

   return [x for x in name]

print(spell_name("Jessica"))

I wrote my code in python 3.8. I hope this helps.

The program returns list containing each individual letter in a string. The function written in python 3 goes thus :

def spell_name(str):

#initialize a function named spell_name which takes in a single parmater which is a string.

return [letter for letter in str]

#using list comprehension separate each individual letter in the string as an individual element.

print(spell_name('Aisha'))

#A sample run of the program with the string 'Aisha'.

The output of the sample program is attached.

Learn more : https://brainly.com/question/19012132

what chemical process adds elements such as boron and phosphorus to make the silicon cell suitable for electrical conduction.

Answers

Answer:

i think its copper

Explanation:

Sarah is a detail-oriented programmer. While testing her program, what other skill would she have to apply in order to detect all bugs?
A.
troubleshooting
B.
business skills
C.
managerial skills
D.
concentration
E.
time management

Answers

Answer:

A. troubleshooting

Explanation:

Troubleshooting is the process of trying to detect problems with a software or hardware component so as to apply solutions to it.

Therefore, Sarah would need troubleshooting skills to help her test her program to detect all bugs and fix it.


Some commands listed in a menu cannot be selected.


True or False

Answers

True! Have a nice week

Answer:

Explanation:

it is true

Choose the correct climate association for: deciduous forest

Answers

Answer:

Mid Latitude Climate!

Explanation:

I've studied this! Hope this helps! :)

Answer:

mid-latitude climate

Explanation:

Correct answer on a quiz.

difference between multidimensional arrays and an example​

Answers

Answer:

The generic data structure of a n-dimensional array is a tensor.

An example with 3 dimension can be a cube that contains the following dimensions: users, items, time. That cube can represent the interactions of  users with verifiied pages of public interests (influencers or company/media pages) in time slots (e.g. weekly timeslots).

Explanation:

You can represent in a sparse 3-dimensional array (tensor) the combinations of which user interacted with wich item in a given timeslow.

A programmer hacks software code to understand how it works. Then she writes a program that replicates the implementation of a solution that has already been granted intellectual property protection. This is an example of a:

Answers

Answer:

Patent violation.

Explanation:

Patent can be defined as the exclusive or sole right granted to an inventor by a sovereign authority such as a government, which enables him or her to manufacture, use, or sell an invention for a specific period of time.

Generally, patents are used on innovation for products that are manufactured through the application of various technologies.

Basically, the three (3) main ways to protect an intellectual property is to employ the use of trademarks, copyright and patents.

In this scenario, a programmer hacks software code to understand how it works. Then she writes a program that replicates the implementation of a solution that has already been granted intellectual property protection.

Hence, this is an example of a patent violation because she was not given the permission or rights by the intellectual property owner to modify the software.

Given sphereRadius and piVal, compute the volume of a sphere and assign sphereVolume with the result. Use (4.0 / 3.0) to perform floating-point division, instead of (4 / 3) which performs integer division.

Volume of sphere = (4.0 / 3.0) Ï r3 (Hint: r3 can be computed using *)
import java.util.Scanner;
public class SphereVolumeCalculator {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
double piVal = 3.14159;
double sphereVolume;
double sphereRadius;
sphereRadius = scnr.nextDouble();
*insert code*
System.out.println(sphereVolume);
}
}

Answers

Answer:

The code to this question can be defined as follows:

sphereVolume = (4.0/3.0)*piVal*sphereRadius*sphereRadius*sphereRadius; // defining a double variable sphereVolume that calculate and hold its value

Explanation:

Please find the complete code in the attachment file.

In the code, a class "SphereVolumeCalculator" is declared, and inside the main method Three double variable "piVal,  sphereRadius, and sphereVolume" , in which "piVal" is used to hold a value, in the next step scanner class object is created for holding the "shereRadius" value and the sphereVolume is used for calculate and print its value.  

For this exercise, we are going to take a look at an alternate Calculator class, but this one is broken. There are several scope issues in the calculator class that are preventing it from running. Your task is to fix the Calculator class so that it runs and prints out the correct results. The CalculatorTester is completed and should function correctly once you fix the Calculator class.
public class Calculator {
private int total;
private int value;
public Calculator(int startingValue){
int total = startingValue;
value = 0;
}
public int add(int value){
int total = total + value;
return total;
}
/**
* Adds the instance variable value to the total
*/
public int add(){
int total += value;
return total;
}
public int multiple(int value){
int total *= value;
return total;
}
public void setValue(int value){
value = value;
}
public int getValue(){
return value;
}
}

Answers

Answer:

public class Calculator {

   private int total;

   private int value;

   

   public Calculator(int startingValue){

       // no need to create a new total variable here, we need to set to the our instance total variable

       total = startingValue;

       value = 0;

   }

   public int add(int value){

       //same here, no need to create a new total variable. We need to add the value to the instance total variable

       total = total + value;

       return total;

   }

   /**

   * Adds the instance variable value to the total

   */

   public int add(){

       // no need to create a new total variable. We need to add the value to the instance total variable

       total += value;

       return total;

   }

   public int multiple(int value){

       // no need to create a new total variable. We need to multiply the instance total variable by value.

       total *= value;

       return total;

   }

   //We need to specify which value refers to which variable. Otherwise, there will be confusion. Since you declare the parameter as value, you need to put this keyword before the instance variable so that it will be distinguishable by the compiler.

   public void setValue(int value){

       this.value = value;

   }

   public int getValue(){

       return value;

   }

}

Explanation:

I fixed the errors. You may see them as comments in the code

Which of the following does Not impact your credit score?

Answers

Answer:your race, gender, marital status, education level, religion, political party or income, those details can't be factored into your credit scores.

Explanation:

HELP NEEDED ASAP!!!
Early mixing systems had some severe limitations. Which of the following statements best describes one of those
limitations:
1. They could not fast forward.
2. They could not edit.
3. They could not play more than one track at a time.
4. They could not play in reverse.

Answers

<8□}□{●{●{《{¤□■♡¤■▪︎gusygydfig8f6r7t8t437r7fyfu

What other viruses, Trojans, worms, or malicious software were identified and quarantined by AVG within the Virus Vault

Answers

Answer:

Exploit, trojan horse dropper

Explanation:

When using AVG AntiVirus Business Edition to scan a computer system, it is expected that the AntiVirus application will recognize the viruses, worms, Trojans, malware, and/or other malicious software that is present in an infected PC device.

These other viruses, Trojans, worms, or malicious software that were identified and quarantined by AVG within the Virus Vault are: Exploit, trojan horse dropper

How much tabs can you open with 8GB of ram? ​

Answers

Answer:

Infinite.

Explanation:

Every Tab on chrome generates separate process in Task Manager. So depends on your RAM how many tabs you want to open.At one limit all of your RAM occupied. That's the limit for you.

You can have more that one image open at a time in GIMP. True or false

Answers

Answer:

true....... you can superimpose so that's more than 1 image

The Python language uses a compiler which is a program that both translates and executes the instructions in a high-level language. True False

Answers

Answer:

False.

Explanation:

A compiler is a computer program that has the function of translating a computer program developed in a certain programming language, so that it is readable through the use of another programming language. Thus, for example, a program designed in Python is translated so that it is readable in Java, etc.

The main objective of compilers is to connect the different programming languages, making the programs executable on different devices without the need to have the same programming language for it.

How is computer science used in entertainment? (Please don’t use GoogIe)

Answers

Answer:

If you are talking in general then you could say computer science is what makes up most indie games. Games like Spelunky and Undertale are games that were programmed to make the characters have movement and abilities. You can also make websites that could have interactive parts or areas that show some kind of media using html with a bit of other programming languages.

Computer science is used in entertainment as the knowledge of the use of computer is used in making animations and movies that people can just relax and watch.

How is computer used in entertainment?

Computers is known to be an electronic machine that helps use to have a lot of access to a lot of  devices such as keyboards, etc. that can be used for entertainment.

Conclusively, Computer games are known to be used mostly for entertainment because its users can manipulate it to their taste. The use of computer is therefore important in entertainment.

Learn more about computer from

https://brainly.com/question/24540334

A network administrator determines who may access network resources by assigning users
ONICS
OUTPS
O permissions
O nodes

Answers

Answer: permissions

Explanation:

Users permissions is defined as the authorization that is given to users which in turn, allows such individual(s) to be able to have access to certain resources on a particular network.

Therefore, the user permission can be utilized by a network administrator so tht he or she can determines who can have access to network resources.

You should include the words "Under Construction" on your site while you are working on it True O False W This is not the answer​

Answers

Answer:

true

Explanation:

so that the idiots dont die if they walk through the site

Johnathan was assigned to complete a project with three other people. What benefit will he get from working with the team?

Independence
Increased creativity
Easy class credit
Easy decision making

Answers

Answer:

2.

Explanation:

working with other people can increase ones creativity

52. An assignment statement will:
a. Perform a calculation
b. Store the results of a calculation
c. Display the results of a calculation
d. Both a and b.

Answers

Answer:

D.both a and b.

Explanation:

sana makatulong

Answer:

I believe that the answer is d. both a and b.

PLEASE ANSWER!! If my pixel has an RGB value of (R - 150, G - 0, B - 100), what is the dominant value? Why?

Answers

Red because 150 is the largest number

Jonathan wants to create an online journal. He will use it to share with his friends all the cool places he visits while in Europe. Which social networking tool should Jonathan use to create a journal while on his trip?
a: email
b: a blog
c: a wiki
d: a forum

Answers

Answer:

a blog

Explanation:

a forum is for questions, a wiki doesn't make sense in this situation and email wouldn't be used for this either so it should be a blog

The correct answer is b I hope this helps luv

The purpose of special effects in business publications is to increase the effectiveness of the communication. True False

Answers

It’s true. :)) have a great day
Other Questions
A farmer wants to decrease water waste on her land. She is currently using flood and furrow irrigation. Propose the irrigation solution that will meet the needs of the farmer. Explain the reason for your selection. Describe the unintended consequences for the potential solution. Lee y escoge la opcin que tiene el vocabulario necesario para completar las frases correctamente. Read and select the option that has the vocabulary needed to complete the sentences.Buenos das. Mi amiga es Amelia; 1. ________ tiene el refresco y las papas.Gracias. Qu tiene 2. ________, seora Martos? 1. ella 2. usted 1. ella 2. t 1. l 2. usted 1. usted 2. ella At December 31, 2021, Moonlight Bay Resorts had the following deferred income tax items: Deferred tax asset of $62 million related to a current liability Deferred tax asset of $40 million related to a noncurrent liability Deferred tax liability of $128 million related to a noncurrent asset Deferred tax liability of $80 million related to a current asset Moonlight Bay should report in its December 31, 2021, balance sheet a: Multiple Choice Noncurrent deferred tax asset of $88,000 and a non-current deferred tax liability of $51 million. Current deferred tax liability of $22 million. Noncurrent deferred tax asset of $102 million and a non-current deferred tax liability of $208million. what impact did islam have on west africa? A ladder is leaning against the side of a building and positioned such that the base of the ladder is 17 ft from the base of the building. If theladder reaches 23 ft above the ground, how long is the ladder. Round your answer to the nearest tenth Find the slope of each line Which statement describes the negative role in a debate?A.) The negative role introduces participants.B.) The negative role presents the resolution.C.) The negative role debates against the resolution.D.) The negative role tells the audience the debate rules.Good night peeps sweet dreams Which one of the following symbols is a quarter rest?A BCD Another easy point question since I will not be posting until Tuesday.Do you believe people should treat plants better or plants can be treated however people wish. If you include enough factual evidence and head-turning details on why or why not I will mark you brainliest!I look forward to hearing your guys side of the story! Also I may or may not mark someone brainliest. Good luck! What is the area of this composite figure?O 30in.2O 32in2O 62in.2O 80 in.2 What do you notice about the net charges of theballoon and the hair after electric charges movedbetween them? Write inequalities to represent the situations below.The distance to the nearest exit door is at most 150 feet.Use d to represent the distance (in feet) to the nearest exit door. What happens to Robertos kinetic energy when he runs twice as fast? 1. One way that Native Americans influenced early American colonies was by -A. building skillsB. navigational skillsC. writing down lawsD. teaching farming skills The word ____ at the end of several of the member functions in the accompanying class definition specifies that these functions cannot modify the member variables of a clockType object. A 1570 kg car skidding due north on a level frictionless icy road at 156 km/h collides with a 2245.1 kg car skidding due east at 120 km/h in such a way that the two cars stick together. At what angle (180 +180 ) East of North do the two coupled cars skid off at? helpYou read a script about a poor young woman living in London in the 1980s who becomes a famous dancer. Which of the following authors would be most likely to have written this script? An 80-year-old man who was an engineer in Chicago. A 50-year-old woman who grew up in a poor part of London. A 19-year-old man who writes music reviews for an online magazine. A 25-year-old woman who works as a server in Las Vegas. A 3-pack of raffle tickets costs $5.76. What is the unit price For this exercise, we are going to take a look at an alternate Calculator class, but this one is broken. There are several scope issues in the calculator class that are preventing it from running. Your task is to fix the Calculator class so that it runs and prints out the correct results. The CalculatorTester is completed and should function correctly once you fix the Calculator class.public class Calculator {private int total;private int value;public Calculator(int startingValue){int total = startingValue;value = 0;}public int add(int value){int total = total + value;return total;}/*** Adds the instance variable value to the total*/public int add(){int total += value;return total;}public int multiple(int value){int total *= value;return total;}public void setValue(int value){value = value;}public int getValue(){return value;}} The Aztecs disappeared suddenly and little is known as to why. Please select the best answer from the choices provided TF