Given class SimpleCar , which line has a syntax error? public class SimpleCar { private int odometer; public void drive(int miles) { odometer = odometer + miles; } } 1 Object objCar; 2 objCar = new SimpleCar(); 3 System.out.println(objCar.toString()); 4 objCar.drive();

Answers

Answer 1

Answer:

4 objCar.drive();

Explanation:

The java program defines a class called SimpleCar which has a void method called drive() that accepts one integer argument.

A method is a function defined in a class. The drive() method used in the program has no argument and so would throw an error message.


Related Questions

what type of computer is an ATM attached to ?

Answers

ATM machine uses a CPU to control the user interface and transaction devices

If this doesn’t help lmk I can add something else

why is the statement if x=y not working in python

Answers

Answer:

x=1

Explanation:

Re-run your installer (e.g. in Downloads, python-3.8. 4.exe) and Select "Modify". Check all the optional features you want (likely no changes), then click [Next]. Check [x] "Add Python to environment variables", and [Install]

Create a query that lists the total outstanding balances for students on a payment plan and for those students that are not on a payment plan. Show in the query results only the sum of the balance due, grouped by PaymentPian. Name the summation column Balances. Run the query, resize all columns in the datasheet to their best fit, save the query as TotaiBalancesByPian, and then close it.

Answers

A query has been created that lists the total outstanding balances for students on a payment plan and for those students that are not on a payment plan.

In order to list the total outstanding balances for students on a payment plan and for those students that are not on a payment plan, a query must be created in the database management system. Below are the steps that need to be followed in order to achieve the required output:

Open the Microsoft Access and select the desired database. Go to the create tab and select the Query Design option.A new window named Show Table will appear.

From the window select the tables that need to be used in the query, here Student and PaymentPlan tables are selected.Select the desired fields from each table, here we need StudentID, PaymentPlan, and BalanceDue from the Student table and StudentID, PaymentPlan from PaymentPlan table.Drag and drop the desired fields to the Query Design grid.

Now comes the main part of the query that is grouping. Here we need to group the total outstanding balances of students who are on a payment plan and who are not on a payment plan. We will group the data by PaymentPlan field.

The query design grid should look like this:

Now, to show the query results only the sum of the balance due, grouped by PaymentPlan, a new column Balances needs to be created. In the field row, enter Balances:

Sum([BalanceDue]). It will calculate the sum of all balance dues and rename it as Balances. Save the query by the name TotalBalancesByPlan.Close the query design window. The final query window should look like this:

The above image shows that the balance due for Payment Plan A is $19,214.10, while for Payment Plan B it is $9,150.50.

Now, in order to resize all columns in the datasheet to their best fit, select the Home tab and go to the Formatting group. From here select the AutoFit Column Width option.

The final output should look like this:

Thus, a query has been created that lists the total outstanding balances for students on a payment plan and for those students that are not on a payment plan.

For more such questions on query, click on:

https://brainly.com/question/30622425

#SPJ8

Elza hos a document with plain text. She wants to format only the second paragraph of the fifth page to have two
columns. What sequence of buttons will Eliza click to set up the correct type of section break for this?
O Page Layout, Breaks, Page
O Page Layout, Breaks, Continuous
Insert, Page Break
O Insert, Continuous

Answers

Page layout breaks page

The main issues covered by IT law are: Hardware licensing Data privacy Department security True False

Answers

The main issues covered by IT law are: Hardware licensing, Data privacy, Department security is a true statement.

What topics are addressed by cyber law?

There are three main types of cyberlaw:

Human-targeted crimes (e.g.: harassment, stalking, identity theft) Vandalism of property (e.g.: DDOS attacks, hacking, copyright infringement) The theft from the govt (e.g.: hacking, cyber terrorism)

Cyber law includes provisions for intellectual property, contracts, jurisdiction, data protection regulations, privacy, and freedom of expression. It regulates the online dissemination of software, knowledge, online safety, and e-commerce.

Note that some Internet security issues that must be considered are:

Ransomware Attacks. IoT Attacks. Cloud Attacks. Phishing Attacks.Software Vulnerabilities, etc.

Learn more about IT law from

https://brainly.com/question/9928756
#SPJ1  

12.2 question 3 please help

Instructions

Write a method swap_values that has three parameters: dcn, key1, and key2. The method should take the value in the dictionary dcn stored with a key of key1 and swap it with the value stored with a key of key2. For example, the following call to the method
positions = {"C": "Anja", "PF": "Jiang", "SF": "Micah", "PG": "Devi", "SG": "Maria"}
swap_values(positions, "C", "PF")
should change the dictionary positions so it is now the following:
{'C': 'Jiang', 'PF': 'Anja', 'SF': 'Micah', 'PG': 'Devi', 'SG': 'Maria'}

Answers

Answer:

def swap_values(dcn, key1, key2):

   temp = dcn[key1] # store the value of key1 temporarily

   dcn[key1] = dcn[key2] # set the value of key1 to the value of key2

   dcn[key2] = temp # set the value of key2 to the temporary value

positions = {"C": "Anja", "PF": "Jiang", "SF": "Micah", "PG": "Devi", "SG": "Maria"}

print("Initial dictionary: ")

print(positions)

swap_values(positions, "C", "PF")

print("Modified dictionary: ")

print(positions)

Explanation:

What Should be the first step when troubleshooting

Answers

The first step in troubleshooting is to identify and define the problem. This involves gathering information about the issue, understanding its symptoms, and determining its scope and impact.

By clearly defining the problem, you can focus your troubleshooting efforts and develop an effective plan to resolve it.

To begin, gather as much information as possible about the problem. This may involve talking to the person experiencing the issue, observing the behavior firsthand, or reviewing any error messages or logs associated with the problem. Ask questions to clarify the symptoms, when they started, and any recent changes or events that may be related.Next, analyze the gathered information to gain a better understanding of the problem. Look for patterns, commonalities, or any specific conditions that trigger the issue. This analysis will help you narrow down the potential causes and determine the appropriate troubleshooting steps to take.

By accurately identifying and defining the problem, you lay a solid foundation for the troubleshooting process, enabling you to effectively address the root cause and find a resolution.

For more questions on troubleshooting

https://brainly.com/question/29736842

#SPJ8

program a macro on excel with the values: c=0 is equivalent to A=0 but if b is different from C , A takes these values

Answers

The followng program is capable or configuring a macro in excel

Sub MacroExample()

   Dim A As Integer

   Dim B As Integer

   Dim C As Integer

   

   ' Set initial values

   C = 0

   A = 0

   

   ' Check if B is different from C

   If B <> C Then

       ' Assign values to A

       A = B

   End If

   

   ' Display the values of A and C in the immediate window

   Debug.Print "A = " & A

   Debug.Print "C = " & C

End Sub

How does this work  ?

In this macro, we declare three integer   variables: A, B, and C. We set the initial value of C to 0 and A to 0.Then, we check if B is different from C using the <> operator.

If B is indeed different from C, we assign the value of B to A. Finally, the values of A and C are displayed   in the immediate window using the Debug.Print statements.

Learn more about Excel:
https://brainly.com/question/24749457
#SPJ1

Discuss why traits such as teamwork and self representation are necessary for a successful career in the media industry

Answers

Because it helps you to be a better you it helps you to believe in yourself and to think about all the things you have in life and to help you to work together with other people through thick and thin.

Because it aids to be a better and also it helps you to believe in yourself and to think about all the things you have in life and to help you to work together with other people.

What is teamwork?

Teamwork is a group's collaborative effort to achieve a common goal or complete a task in the most effective and efficient manner.

This concept is seen in the context of a team, which is a group of interdependent individuals who work together to achieve a common goal.

Good teamwork entails a synergistic approach to work, with each individual committed to and working toward a common goal. Teamwork maximizes team members' individual strengths to bring out their best.

Good teamwork entails a synergistic approach to work, with each individual committed to and working toward a common goal. Teamwork maximizes team members' individual strengths to bring out their best.

Thus, traits such as teamwork and self representation are necessary for a successful career in the media industry.

For more details regarding teamwork, visit:

https://brainly.com/question/18869410

#SPJ2

You are the PC technician for a company. An employee has stepped out of their office while you fix a computer problem they have been having. They have accidentally left a report open next to their computer which states that a friend of yours in accounting will be submitted for review if their poor work performance continues. What should you do?
answer choices
Tell your friend the information you have learned and under what circumstances it was obtained
Ignore the paper and tell no one of its contents.
Give your friend a heads up about what you found, but don’t disclose from where you heard the information.
Tell your fellow PC technicians about what you saw, then let them decide what to do with the information.

Answers

Ignore the paper and tell no one of its contents.

What is PC technician?

Computer technicians assist clients in locating and resolving problems with their computers. They look at a computer's circuit board, disc drivers, and other parts when testing hardware. They employ a variety of diagnostic tools and programmes to analyse a computer's software in order to find and fix functioning problems.

A wonderful way to get started in an entry-level IT position is to become a PC technician. The typical requirement for a PC technician is at least an eligible undergraduate degree. For someone to work as a PC technician, experience is also crucial. The more computers you've handled and fixed, the better you'll be at using your past expertise to meet the needs of potential clients.

Read more about PC technician:

https://brainly.com/question/28852000

#SPJ4

You are the PC technician for a company. Do not discuss the paper's contents with anyone.

Option B is correct.

What does a PC technician do?

Customers receive assistance from computer technicians in locating and resolving computer issues. When testing hardware, they examine the circuit board, disc drivers, and other components of a computer. They look at a computer's software with a variety of diagnostic tools and programs to find and fix problems with how it works.

Becoming a PC technician is an excellent way to get started in an entry-level IT position. A minimum of an eligible undergraduate degree is typically required for a PC technician. Experience is also a requirement for working as a PC technician. The more computers you've worked on and fixed, the better you'll be at using what you know to meet potential customers' needs.

Learn  more about PC technician:

brainly.com/question/28852000

#SPJ4

Upon returning from a year long working holiday, Alberta, the youngest of 4 sisters, announced her whirlwind marriage. Her 3 sisters, Carla, Paula, and Roberta,
were amazed by her husband's name.
• The 4 men are Albert, Carl, Paul, and Robert. Their last names are Albertson, Carlson, Paulson, and Robertson.
• No woman's husband has a first name that consists of her first name without the final "a"; no woman's last name consists of her first name without the final
"a" and with "son" on the end; and, no man's last name consists of his first name with "son" added at the end.
• Paul is not married to Roberta, and Robert is not married to Paula.
• No husband and wife have "bert" in both their first names, but there is a man who has "bert" in his first and last names.
Carl's last name is not Paulson.
Work out Alberta's husband's first and last name, as well as Carla's, Paula's, and Roberta's husbands' first and last name

Answers

The couples, considering the patterns in the problem, are listed as follows:

Carla and Robert Paulson.Paula and Albert Robertson.Alberta and Paul Carlson.Roberta and Carl Albertson.

What are the couples?

We use the information from the bullet points to find the couples.

The first information is:

No woman's husband has a first name that consists of her first name without the final "a".

Hence:

Alberta is married to either Carl, Paul or Robert.Carla is married to either Albert, Paul or Robert.Paula is married to either Albert, Carl or Robert.Roberta is married to either Albert, Carl or Paul.

The second information is:

Paul is not married to Roberta, and Robert is not married to Paula.

Hence:

Roberta is married to either Albert or Carl.Paula is married to either Albert or Carl.

No husband and wife have "bert" in both their first names, hence:

Roberta is married to Carl.Paula is married to Albert.Alberta is married to Paul.Carla is married to Robert.

No woman's last name consists of her first name without the final "a" and with "son" on the end, and no man's last name consists of his first name with "son" added at the end, hence:

Roberta and Carl are either Albertson or Paulson.Paula and Albert are either Carlson or Robertson.Alberta and Paul are either Carlson or Robertson.Carla and Robert are either Albertson or Paulson.

There is a man who has "bert" in his first and last names, hence either of these two can be couples.

Carla and Robert Albertson.Paula and Albert Robertson.

Carl's last name is not Paulson, hence a couple is:

Carla and Robert Paulson.

Then Carla and Robert are Paulson, and the couples are:

Carla and Robert Paulson.Paula and Albert Robertson.Alberta and Paul Carlson.Roberta and Carl Albertson.

More can be learned about patterns at https://brainly.com/question/18941199

#SPJ1

How does one take personal responsibility when choosing healthy eating options? Select three options.

1 create a log of what one eats each day
2 increase one’s consumption of fast food
3 critique one’s diet for overall balance of key nutrients
4 identify personal barriers that prevent an individual from making poor food choices
5 eat only what is shown on television advertisements

Answers

The three options to a healthier eating culture are:

create a log of what one eats each daycritique one’s diet for overall balance of key nutrientsidentify personal barriers that prevent an individual from making poor food choices

How can this help?

Create a log of what one eats each day: By keeping track of what you eat, you become more aware of your eating habits and can identify areas where you may need to make changes. This can also help you to monitor your intake of certain nutrients, and ensure that you are getting enough of what your body needs.

Critique one’s diet for overall balance of key nutrients: A balanced diet should include a variety of foods from different food groups. By assessing your diet, you can determine whether you are consuming enough fruits, vegetables, whole grains, lean proteins, and healthy fats. If you find that you are lacking in any of these areas, you can adjust your eating habits accordingly.

Read more about healthy eating here:

https://brainly.com/question/30288452

#SPJ1

Readable code

1. is written in large font.
2. is written neatly in straight columns.
3. is easy to understand and useful to other programmers working with the code.
4. is password protected so that only authorized programmers can access it.

Answers

Answer:

Readable code is easy to understand and useful to other programmers working with the code, or C on Edge.

Explanation:

It's in the notes on edge in the "Readible Code" section

Readable code is code that is well-structured, commented, and easy to understand, making it useful to other programmers working with the code. Therefore, the correct answer is option C.

The most important part of writing readable code is making sure it is well-structured and easy to understand for other programmers. This means using consistent formatting such as clear indentations, consistent naming conventions, and including comments to explain logical operations. Additionally, making sure the code is written in a large font so that it is not too small can be helpful in improving readability. Finally, password protecting the code so only authorized programmers can access it can help prevent tampering and unauthorized modifications.

Therefore, the correct answer is option C.

Learn more about the readable code here:

https://brainly.com/question/19540657.

#SPJ2

How do you handle sensitive data?

Answers

Take stock. Know what personal information you have in your files and on your computers.Scale down. Keep only what you need for your business.Lock it. Protect the information that you keep.Pitch it. Properly dispose of what you no longer need.plan ahead

hope it helps

information technology please help​

information technology please help

Answers

Answer:

Read Technical Books. To improve your technical skills and knowledge, it's best to read technical books and journals. ...

Browse Online Tutorials. ...

Build-up online profile. ...

Learn new Tools. ...

Implement what you learned. ...

Enrich your skillset. ...

Try-out and Apply.

Suppose an 80286 microprocessor is in protected mode. How it is switched back
to real address mode operations.

Answers

Answer:

  hardware-initiated reset

Explanation:

Once in protected mode, the 80286 is designed to remain there until it is reset by hardware.

__

External hardware can be designed so that software can cause such a reset. In the 1984 PC/AT, such hardware combined with code in the BIOS allowed real mode re-entry and returned execution control to the program that caused the reset.

cs academy unit 8.3.2 Shirt Design

cs academy unit 8.3.2 Shirt Design

Answers

In order to fix the code and make it work, you can try the following corrections:

How to explain the program

# Import the necessary libraries here

# Set the background color

app.background = 'pink'

# Draw the shirt

Polygon(5, 175, 85, 60, 315, 60, 395, 175, 330, 235, 290, 190, 300, 355, 100, 355, 110, 190, 70, 237, fill='lavenderBlush')

Arc(200, 60, 95, 70, 90, 180, opacity=10)

# Use a loop to draw stars

for radius in range(10, 100, 5):

   # Draw a crimson star whenever the radius is a multiple of 10 and a white star otherwise

   if radius % 10 == 0:

       Star(200, 210, radius, 6, fill='red')

   else:

       Star(200, 210, radius, 6, fill='white')

# Display the graphic

# Add code here to show or update the graphic window

Learn more about program on

https://brainly.com/question/26642771

#SPJ1

Suppose you present a project and your supervisor comments that the graphics need to be a higher quality and suggests you replace a circuit board. To what circuit board is your supervisor referring?


graphics card

video card

sound card

system card

Answers

Answer:graphics card

Explanation:

Answer:

graphics card

Explanation:

1. Railroad tracks present no problems for a motorcyclist.
A. O TRUE
B. O FALSE

2. Which of the following is considered to be a vulnerable road user?
A. Bicyclists
B. Motorcyclists
C. Pedestrians
D. all of the above

Answers

Answer: 1 is A

2 is D

Explanation:

plz help me with this I will mark as brainlest​

plz help me with this I will mark as brainlest

Answers

In order to keep PCs from a home connected to each other

plz help me with this I will mark as brainlest

Write a program that takes in a positive integer as input, and outputs a string of 1's and 0's representing the integer in binary. For an integer x, the algorithm is: As long as x is greater than 0 Output x % 2 (remainder is either 0 or 1) x = x // 2 Note: The above algorithm outputs the 0's and 1's in reverse order. You will need to write a second function to reverse the string. Ex: If the input is: 6 the output is: 110 Your program must define and call the following two functions. The function integer_to_reverse_binary() should return a string of 1's and 0's representing the integer in binary (in reverse). The function reverse_string() should return a string representing the input string in reverse. def integer_to_reverse_binary(integer_value) def reverse_string(input_string) python

Answers

Answer:

def integer_to_reverse_binary(integer_value):

   reverse_binary = ""

   while integer_value > 0:

       reverse_binary += str(integer_value % 2)

       integer_value = integer_value // 2

   

   return reverse_binary

   

def reverse_string(input_string):

   return input_string[::-1]

r = integer_to_reverse_binary(6)

print(reverse_string(r))

Explanation:

Create a function named integer_to_reverse_binary that takes one parameter, integer_value. Inside the function, initialize an empty string called reverse_binary to hold the result. Create a while loop that iterates while integer_value is greater than 0. Inside the loop, use the modulo operator to get the 0's and 1's and concatenate them to the reverse_binary. Use floor division to update the value of integer_value. After the loop, return the reverse_binary.

Create another function named reverse_string that takes one parameter, input_string. Inside the function, return the reverse of the input_string using slicing.

Call the functions to see the result

The program illustrates the use of loops or iterative statements.

Loops and iterations are used to perform repetitive operations.

The program in Python, where comments are used to explain each line is as follows:

#This defines the integer_to_reverse_binary function

def integer_to_reverse_binary(integer_value):

   #This initializes reverse_binary to an empty string

   reverse_binary = ""

   #This iteration is repeated while integer_value is greater than 0

   while integer_value > 0:

       #This gets the binary numbers

       reverse_binary += str(integer_value % 2)

       #This gets the remainder of integer_value divided by 2

       integer_value //= 2

   

   #This returns the binary string    

   return reverse_string(reverse_binary)

#This defines the reverse_string function

def reverse_string(input_string):

   #This returns the reversed string

   return input_string[::-1]

#This calls the integer_to_reverse_binary function

print(integer_to_reverse_binary(14))

The program is implemented using a while loop

Read more about similar programs at:

https://brainly.com/question/14742864

Write a flowchart and C code for a program that does the following: Within main(), it asks for the user's annual income. Within main(), it calls a function called printIt() and passes the income value to printIt().

Answers

Answer:

Write a flowchart and C code for a program that does the following: Within main(), it asks for the user's annual income. Within main(), it calls a function called printIt() and passes the income value to printIt().

Explanation:

You will write a flowchart, and C code for a program that does the following:1. Within main(), it asks for the user’s annual income.2. Within main(), it calls a function called printIt() and passes the income value to printIt().  3. The printIt() function evaluates the income, and if the number is over 90000, prints a congratulatory message.  If the income is not over 90000, it prints a message of encouragement, like “You WILL make $50,000, if you keep going.”Here is what the output looks like.File SubmissionUpload your Flowgorithm file, your .c file, and a screen shot of your code output saved in a Word document including the path name directory at the top of the screen into the dropbox for grading.

From the philosophical standpoint, especially in the discussion of moral philosophy or ethics, why do we consider “murder” or “killing” wrong or bad?

Answers

Explanation:

Morality is a set of values ​​and habits that a society acquires over time and can be categorized as good and bad values, right and wrong, justice and crime. Ethics is defined as the study of morals, the practical application of moral behaviors defined by society.

Therefore, the concept of "murder" or "killing" is seen as an immoral act by the vast majority of society around the world, strengthened by the set of moral conduct common to all human beings, which are the Articles on the Universal Declaration of Human Rights. Human Rights, which is an official document of the UN, which contains several universair and analytical rules on the rights of every individual, such as the right to life, security, freedom, etc.

Because stderr and stdout represent the results of a command and stdin represents the input required for a command, only stderr and stdout can be redirected to/from a file. True or false?.

Answers

It is a false statement that only stderr and stdout can be redirected to and from a file because they represent the result of a command and input required for a command respectively.

What is stdout?

Its means standard output which is the text output of a command is stored in the stdout stream.

What is stdin?

Its means standard input which is the text input of a command that is stored in the stdin stream.

What is stderr?

Its means standard error which is an error message stored in the error stream whenever a command faces an error.

In conclusion, It is a false statement that only stderr and stdout can be redirected to and from a file.

Read more about stderr

brainly.com/question/1191244

What is the difference between symbolic addressing and absolute addressing? Which addressing is easier to understand

Answers

Symbolic addressing varies from Absolute Addresses in that they specify relocatable addresses by either utilizing an emblem as the label in the name field of an assembler code statement or equating a symbol to a relocatable expression. Absolute addressing (or values) are obtained by equating a marker to an absolute expression.

What is a symbolic address?

A symbolic address is associated with a program symbol or a symbol defined by the Equate subcommand. The topic of certified symbolic addressing is covered further down. See Restrictions on the Use of Symbols for a more thorough explanation.

In memory management, the compiler binds symbolic addresses from the source program on disk to relocatable locations (which are the instruction addresses relative to each other). The linker then associates the relocatable address with absolute addresses (which are the physical addresses allocated in key memory).

The contents of a register reflect an absolute address. The contents of a register reflect an absolute address. In the sense that it is not stated relative to the present instruction address, this addressing method is absolute.

Learn more about addressing:
https://brainly.com/question/28769221
#SPJ1

To solve the difficulty of scaling memory organization, memories are physically organized into a ____-dimensional organization.
A) one
B) two
C) three
D) multi

Answers

The answer is D) multi

Which type of data is used to form images in MakeCode Arcade?

O A. Variable data
OB. Boolean data
C. String data
OD. Array data

Answers

Answer:

string data i think

Explanation:

Consider the following relation with functional dependencies as shown below.R{sno,sname,age,cno,cname,group}
R(A,B,C,D,E,F)
A-B,C
C-F
D-E
which normal form is the relation R is in?

Answers

Answer:

First Normal Form

Explanation:

The correct answer is - First Normal Form

Reason -

Given that,

A-B,C

C-F

D-E

Here the key is AD

The two partial Functional dependencies are -

A-B,C  

D-E

So,

They are not in Second Normal Form, but they are in First Normal Form.

Need help with this python question I’m stuck

Need help with this python question Im stuck
Need help with this python question Im stuck
Need help with this python question Im stuck

Answers

It should be noted that the program based on the information is given below

How to depict the program

def classify_interstate_highway(highway_number):

 """Classifies an interstate highway as primary or auxiliary, and if auxiliary, indicates what primary highway it serves. Also indicates if the (primary) highway runs north/south or east/west.

 Args:

   highway_number: The number of the interstate highway.

 Returns:

   A tuple of three elements:

   * The type of the highway ('primary' or 'auxiliary').

   * If the highway is auxiliary, the number of the primary highway it serves.

   * The direction of travel of the primary highway ('north/south' or 'east/west').

 Raises:

   ValueError: If the highway number is not a valid interstate highway number.

 """

 if not isinstance(highway_number, int):

   raise ValueError('highway_number must be an integer')

 if highway_number < 1 or highway_number > 999:

   raise ValueError('highway_number must be between 1 and 999')

 if highway_number < 100:

   type_ = 'primary'

   direction = 'north/south' if highway_number % 2 == 1 else 'east/west'

 else:

   type_ = 'auxiliary'

   primary_number = highway_number % 100

   direction = 'north/south' if primary_number % 2 == 1 else 'east/west'

 return type_, primary_number, direction

def main():

 highway_number = input('Enter an interstate highway number: ')

 type_, primary_number, direction = classify_interstate_highway(highway_number)

 print('I-{} is {}'.format(highway_number, type_))

 if type_ == 'auxiliary':

   print('It serves I-{}'.format(primary_number))

 print('It runs {}'.format(direction))

if __name__ == '__main__':

 main()

Learn more about program on

https://brainly.com/question/26642771

#SPJ1

What term refers to a sequence of statements in a language that both humans and computers can understand?

a
hexadecimal
b
program
c
binary
d
macro

Answers

Answer your answer is Macro

Explanation:

Macro shares language both the computer and the programmer can undestand.

Other Questions
On an offshore oil rig, why are living quarters separated from where the oil is extracted?a.because of many past accidents which have affected workers on offshore oil rigsb.because many people who worked for a company called Occidental Petroleum were killed because of a gas leak in 1988c.because 123 people died when a floating hotel platform, Alexander Kielland, capsized in 1980d.all of the above make x the subject. show work! Which of the following is an example of when the press can be censured?a. The press is censured if they refuse to share their sourcesb. The press can be censured if their content is scandalous and would damage the reputation of a political figurec. The press can be censured from sharing details of troop movements and tactics during a ward. The press can never be censured by the government Question 1: Why are the upper and lower boundaries farther apart the further into the future we predict NO LINKS! NO PDF'S THAT DON'T WORK! Just an answer how to tell if a poem is a descriptive poem Algebra 1 help please Why was slavery originally brought to colonial America? The laser is passing from air into a new medium in each image. Which medium has a higher index of refraction, A or B? How do you know? *Medium A has a higher index of refraction because it is a lighter color.Medium B has a higher index of refraction because it is a darker color.Medium B has a higher index of refraction because the laser beam bends more.Medium A has a higher index of refraction because the laser beam bends less. Determine the maximumhoop stress across the section of a pipe of external diameter 600 mm and internal diameter 440 mm, when the pipe is subjected to an internal fluid pressure of 0 N/mm' 3(2z4)=6(2z). help plss Some banks pay interest only on the minimum or smallest balance on deposit during an interest period. Helen Lamb had a balance of $783 in such an account on July 1. Annual interest is 2.7% compounded quarterly. She withdrew$170 on August 17 and deposited $200 on September 12. What was Helens minimum balance during the quarter? how did the choice of the earliest civilizations to settle near waterways affect their civilizations? What statement best describes how chaperones perform their function? They prevent intermolecular hydrophobic interactions while the protein folds. They prevent the premature aggregation of secondary structure so the hydrophobic core of the protein can form first. Chaperones are proteases that digest and disrupt protein aggregates when they form. They hydrolyze ATP to physically manipulate proteins into the appropriate shape. 5. VerbalExplain how to find a line perpendicular to a linear function that passes through a given point. the nurse is caring for a client who is believed to be greatly deficient in serotonin. what assessment is a nursing priority? establishing refueling ports in the atlantic ocean was key to the united states expansionist strategy. 6 The system of equations shown below has no solution.Change one number in one of the equations so that thesystem has one solution. Graph your new system onthe coordinate grid to support your answer.y= 2x 1y = 2x + 1 Ego defense mechanisms are used only by people who are seriously troubled or psychologically disturbed and are almost always a sign that a serious mental disorder is present. Select one: True False 10 pts. What is the length of IJ