See the answer
Write a Console program, let users to enter prices calculate subtotal, tax, and total.

- Delcare variable data type as decimal (6 variables needed)
decimal apple;
- Conver string to decimal from input
apple = Convert.ToDecimal(Console.ReadLine());
- Do addition for subtotal
- Multiplication for tax (0.065M) --- M or m stands for money value, read page 94.
- Addition for total
- You need to show only two digits after decimal point

Answers

Answer 1

Answer:

um what

Explanation:


Related Questions

explain mportance of using Microsoft Excel in pharmaceutical science​

Answers

Answer:

research the question and go to setting and press advanced search and it will give answer

explain why it is important for you to understand and describe the basic internal and external components of a computer in the work place​

Answers

Answer:

you go to edit

Explanation:

Arrange the tiles in the order of communication in the linear model.


The decoded message is sent to the destination.


A sender sends a message through a transmitter.


The encoded signal then travels through a channel.


At the receiver, the signal is decoded.


The transmitter converts the message into a signal through encoding.

Answers

Answer:

A sender sends a message through a transmitter.The transmitter converts the message into a signal through encoding.The encoded signal then travels through a channel.At the receiver, the signal is decoded.The decoded message is sent to the destination.

Explanation:

The linear model of communication comprises of four (4) main components and these are;

1. Sender (S): this is typically the source of information (message) or the originator of a message that is being sent to a receiver. Thus, they are simply the producer of a message.

2. Channel (C): this is the medium used by the sender for the dissemination or transmission of the message to the recipient. For example, telephone, television, radio, newspapers, billboards etc.

3. Message (M): this is the information or data that is being sent to a recipient by a sender. It could be in the form of a video, audio, text message etc.

4. Receiver (R): this is typically the destination of information (message) or the recipient of a message that is being sent from a sender.

The order of communication in a linear model are;

I. A sender sends a message through a transmitter.

II. The transmitter converts the message into a signal through encoding.

III. The encoded signal then travels through a channel.

IV. At the receiver, the signal is decoded.

V. The decoded message is sent to the destination.

Generally, when a message is encoded by the sender, it requires a recipient to decode it for the communication process to be complete.

Guess the output of this code:print( (3**2)//2 )

Answers

Answer:

Assuming that's in python, the answer would be 4

Explanation:

The ** operator is for raising a number to a power.

The // operator returns the number of times the right number can fit into the left (i.e round division).

So the answer would be three squared over two rounded down, or 4.

write a program that asks the user how far they ran and then how long they ran and prints out their speed in miles per hour javascript

Answers

Answer:

var distance = prompt("How far did you run? in miles");

var time = prompt("How long did you run? in hours");

function calSpeed(miles, hours){

   var speed = miles / hours;

   console.log(speed,"m/h")

calSpeed(distance, time);

Explanation:

The javascript uses the prompt function to get user inputs for the distance and time variables. The calSpeed function calculates and prints out the speed of the runner with the arguments, distance and time.

click it to paste the content of clipboard ​

Answers

Ctrl + V

It is used for paste function.

Identify the symbol. please help!!

Answers

Explanation:

counter bore

Answer:

Diameter

Explanation:

On technical literature or drawings, it could be a symbol to mean diameter.

Can someone help me with this error? Will give brainliest and i will give more details if you need just please help​

Answers

Answer:

From what I see, you're trying to convert an int to a double&. This is illegal. Do you have any arrays with ints?

Create a spreadsheet that lists the ten currencies you chose. For each currency, enter an amount and create a
formula to convert it to U.S. dollars. Make sure to include dollar signs in the appropriate cells.

Answers

Answer:

its a very lengthy one

Explanation:

write a program that display your name c++

Answers

Answer:

#include <iostream>

#include <string>

int main() {

std::string name;

std::cout << "Please enter a name: ";

std::cin >> name;

std::cout << "Hello " << name<<"!";

}

Explanation:

Asks for your name and adds Hello {name}!

Classify correctly linear and nonlinear multimedia.
movie at cinema
web page
video game
live video feed
e-book with links
instructional video
slideshow
Linear Multimedia
Nonlinear Multimedia

Answers

Answer:

movie at cinema - Linear Multimedia

web page - Nonlinear Multimedia

video game - Nonlinear Multimedia

live video feed - Nonlinear Multimedia

e-book with links - Nonlinear Multimedia

instructional video - Linear Multimedia

slideshow - Linear Multimedia  

Explanation:

The linear multimedia will go from the start all the way through to the finish without variation.

The Nonlinear Multimedia is the opposite; it doesn't follow that one-way structure and instead allows free movement around all aspects of the multimedia in any order.

movie at cinema - Linear Multimedia

web page - Nonlinear Multimedia

video game - Nonlinear Multimedia

live video feed - Nonlinear Multimedia

e-book with links - Nonlinear Multimedia

instructional video - Linear Multimedia

slideshow - Linear Multimedia

Vocational counselors group career and occupation specialties into
career clusters.

Answers

they group them into 16 career clusters

Answer:

16 career clusters

Explanation:

The other guy is right. I got it correct on edmentum

2) Module selection and verification:
The program must authenticate the student access using student ID and password.

Students should be able to choose two different modules out of the following modules (more than two modules is not possible):
Programming 1
Programming 2
Networking 1
Mathematics

Students should be able to view their current selected modules.

The program should allow the user to return to the main page.

3) Student account top-up:
The program must authenticate the student access using student ID and password.

Students should be able to deposit points in his/her point account. The program should confirm the requested points with the user before adding them into his/her account.

The program must return to the main page.

Answers

import random

database = {}

while True:

   try:

       user_choice = int(input("Enter your student id to bring up your information (Press enter if you don't have one) : "))

       user_pass = input("Enter your password: ")

       if user_choice in database.keys() and database[user_choice][5] == user_pass:

           print("User Authenticated! Welcome, "+database[user_choice][1]+" "+database[user_choice][2])

           while True:

               choice = int(input("Do you wish to choose your modules, view your selected modules, deposit points, or go back to the main menu? (1,2,3,4): "))

               if choice == 1:

                   modules = input("Choose up to two modules (comma separated): Programming 1, Programming 2, Networking 1, Mathematics ")

                   modules = modules.split(",")

                   if len(modules) > 2:

                       print("You're only allowed to select two modules at one time.")

                   else:

                       database[user_choice].append(modules)

               elif choice == 2:

                   if len(database[user_choice]) == 8:

                       print("Your module(s) are:")

                       for x in database[user_choice][7]:

                           print(x.strip())

                   else:

                       print("You don't have any modules!")

               elif choice == 3:

                   point_deposit = int(input("How many points would you like to deposit: "))

                   confirm = input("Do you want to deposit "+str(point_deposit)+" point(s) (y/n): ")

                   if confirm == "y":

                       database[user_choice][6] += point_deposit

                       print("Your point balance is now:",database[user_choice][6])

                   else:

                       print("Your deposit could not be confirmed! Deposit denied.")

               elif choice == 4:

                   break

   except ValueError:

       name = input("Enter your first name: ")

       last_name = input("Enter your last name: ")

       phone_number = input("Enter your phone number: ")

       email = input("Enter your email address: ")

       password = input("Enter a password: ")

       points = 100

       student_id = random.randint(1,1000)

       while student_id in database.keys():

           student_id = random.randint(1,1000)

       print("Hello,",name,"your student ID is:",student_id)

       database[student_id] = [student_id,name, last_name, phone_number, email, password, points]

Although I tried to cover all the bases, I might've missed something. I hope this helps.

What are the two parts of a cell reference? column intersection and row range column range and row intersection column letter and row number column number and row letter

Answers

Answer:

C - Column letter & row number

Answer: C

Explanation:

List the do's and don'ts of secure online interactions

Answers

Answer:

The answer is below

Explanation:

The "dos" are the safe practice's website users should always do to provide themselves a form of security against potential hackers in online interactions.

Hence, are the "dos" based on the options listed.

1. Use a long password with mixed characters

2. Use antivirus and spyware protection

3. Don't write your password down and leave it where others can find it

4. Go through the terms and conditions, and privacy policies of social networking and other websites that you access.

On the other hand, the "don'ts" are the practices a website user or visitor should avoid doing to provide themselves a form of security against potential hackers in online interactions.

Hence, are the "don'ts" based on the options listed.

1. Keep yourself logged in when you leave your computer

2. Share your password with your friends

3. Retain cookies every time you visit a website.

If a hacker targets a vulnerable website by running commands that delete the website's data in its database, what type of attack did the hacker perform

Answers

Answer:

SQL injection.

Explanation:

SQL injection is a way to exploit vulnerabilities in the handling of input data in some computer programs that work against a database. The injection takes place by a user submitting parameters to a database query, without the parameters being correctly transformed with respect to special characters, such as escape sequences. With custom parameters, a user can bypass login systems and manipulate data.

how many different textile items would you find at a festival? (please list 5 items)

Answers

Ne demek istoyusun anlamadım

How should technology be used?

Answers

Make Sure You Use The Right Technology.

Use Incorporate Automation Tools.

Manage Passwords Effectively.

Only Use Technology Where You Need Help The Most.

Use Chrome Extensions.

Organize Your Time With A Calendar App.

Take Advantage Of Free Applications.

Hope it helps!

Answer:

I think technology should be used for education

Explanation:

Hope this helped have an amazing day!

An _____provider is a business that provides individuals and companies access to the internet for free

Answers

Answer:A B

access provider Business that provides individuals and companies access to the Internet free or for a fee.

Explanation:

Answer:

access provider

Explanation:

Which entry by the user will cause the program to halt with an error statement?

# Get a guess from the user and update the number of guesses.
guess = input("Guess an integer from 1 to 10: ")
guess = int(guess)

Multiple Choice
a. 22
b. 2.5
c. -1
d. 3

Answers

Answer:

2.5

Explanation:

The program expects an integer input from the user. This is evident in the second line where the program attempts to convert the input from the user to an integer value.

Please note that the integer value could be negative or positive.

Options (a), (c) and (d) are integer values while option (b) is a floating point value.

Hence, option (c) will halt the program and raise an error because it is not an integer.

Answer:

2.5 for it is a float not an integer

Explanation:


Some commands listed in a menu cannot be selected.


True or False

Answers

True! Have a nice week

Answer:

Explanation:

it is true

how does operating system execute and provide services for application software​

Answers

An OS is a set of programs that lies between application software and the hardware. An OS is software that controls the hardware. It provides the interface between the hardware and the user. The most important program in the OS is the kernel, it manages the OS and most of it remains in memory.
Hope this helps and BRAINLIEST PLEASE! ❤️

Which feature of a website takes you to a different part of the website or a totally different website when you click on it? A. graphics B. formal text C. hyperlink D. animation

Answers

Answer: C

Explanation:

Answer:

hyperlink

Explanation:

The feature of a website that takes you to a different part of the website or a totally different website when you click on it is called a hyperlink. Hyperlinks are typically underlined and appear in a different color than the surrounding text. They can be used to navigate between pages on the same website or to link to external websites.

How is a game designer different from a writer?

Answers

Answer:

Explanation:

when ur a desiner u design things when u are a writter u write thing :) ik this is wrong need points

Answer:

The game designer knows what kind of game they want because when done right, the rules are integral to the setting. ... Game writers will often familiarize themselves with a game's rules and setting in order to successfully contribute to a project; game designers will often do the same thing, but from their perspective

Explanation:

Microsoft Publisher - Assignment #1
True/False
Place a “T” if the statement is true or "F" if the statement is false, in the blank

I
2)
Three column layouts are formal and serious looking
3)
After you use ruler guidelines, you need to delete them so that they do not show
when you print your publication.
4)
When printing a double sided publication, heavier paper may be needed so that text

Answers

Answer:1

Explanation:

Service Mesh is a framework that handles the cross-cutting concerns like logging, service registration, etc. true false

Answers

Answer: False

Explanation:

A service mesh is referred to as a communication layer that is used to foster communication in a micro service setup usually through the use of a sidecar proxy.

It should be noted that in this case, every requests would have to pass through the service mesh.

It should be noted that the statement that Service Mesh is a framework that handles the cross-cutting concerns like logging, service registration, etc is false.

ok so how do i get the expert title ??? i meet the requirements

Answers

I think you just have to keep answering people’s questions ion know mate

which type of webpages will automatically adjust the size of the content to display appropriately relative to the size of the screen of the device on which it is displayed

Answers

Answer:

Responsive.

Explanation:

HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.

Generally, all HTML documents are divided into two (2) main parts; body and head. The head contains information such as version of HTML, title of a page, metadata, link to custom favicons and CSS etc. The body of the HTML document contains the contents or informations of a web page to be displayed.

The responsiveness of a webpage is an ability of the design to respond to the end user's digital device and screen size.

In Computer programming, a responsive web design makes it possible for various websites to change layouts in accordance with the user's digital device and screen size.

This ultimately implies that, a responsive design is a strategic approach which enables websites to display or render properly with respect to the digital device and screen size of the user.

Hence, responsive webpages will automatically adjust the size of the content to display appropriately relative to the size of the screen of the device on which it is displayed.

Why did who made cocomelon name it cocomelon and why are babies so addicted to it

Answers

Jay neon made it. Baby’s like milk

Answer:

Cocomelon

Explanation:

"Young children are drawn to the bright visuals — especially the focus on big eyes and faces — the repetitive music and sounds, and the constant movement and action on the screen." While young kids love the sounds and songs they hear on CoComelon, the animation and the bright colors are really what draws them in.

Write a void method named updateRadius which takes a circle and an int and changes the value of the circle's radius to the int. You can call your method in the program's main method so you can test whether it works, but you must remove or comment out the main method before checking your code for a score.

Answers

Answer:

public static void updateRadius(Circle circle, int radius){

   circle.setRadius(radius);

}

Explanation:

Assuming there is a class called Circle which has a method "setRadius", the void function "updateRadius" accepts two arguments namely circle class and the integer radius variable. The setRadius() method of the circle class is used to update the radius of the circle object.

Other Questions
4.) Describe the motion which statement is true?!?! At a baseball game you can get a single hot dog for $2. You have $10 to spend. Write and solve an inequality to find the number of hot dogs you can buy. Interpret the solution (show equation) (4m+7n-6p)-(2m-3n-4p) Developmental disabilities cannot be cured.Please select the best answer from the choices provided.OTOF who in this entire app likes 1D? Will mark as brainliest if you tell me ur fave member What are the forms of light energy in solar radiation and the colors in white light? Brian and his classmates conducted an experiment on what objects are attracted to an electrically charged balloon. Their teacher instructed them to write down their procedure. What is the purpose of writing down the procedure? (A) The experiment can be changed by others to investigate a new question. (B) The exact experiment can be repeated by others, and the results can be compared. (C) The procedures for the experiment can be changed for another experiment. (D) The procedures for the experiment can be tested for accuracy. help please (it has to be 20 more characters ignore) 1. Is it logically possible to travel backward in time and live in a formerera? Why or why not? Removing tropical rain forests has a _____ effect on climate.a. warmingb. coolingAn erupting volcano has a _____ effect on climate.a. coolingb. warming A person who is not satisfied with an appellate court's decision How do you think Native Americans reacted to the Lewis and Clark expedition when they first saw it? Kristen bought a 14 ounce bottle of catshup for 91 cents. At the same rate, how much would a 20-ounce bottle cost? A large bag contains the following marbles: 40 blue marbles 8 green marbles 16 yellow marbles 21 white marbles Tyra selects a marble from the bag at random. Based on the information, which statement is true? A The marble she selects is twice as likely to be yellow as it is to be green. B.The marble she selects is more likely to be blue than all the other colors combined. C. The marble she selects is equally likely to be yellow or white D. The marble she selects is three times as likely to be white as it is to be green. . . . . MATHZ was An Impostor. . ' 0 Impostors remain A large cheese pizza costs $7.50. Diego has $40 to spend on pizzas. How many large cheese pizzas can he afford? Explain or show your reasoning. You have been infected with the H1N1 flu virus. Describe how this virus might have entered your body, how it works to make you sick, and what happens when you finally get better. List at least 7 different steps. What hints did the writer provide earlier that Zaroff would force Rainsford into a contest? i attached an image. someone help me asap. i'm not the smartest person so i cont understand it :( A Celsius thermometer can be used as a physical model of a number line with 0C representing the freezing point. Select all temperature pairs that include numbers that are located on opposite sides of 0C.9C and 0C0C and 4.4C2C and 3 1/2C8 1 2 C and 7C2.3C and 6C