Temperature converter. This program should prompt the user for two arguments, first a decimal number and second, a single letter, either C or F. The decimal represents a temperature, the character represents which system that degree is in (50.0 F would be 50.0 degrees Fahrenheit etc.). This program should take the given number and convert it to a temperature in the other system. The output string format should be degree(s) is equal to degree(s) . Eg. input 0 C would give the string 0.0000 degree(s) C is equal to 32.0000 degree(s) F. You can assume that either F or C will be given for input, no need to account for invalid input.

Answers

Answer 1

Answer:

[tex] \boxed{ \tt{I \: wrote \: the \: program \:with \:( c++)}}[/tex]

Temperature Converter. This Program Should Prompt The User For Two Arguments, First A Decimal Number

Related Questions

Can software work without Hardware? Why?

Answers

Answer:

No

Explanation:

Software requires hardware to run. Think about a computer, you can't have windows without having the computer. Software is programmed to run on hardware.

When adjusting the bounding box around text, hold the key to scale proportionately or the key to skew the object

Answers

Answer: ?

Explanation:

Say you have 3 computers. Compare the cost of replacing the modem with a router/modem. Include the brand as well as price. I can't answer questions about this as I don't know what to do

Answers

Answer:

Comparing the cost of replacing the modem with a router/modem and its need in day today changing life.

Explanation:

As you known modem devices develop at a very gradual pace, you can normally use a modem for months, until it breakdown, but you might need to substitute a router because you require a more reachable area. After all, you've joined more computers to your web and your old router isn't holding up, or because you need to take the support of the latest development.

Which view allows the user to see the source code and the visual representation simultaneously? to see the source code and the visual representation simultaneously? ​

Answers

Answer:

Split view.

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.

Split view allows the user to see the source code and the visual representation simultaneously.

It can be used in graphic design software such as Adobe Dreamweaver to get a side-by-side view of both the source code and code layout modules or design and source code.

For example, a user with a dual screen monitor can use the split view feature to display the design on monitor while using the other to display the source code.

Why is hydroelectricity counted as a conventional source of energy.. People say conventional sources of energy is the same as non-renewable energy sources

Answers

People have been using the energy of flowing or falling water for centuries before electricity was developed into a practical means of transporting energy. The first hydroelectric plant (at least in the U.S.) was built at Niagara Falls in 1895. Many areas of the world still get the majority of their power from hydro facilities.

Hydro is also “conventional” in the sense that it can be controlled in more or less the same way as thermal plants — its output can be adjusted over a wide range to match demand. Wind and solar, on the other hand, only produce when the wind blows or the sun shines. Of course, hydro can only produce as long as there’s rain or snowmelt to supply the reservoirs, but that’s on a much longer time scale; over hours or days, hydro capacity is very predictable.

What is a boot sector

Answers

Explanation:

A boot sector is the sector of a persistent data storage device which contains machine code to be loaded into random-access memory and then executed by a computer system's built-in firmware. Usually, the very first sector of the hard disk is the boot sector, regardless of sector size and partitioning flavor.

20.

Meter is to Kilometer as Gigabyte is to

?

... PINGULAR

A. Byte

B. Terabyte

C. Kilobyte

O D. Pedabyte

E. Megabyte

Previous

Answers

Answer:

Megabyte

Explanation:

Megabytes come before Gigabytes like how Gigabytes come before Terrabytes

Write a program that uses while loops to perform the following steps:

a. prompt the user to input two integers: firstNum and secondNum
b. Output all odd numbers between firstNum and secondNum.
c. Output the sum of all even numbers between firstNum and secondNum.
d. Output the number and their squares between 1 and 10
e. Output the sum of the square of the odd numbers between firstNum and secondNum.
f. Output all uppercase letters.

Answers

Answer:

Explanation:

//Include the required header files.

#include<iostream>

using namespace std;

//Define the main function.

int main()

{

//Define the variables.

int i, sum = 0, sqSum = 0, firstNum = 1, secondNum = 0;

char ch;

//Check for valid input.

while (!(firstNum < secondNum))

{

cout << "Enter starting number: ";

cin >> firstNum;

cout<<"Enter ending number(must be > startingNumber): ";

cin >> secondNum;

}

//Store first number in i

i = firstNum;

//Dispaly the number.

cout << "The odd numbers between " << firstNum

<< " and " << secondNum << " are:\n";

//Iterate between first and second number.

while (i <= secondNum)

{

//Check for even numbers.

//Store the sum

if (i % 2 == 0)

sum = sum + i;

//Print the odd numbers

//Evaluate the square of sum of odd number.

else

{

cout << i << " ";

sqSum = sqSum + i * i;

}

//Increase the value of i.

i++;

}

//Dispaly the sum of even numbers.

cout << "\n\nThe sum of the even numbers is:"

<< sum << endl << endl;

//Dispaly the sum of square of odd number.

cout << "The sum of squares the odd numbers is:"

<< sqSum << endl;

//Set i to 1.

i = 1;

//Dispaly the message.

cout << "\nNumber Square\n";

//Iterate and print number between 1 andd 10

//along with the sum.

while (i <= 10)

{

cout << " " << i << "\t " << i * i << endl;

i++;

}

//USe for visual studio.

system("pause");

//Return the value 0.

return 0;

}

Explanation:

The program code will perform the function listed below using loop.

Prompt the user to input two integers: firstNum and secondNum (firstNum must be less than secondNum). Output all odd numbers between firstNum and secondNum. Output the sum of all even numbers between firstNum and secondNum. Output the numbers and their squares between 1 and 10. Separate the numbers using any amount of spaces. Output the sum of the square of the odd numbers between firstNum and secondNum. Output all uppercase letters.

Hope this helps!

Suppose we want an error correcting code that will allow all single-bit errors to be corrected for memory words of length 15. 1. How many check bits are necessary?2. Assuming we are using the Hamming algorithm presented to design our error-correcting code, find the code word to represent the 12-bit information word: 100100011010

Answers

Answer:

15

Explanation:

01234567891011121314

What is the reddish-brown substance in the water?

Answers

Answer:

iron

Your water might be affected by iron, which is a commonly-occurring constituent of drinking water. Iron tends to add a rusty, reddish-brown (or sometimes yellow) color to water. If the color is more black than red, your water might contain a combination of iron and manganese.

the substance is iron in the water

When designing code, which of the following best describes the purpose of a Post Mortem Review?

To obtain feedback on the code
To translate pseudocode to program code
To use code only one time
To check if others have the same code

Answers

Answer:

4

Explanation:

to check if others have the same code

What are some study habits that you practice? Check all that apply.
studying with friends
studying on a regular schedule
taking breaks while studying
getting good sleep
studying in a quiet area

Answers

Answer:

studying in quiet place

Taking breaks

Reading from notes

good sleep

eating healthy foods

group study

studying on regular schedule

revision

Some study habits that you should practice are studying with friends, studying on a regular schedule, taking breaks while studying, getting good sleep, and studying in a quiet area. All options are correct.

What are good studying habits?

Effective study techniques can be used by someone who wants to get good scores. Summarizing, limiting distractions, taking breaks, and memorization are some good study techniques.

Several good study practices include: When studying, summarize your notes, avoid studying when you're sleepy, memorize your notes, limit distractions, and take breaks.

Study habit is an action such as reading, taking notes, holding study groups which the students perform regularly and habitually in order to accomplish the task of learning.

Therefore, the correct options are a, b, c, d, and e.

To learn more about studying habits, refer to the link:

https://brainly.com/question/14735769

#SPJ5

does technology shape society or does society shape technology?

Answers

Answer:

Both. Society creates needs, these needs have to be met. Innovative people then meet the challenge because society says “we’ll compensate you if you can figure this out” and so the race begins. When that technology is developed, and the need is met, the technology inspires society to develop new wants and needs and so the cycle begins anew. Consider the biggest technologies in Human history: The wheel, created ancient civilization because it allowed for transport; The clock and calendar, allowing societies to develop schedules for all of their activities; Writing, allowing information to be passed down accurately from generation to generation; Farming, eliminating the need for civilization to be nomadic; Education systems, allowing for the standards of professionalism to be raised and specialized people to be created; fast-forward to the Industrial Age with the Steam Engine and Coal power plant; fast-forward again to the development of flight; fast-forward again to the atomic bomb and the first computer; etc.

Explanation:

The image classification technology (Darknet) shown in the video is
free for anyone to use.
Select one:
a. proprietary
b. web-based
C. shareware
d. open source

Answers

Answer:

Open Source

Explanation:

Darknet is an open source custom neural network framework written in C and CUDA

Type the correct answer in the box. Spell all words correctly.
After the filming is finished, Rachel is responsible for arranging individual shots in a proper sequence. Which role is she playing
Rachel as playing the role of a(n)

Answers

Answer:

editor

Explanation:

I just took the test and got it right.

Visual Basic Help:
Code a program that reads a test score (number) from a text-box, each time a button is clicked. In other words, every time a new score is entered in the text-box, the score should be taken by the program, stored and the text-box should be cleared, so that the user can enter a new score. The program should be able to check that the user is entering a number. If the user enters something different than a number (or leaves the text-box empty), the program should not continue and it should display a warning message to the user. After entering as many scores as wanted, the user should be able to click on a second button to display the two highest scores, among all the ones entered until that point. The program should also display the total number of scores entered by the user. Also, once the user clicks on the button to display the results and the results are displayed, the program should get ready to get a new set of scores and start again. If the user starts writing a new score, the text-boxes with the results should be cleared.
Example: Assume the user enters the following scores: 10, 5, 20. The scores are entered once at the time in the top text-box; when a score is entered, the user presses the button to "Read" the score. The score is taken by the program and the text-box is cleared, so that the next score can be entered. This process can be repeated as many times as the user wants and for as many scores as the user wants. Once all the scores are entered and read(or taken-in)by the program, the user clicks on the second button to display the results. The program should then display the two highest scores, among the ones entered. So, in the example, this would be 10, 20. And it should display the total number of scores entered by the user. In the example, it would be 3.
After that, the user should be able to repeat the process and enter a new set of scores, if wanted. The program should therefore be ready to take in new inputs and start the process again. When the user starts typing the new score, the text-boxes with the previous results (two highest scores and total num. of scores) should get cleared

Answers

Answer:

See text attachment for complete source code (for the answer) where I used comments to explain each line of the program

Explanation:

First, design the form using the following tools (and the accompanying properties) :

1 Label: Property: Text: Score

2 Buttons

Button1: Property: Name: btnAdd; Text: Add

Button2: Property: Name: btnDisplay; Text: Display

1 ListBox: Property: Visible: Hidden

1 TextBox: Property: Name: txtNum1

First, create the following function.

The function (named typecheck) validates input from the user (i.e. integer input only)

Function typecheck(ByVal input As String) As Boolean

       Try

           Convert.ToInt32(input)

           [tex]Return\ True[/tex]

       [tex]Catch\ ex\ As\ Exception[/tex]

           [tex]Return\ False[/tex]

       End Try

   End Function

It returns true if the input is integer and false, if otherwise.

Next, double-click on the "Add" button and write the following lines of code:

Dim num1 As String

       num1 = txtNum1.Text

       If num1 IsNot String.Empty Then

           If typecheck(num1) Then

               [tex]ListBox1.Items.Add(num1)[/tex]

               [tex]txtNum1.Text = String.Empty[/tex]

           Else

               [tex]MsgBox("Only[/tex] [tex]Integer[/tex] [tex]Inpu t")[/tex]

               [tex]txtNum1.Text = String.Empty[/tex]

           [tex]End\ If[/tex]

       Else

           [tex]MsgBox("Box[/tex] [tex]can\ not\ be\ empty")[/tex]

           [tex]txtNum1.Text = String.Empty[/tex]

       [tex]End\ If[/tex]

Next, double-click on the "Display" button and write the following lines of code:

If ListBox1.Items.Count > 0 Then

           [tex]Dim\ max1, max2\ As\ Integer[/tex]

           max1 = Convert.ToInt32(ListBox1.Items(0))

           max2 = Convert.ToInt32(ListBox1.Items(0))

           [tex]For\ count\ = 0\ To\ ListBox1.Items.Count - 1[/tex]

               If Convert.ToInt32(ListBox1.Items([tex]count[/tex])) >= max1 Then

                   max1 = Convert.ToInt32(ListBox1.Items([tex]count[/tex]))

               [tex]End\ If[/tex]

           Next

           [tex]For\ count\ = 0\ To\ ListBox1.Items.Count - 1[/tex]

               If Convert.ToInt32(ListBox1.Items([tex]count[/tex])) >= max2 And Convert.ToInt32(ListBox1.Items([tex]count[/tex])) < max1 Then

                   max2 = Convert.ToInt32(ListBox1.Items([tex]count[/tex]))

               [tex]End\ If[/tex]

           Next

           MsgBox("Highest Scores: " + max1.ToString() + " " + max2.ToString())

           MsgBox("[tex]Total[/tex]: " + ListBox1.Items.Count.ToString())

       [tex]End\ If[/tex]

       ListBox1.Items.Clear()

Write a program that:

a. asks user to input the temperature in Fahrenheit.
b. It converts the inputted temperature into Celsius.
c. Calculates the speed of sound in meters per second and in feet per second. The program should display user's inputs and print the results in both m/s and ft/s

Answers

Answer:

sucks to suck

Explanation:

1) Who invented C Language.?
A) Charles Babbage
B) Grahambel
C) Dennis Ritchie
D) Steve Jobs​

Answers

Answer:

Dennis Ritchie is the answer

Give 2 examples of how technology/AI has helped to achieve the SDGs.​

Answers

Answer:

Although AI-enabled technology can act as a catalyst to achieve the 2030 Agenda, it may also trigger inequalities that may act as inhibitors on SDGs 1, 4, and 5. This duality is reflected in target 1.1, as AI can help to identify areas of poverty and foster international action using satellite images5.

n is assisting immensely to serve all these needs. For example, digital e-health solutions such as 'mhealth' and remote diagnostics using telemedicine services have contributed significantly to improving access to healthcare facilities, reducing neonatal mortality, and providing better health coverage

Tech A states that modern vehicles use asbestos as the brake material. Tech B states that asbestos is no longer used in brakes. Who is correct?

Answers

Answer:

Tech A is correct.

Explanation:

The modern day vehicles have brakes system equipped with asbestos. It is a mineral which is a kind of fibrous crystal which enables the friction to stop the vehicle. The technician A specifies that the modern day automobiles use asbestos for their brake system.

Answer:

correct answer is Tech B.

Explanation:

just took the test

A five-year prospective cohort study has just been completed. the study was designed to assess the association between supplemental vitamin a exposure and mortality and morbidity for measles. the rr for incidence of measles was 0.75 and the rr for measles mortality was 0.5. Assume these RR are significant. Regarding the RR reported above, which statement is correct?

a. Exposure to vitamin A appears to protect against morbidity and mortality for measles.
b. Exposure to vitamin A appears to be a risk factor for morbidity and mortality for measles.
c. Exposure to vitamin A is not associated with morbidity and mortality for measles.
d. Exposure to vitamin A is a risk factor for morbidity and a protective factor for mortality for measles.

Answers

Answer:

Exposure to vitamin A appears to be a risk factor for morbidity and mortality for measles.

Explanation:

Which code segment results in "true" being returned if a number is odd? Replace "MISSING CONDITION" with the correct code segment.

a) num % 2 == 0;
b) num % 2 ==1;
c) num % 1 == 0;
d) num % 0 == 2;

Answers

Answer:

Which code segment results in "true" being returned if a number is odd? Replace "MISSING CONDITION" with the correct code segment.

Explanation:

num % 2 ==1;

How do you guys feel about McCree’s new look in Overwatch 2? I personally like it but some people have a distaste towards it. I personally think it’s a step in the right direction and improves on how he used to look.

Answers

Answer:

Agreed.

Explanation:

I also laugh that you put this on Brainly.

I agree

Explanation:

It's lit, very lit

Directions: Identify the measuring devices and write its functions.
Write your answer in the space provided.

Answers

Answer:

1.weigher - to weigh meat

2.

3. scissor - to cut things

4. tongs

5.measuring cups - to measure dry ingredients like flour

6 temperature - measures temperature

7 measuring spoons

The________ partitioning scheme enables you to create more than four primary partitions without needing to use dynamic disks

Answers

Answer:

three primary partitions

A local company is expanding its range from one state to fifteen states. They will need an advanced method of online communication and someone to design an advanced and thorough database to store a lot of information. Who should they hire to assist with both these goals?

a Database Architect and a Computer System Analyst who focuses in interactive media
a Computer Hardware Engineer and a Software Developer who focuses in interactive media
a Software Developer and a Web Developer who focuses in programming and software development
a Web Administrator and a Computer System Analyst who focuses in information support and services

Answers

Answer:

the answer is C,a a Software Developer and a Web Developer who focuses in programming and software

Brainlist me if im right

Answer:

C is correct

Explanation:

an algorithm to calculate average of numbers​

Answers

Answer:

Algorithm to calculate the average of numbers is

Start sum = 0, i = 1, average, count = 0  if i / 2 == 0 then go to step 4, else go to on step 5  sum = sum + i, count = count + 1  i = i + 1 if i <= 50 then go to on step 3, else go to on step 7 Display “sum” average = sum/count Display “average” Stop

Explanation:

Algorithm to calculate the average of numbers is

Start sum = 0, i = 1, average, count = 0  if i / 2 == 0 then go to step 4, else go to on step 5  sum = sum + i, count = count + 1  i = i + 1 if i <= 50 then go to on step 3, else go to on step 7 Display “sum” average = sum/count Display “average” Stop

HELPOO ILL GIVE BRAINLIEST

Answers

Answer:

e

Explanation:

giv brainilest :D

Select the statements that explain marking and categorizing messages. Check all that apply.


The Read/Unread option is a toggle button that marks a message read or unread.

You can mark a message as unread when you want to come back to it later.

You can mark a message as read by turning off the Categories option.

Categories are color coded and can be renamed and sorted.

Grouping different types of messages together can be done using Read/Unread.

answer: A B D

Answers

Answer:

The Read/Unread option is a toggle button that marks a message read or unread.

You can mark a message as unread when you want to come back to it later.

Categories are color coded and can be renamed and sorted.

Explanation:

when computer network are joined together they form a bigger network called the​

Answers

Answer:

A WAN can be one large network or can consist of two or more lans connected together. The Internet is the world's largest wan.

Explanation:

Other Questions
Please help i need this by tomorrow William takes many vacations each year. For any vacation he takes, he always brings sets of clothing for three extra days, in case he has a delayed trip. The table below shows the number of sets of clothing, s, that William will bring on a vacation that lasts d days. Fill in the missing values in the table. the point (-6, 8) is reflected across the the x-axis. What are the coordinates of the reflection? Need some help! Contact me if you can help me with more questionsMany thanks what is the primary injustice towards children at the U.S.-Mexico border? Please help ASAP. Thanks so much You and your family are on vacation in the mountains. You are trying to locate the campsite where you will be staying but you cannot get a signal. What is one reason why your GPS is not responding. Renee bought 6 tickets to a football game. She paid a total of $216. Write an equation to represent the situation What are the steps to creating a blank database? Use the drop-down menus to complete them.1. Click thetab, and click2. Under thecategory, click Blank Database.3. Specify a name and location for the database.4. Click Please Help with 2. Thanks 1. What is a primary source?2. What is a secondary source?3. What is the difference between a primary and secondary source? 4. Give examples of primary and secondary sources.Can someone please help me with these questions? Thank you and also if you dont mind sharing how you remember it or a easy was to remember it please share. A circles radius is 13 meters what is the circles area using 3.14 rounded to the nearest tenth The perimeter of this shape is 40cm Calculate the value of x Estimate: 28 2/3 4/5 as a fraction A. 14 B. 20 C. 29 D. 40 WHAT IS THE BASIC SPEED LAW?A DRIVE AT THE SPEED LIMIT REGARDLESS OF WEATHER CONDITIONSB DRIVE AT OR NEAR THE POSTED SPEED LIMITC DRIVE AT THE SPEED OF OTHER TRAFFICD DO NOT DRIVE FASTER THAN ROADWAY OR TRAFFIC CONDITIONS what is the lcm for 3/4and 1/2 please solve thank you thank you WHAT??? HELP ME PLEASE///8TH GRADE MATH There plz help me I will give brainliest if someone else answers it. Why do countries impose barriers to trade such as quotas?A to protect domestic industries from foreign competitionB to improve trade relationships with other countriesC to increase the efficiency of domestic producersD to lower the costs of goods for consumers