In which way(s) can numbers in a chart be formatted?A.
currency

B.
percentages

C.
decimals

D.
all of these

Answers

Answer 1
Answer:

the answer is D. just took a test

all of these

Answer 2
Answer: The answer is C, Decimals.

Related Questions

In Excel you insert a comment in a worksheet by using the ____ tab on the Ribbon.
Write a program that asks the user to enter a number within the range of 1 through 10. Use a switch statement to display the Roman numeral version of that number. Input Validation: Do not accept a number less than 1 or greater than 10.
Why can't I access my micro SD card on my Lenovo ThinkPad Yoga 11e? I'm trying to export some PNG files onto my Micro SD card, so I can have the files on my phones.
What file does a aac run under
Which one of the following is the most accurate definition of technology? A Electronic tools that improve functionality B Electronic tools that provide entertainment or practical value C Any type of tool that serves a practical function D Any type of tool that enhances communication

Which part of the computing process occurs before storage is used?

Answers

Before storage is used in the computing process, data must be processed and manipulated in the CPU (Central Processing Unit). This includes tasks like input processing, calculations, and various operations performed on the data. Once the data has been processed, it can then be stored in storage devices like RAM (Random Access Memory) or long-term storage such as hard drives or SSDs (Solid State Drives).

Answer:

input

Explanation:

A Web site that has a posted privacy policy protects users froma. release of personal identification.
b. release of information on browsing history.
c. downloading of computer viruses.
d. use of information for marketing.

Answers

a.release of personal identification


The first coolant used in refrigeration was _____. ammonia FreonĀ® ice tetrafluoroethane

Answers

Ice was the first coolant used in Refrigeration. 

The first coolant used in refrigeration was

B.) Ice

What should be used to screw on broadheads? needle-nose pliers gloves thumb and forefinger only specially designed wrench

Answers

You should use needle-nose pliers, or sometimes even specially designed wrenches to screw on broadheads. 

You should use needle-nose pliers, or sometimes even specially designed wrenches to screw on broadheads.

The needle-nose pliers are pliers used by technicians and artisans for holding and cutting work pieces. They are also known as long-nose pliers, snipe-nose pliers or pinch-nose pliers and are used mainly by electricians, computer networking engineers, designing jewelry .nose pliers or curved needle-nose pliers, have a curved beak.

Locking pliers offer versatility and convenience, allowing welders to hold fittings together with minimal effort and providing a steady grip that helps maintain the intended positioning throughout the welding operation. Their robust construction and ability to lock in place make them a reliable tool for holding fittings and maintaining the desired joint integrity during welding projects.

Learn more about locking pliers here:

brainly.com/question/13979289

#SPJ6

Imagine you just bought a cable installation company that routinely treats its residential customers poorly. You want your company to satisfy customers but it promises a certain connectivity speed that isn't realistic in most homes. It says it will send repair people within a certain time window, but when they get tied up and are running late, no one calls the customers. You hear complaints every time you answer the phone. What approach would be most likely to resolve your cognitive dissonance? a. You can purchase and start to use new software for scheduling repairs and calls.
b. You can stop answering the phone.
c. You can quit this job and go to work in another industry altogether.
d. You can continue to believe in customer service but not make changes.

Answers

Answer:

a.

Explanation:

Based on the information provided within the question it can be said that out of the answers that were given the only real approach would be to purchase and start to use new software for scheduling repairs and calls. This new software would hopefully allow you to better organize the repair and call schedules so that everything is done in a timely manner as well as keep track of the employees in charge of making home repair calls.

Write a program that asks the user to input their first and last names. The first prompt should state: Please input your first name: The second prompt should state: Please input your last name:

Answers

Answer:

Program in c++ and java

Explanation:

C++ Code

#include<iostream> //for input and output  

#include <string>  // for string  

using namespace std;  

int main()  

{  

   string firstname;

string lastname;  

   cout<<"Please input your first name :";

  cin>> firstname;

  cout<<"Please input your last name :";

  cin>> lastname;

   

  cout<< "Your name is "<< firstname << " "<<lastname;

   // declaring output string stream  

 

   return 0;  

}

Java Code

import java.util.Scanner;

public class SquareRoot {

   public static void main(String[] args){

       Scanner scanner = new Scanner(System.in);

       System.out.print("Please enter your first name :");

       String firstName = scanner.next();

       System.out.print("Please enter your last name :");

       String lastname = scanner.next();

       System.out.println("Your name is "+firstName+" "+lastname);

   }

}

Output

Please input your first name :John

Please input your last name :Stone

Your name is John Stone