Write a pseudocode algorithm that ask a user to enter three numbers. The program should calculate and print their average

Answers

Answer 1

Answer:

BEGIN

INPUT first_number, second_number, third_number

average = (first_number + second_number + third number)/ 3

PRINT average

END

Explanation:

That is the simplest answer one can create


Related Questions

QUESTION 9 / 10
What is the problem with paying only your minimum credit card balance each month?
A. It lowers your credit score
B. You have to pay interest
C. The bank will cancel your credit card
D. All of the above

Answers

Answer:

The answer is C. the bank will cancel your credit card.

Explanation:

To register your content with the US Copyright Office, visit copyright.gov to get started. Online
registration usually costs between _____ and _____, and you'll have to send a copy of your completed
work to the U.S. Copyright Office either through the mail or via its website. Once your work is
registered, it will be added to the Library of Congress.
$35 and $55
O $25 and $65
O $15 and $35
O $85 and $105

Answers

Answer:

$35 and $55

Explanation:

Online registration usually costs between $35 and $55 , and you'll have to send a copy of your completed work to the U.S. Copyright Office either through the mail or via its website. The correct option is 1.

What is Copyright?

Copyright is a legal concept that grants creators of original works, such as literary, artistic, musical, and other types of intellectual works, exclusive rights.

These rights give the creators the ability to control how their works are used, distributed, and reproduced, as well as receive monetary compensation for their use.

Depending on the type of work and the filing option selected, online registration with the United States Copyright Office typically costs between $35 and $55 for a single work.

It should be noted that these fees are subject to change, and that additional fees may apply for specific services such as expedited processing or special handling.

Thus, the correct option is 1.

For more details regarding copyright, visit:

https://brainly.com/question/22399852

#SPJ6

Your question seems incomplete, the probable complete question is:

To register your content with the US Copyright Office, visit copyright.gov to get started. Online

registration usually costs between _____ and _____, and you'll have to send a copy of your completed

work to the U.S. Copyright Office either through the mail or via its website. Once your work is

registered, it will be added to the Library of Congress.

$35 and $55$25 and $65$15 and $35$85 and $105

what is modern? explain​

Answers

Answer:

modern means present like the moment like for example the iphone 12 is modern because it was made last year or this year i forgot but pretty much it means in the present

Explanation:


what is the answer???​

Answers

Answer:

I think it should be C

Explanation:

A group of two or more computers that are link together.

Scanning devices translate information processed by the system unit and present the information
on paper

Answers

Answer:

True

Explanation:

It is TRUE that Scanning devices translate information processed by the system unit and present the information on paper.

This is because the scanning device otherwise referred to as a scanner uses Optical Character Recognition software to capture the scanned document which is then processed into files accessible by predefined application, such as image viewer

What is your definition of Digital Safety?

Answers

Answer:

Digital Safety is being knowledgeable in the areas of Internet safety, device security, etc. and keeping yourself safe when using the Internet.

Explanation:

When you know how to stay safe on the Internet and keep yourself safe, you know Digital Safety.

always follow the routine "clean up while in use and clean up before keeping it".

true or false​

Answers

This answer out of the true or false or true

When do you need to apply for a federal student loan?

Answers

Answer:

Explanation:

In order to apply for federal student loans, you must fill out your FAFSA during a specific time. The federal deadline for completing your FAFSA is generally very forgiving — meaning that it comes very late in the school year.

Drag the tiles to the correct boxes to complete the pairs. Match the conversion systems with their steps. To convert a decimal fraction into its hexadecimal form to convert a hexadecimal number into its decimal form to convert a binary number into its hexadecimal form to convert decimal fraction into its hexadecimal form Divide each digit on the right side of the decimal point by the sum of different powers of 16. ArrowRight Use the decimal number system as an intermediary. ArrowRight Divide the left side of the decimal by 16, and multiply the right side by 16. ArrowRight Use repeated division and multiplication.

Answers

Answer:

1

Explanation:

Two parter:

A.) What is wrong with the program segment below? The program does not contain syntax errors.

B.) Fix the programming error(s)

num = 1;

while (num < 9)
{
cout << num;
num = num - 1;
}

Answers

Answer:

the variable num is not declared so the compiler doesn't define it.

add int before num:

int num = 1;

while (num < 9)

{

cout << num;

num = num - 1;

}

now the code will run but it won't stop as it will never break the condition (num < 9).

How many passes will it take to find 12 using a binary search? 8, 10, 12, 14, 16, 18, 20
1 3 4 2

Answers

Answer:

3 passes

Explanation:

Binary search halves and halves an ordered list of numbers until the value being searched is found.

14 is the middle number. it is larger than 12 so we look at the left side

10 is the middle number of the left side it is smaller than 12 os we look at the right side

12 is the middle number between 10 and 14 and it is also the number we are trying to find.

1. Atestharnessprogramfortestingsortingmethodsisprovidedwiththeprogram iles.ItisintheileSorts.javainthech11.sortspackage.Theprogramincludes aswapmethodthatisusedbyallofthesortingmethodstoswaparrayelements. a. Describeanapproachtomodifyingtheprogramsothataftercallingasorting methodtheprogramprintsoutthenumberofswapsneededbythesorting method. b. Implementyourapproach. c. TestyournewprogrambyrunningtheselectionSortmethod.Yourprogram shouldreport49swaps.

Answers

Answer:

Following are the code to this question:

//import package

import java.util.*;

import java.text.*;

public class Main//defining a class

{

static final int t = 50;//defining an integer constant variable

static int[] ele = new int[t];//defining an array

static int tS = 0;//defining integer variable

static void initelements()//defining a static method

{

Random r= new Random();//creating Random class Object

for (int i = 0; i < t; i++)//use loop to add value in array

ele[i] = Math.abs(r.nextInt()) % 100;//add value in array

}

static public boolean isSorted()//defining a method isSorted

{

boolean x = true;//defining boolean variable

for (int i = 0; i < (t - 1); i++)//use for loop to count array values

if (ele[i] > ele[i + 1])//use if to compare array values

x = false;//use boolean variable to hold false value

return x;//return boolean value

}

static public void swap(int x1, int x2)//defining swap method

{

tS++;//increment variable value by 1

//performing swapping

int te = ele[x1];//defining te variable that holds array values

ele[x1] = ele[x2];//exchanging array values

ele[x2] = te;//holding te values

}

static public void disp()//defining a method disp

{

int v1;

DecimalFormat f = new DecimalFormat("00");//creating DecimalFormat class Object

System.out.println("The elements array is:");//print message

for (int i = 0; i <t; i++)//defining for loop  

{

v1 = ele[i];//holding array value in v1 variable

if (((i + 1) % 10) == 0)//use if to check i value

System.out.println(f.format(v1));//print value

else//else block

System.out.print(f.format(v1) + " ");//print value

}

System.out.println();//print space

}

static int getMinimum(int st, int en)//defining a method getMinimum

{

int iMi = st;//defining variable that holds parameter value

for (int i = st + 1; i <= en; i++)//use for loop compare array value

if (ele[i] < ele[iMi])//compare array value

iMi = i;//use iMi to hold loop value

return iMi;//return iMi value

}

static void selectionSort()//defining a selectionSort method

{

int e = t - 1;//defining e variable that holds total array count value

for (int i = 0; i < e; i++)//use for loop to call swap method  

swap(i, getMinimum(i, e));//calling the swap method

}

public static void main(String[] args)//defining main method  

{

initelements();//calling initelements method

disp();//calling disp method

System.out.println("elements is sorted: " + isSorted());//calling is isSorted method with the message

System.out.println();//for space

selectionSort();//calling selectionSort method

System.out.println("No of swaps :" + tS);//print totalswap value with the message

disp();//calling disp method

System.out.println("elements is sorted: " + isSorted());//calling is isSorted method with the message

System.out.println();//for space

}

}

Output:

Please find the attached file.

Explanation:

In this code inside the Main class, 5 static methods "initelements, isSorted, swap, disp, getMinimum and selectionSort" is declared, in which the first method holds random values in arrays, in second array it sorts its values, in the third method it swap the array, in the disp method it shows array values.

In the "getMinimum and selectionSort"  it sorts array values and inside the main method, it calls all methods and prints their values.

PLEASE HELP WILL GIVE BRAINLIEST

Answers

Answer:

Explanation: answer is b) the row comes first  in the  element of an index

Kim is creating a PowerPoint presentation about the life cycles of different organisms. Knowing that her file will include a number of images, technical terms, and scientific names, she decides to customize the ribbon to make her work more efficient. To do this, she must access the PowerPoint Options dialog box.

How should Kim begin this task?
by clicking the Home tab and selecting Editing
by clicking the File tab and selecting Options
by clicking the View tab and selecting Master Views
by clicking the Help tab and selecting Help & Support

Answers

Answer: Clicking on file tab and selecting options, if she has issues contact Help & Support.

Hope it helped!

Answer:

by clicking the File tab and selecting Options

Explanation:

The Quick Access Toolbar is typically
located in the top-right corner of the
window, above the ribbon.
True
False

Answers

Answer:

False

Explanation:

It is on the left

it is false hey a so it’s a

Harrison works in a manufacturing unit and oversees the logistics, including the daily shipping of a large number of packages. Which information system will he use in the unit to keep track of the deliveries?

Answers

Answer:

E. Transaction processing system

Explanation:

Explanation: He will need a transaction processing system to know the amount of logistics available daily and how many to ship and how many to order. Transaction processing system will make him keep track of what transactions take place during the various days to help him give a good report.

You read an article about someone who leaves USB sticks in college libraries so that people will pick them up, insert them into their laptops, and download malware. This is an example of:

phishing.

eavesdropping.

wiretapping.

social engineering.

Answers

Answer:

social engineering

Explanation:

 

The above scenario of USB use is an example of social engineering.

What is Social Engineering?

This is known to be when a person gets phishing email via any method known as social engineering.

Conclusively, Social Engineering is a term that connote non-technical intrusion that depends on human linkage and it I one where a person is been tricked into breaking normal security means. It often makes use of USB drive for its purpose.

Learn more about social engineering from

https://brainly.com/question/26072214

Any looping construct can be nested inside another loop is known as

Answers

Answer:

nested loop

pls mark me as brainliest

What are the pros and cons of using ICT​

Answers

Answer:

Communication - Speed / time – money can be saved because it's much quicker to move information around. ...

Globalization - Video conferencing saves money on flights and accommodation. ...

Cost effectiveness - It feels free to send an email (although it isn't); it's without doubt cheaper than phone calls.

Explanation:

_______________is the career cluster that medical professionals are under.

Answers

I think the answer is Doctor ?

How do I break CPU pins

Answers

Answer:

grab them with fingertips or insert the board at wrong angle

Explanation: According to Guinness, “Rap God” by Eminem (USA) packs 1,560 words into a fast and furious 6 min 4 sec – that's a tongue-twisting average of 4.28 words per second!

using clipers or tweezers can help you in bending the pin in the right way to snap it

-scav

When you save a page as a template, Dreamweaver stores the new template in a folder named ______________________. *

Answers

when you store a  template in Dreamweaver it is stored in the template folders it also puts a copy in the root folder.

-scav

Identify six specific skills that a computer software engineer is expected to demonstrate.

Answers

1.) Team work

2.) Disciple

3.). Creativity

4.) Attension To Deatil

5.) Time Mangament

Explanation:

Answer:

A computer programmer needs to demonstrate that they are:

1. A team player

2. Able to meet deadlines

3. Able to solve problems logically and efficiently

4. Able to create programs that fulfill their intended purpose

5. Able to be flexible (do many different types of jobs)

6. Able to adapt to new changes and be able to learn new skills

Explanation:

Computer programmers are tasked with creating software that works effectively with the given hardware and the people using it, and to do that, they have to be very skilled in many areas.

5.20 LAB: Output values below an amount Write a program that first gets a list of integers from input. The input begins with an integer indicating the number of integers that follow. Then, get the last value from the input, which indicates a threshold. Output all integers less than or equal to that last threshold value. Ex: If the input is: 5 50 60 140 200 75 100 the output is: 50,60,75,

Answers

Answer:

Following are the code to the given question:

x= input()#defining a variable x that inputs value from the user-end

l = x.split(" ")#defining variable l that splits the x variable value with a space

t= int(l[len(l)- 1])#defining a variable t that decrease the l length and convert the value into integer

for i in range(1, (len(l) - 1)):#use for loop to calculate the range of the list

      if int(l[i]) < t:#defining if block that checks the list value is lessthan t

          print(l[i])#print list values

Output:

Please find the attached file.

Explanation:

In the above-given code, an "x" variable is declared that inputs the value from the user-end, and use the "l" variable that splits all the value and defined a "t" variable that adds value into the list and convert the value into an integer.

In the next step, for loop is declared that counts the lists and use a conditional statement that checks list value is less than t and use the print the method that prints the list values.  

Software is:

A. storage-related information technology.

B. programs that help hardware accomplish tasks.

C. the opposite of firmware.

D. all of the above.

Answers

I think the answer is A

Which of the following is a programming language that translates code one line at a time? (5 points)
a
C:
b
Java
с
Machine
d
Python

Answers

Answer:

Python!

Its the only programming language that is an interpreted language

Hope it helped <3

PLEASE ANSWER ALL QUESTIONS CORRECTLY FOR 50 POINTS AND A BRAINLIEST!!!! IT ALSO INCLUDES ENGLISH, PLEASE KEEP IN MIND THIS IS ALSO IMPORTANT JUST AS THE OTHERS (NO SPAMMING OR LINKS)

Which stage of the problem-solving process involves identifying the inputs, process, and output for each solution? *

Definition of the problem
Develop the algorithm
Propose and evaluate possible solutions
Determine the most efficient solution.

Software used for professional print publications such as posters, books, and email newsletters is called a: *

Professional software
Word processing software
Desktop program
Desktop publishing software

Which of the following criteria does NOT determine the credibility of a source? *

How current the information is
The reputation the publisher
The article covers (speaks about) the topic being researched
The gender of the author

The process of finding a solution to a difficult or complex issue to make it easier is known as *

problem
problem-solving
input

A series of actions taken in order to solve a particular problem is known as the____________ *

process
problem
input
output

A finite set of unambiguous (no uncertainty, clear) instructions that can be performed in a prescribed sequence to achieve a certain goal is called a/an *

problem
output
algorithm
input

Which is the third step in the problem-solving process? *

Propose possible solutions
Test and evaluate the solution
Select the most effective solution
Defining the problem

A list of sources you used when writing a scholarly article on a specific subject is known as a: *

intellectual-property
credibility
bibliography
trademark

Which of the following are you able to create with the use of desktop publishing software? *
1 point
E-Book
Banner
All of the above
Newsletter

Which of the following is NOT a writing style format for academic purposes? *

Times New Roman
American Psychological Association
Modern Language Association

The right by an individual to protect his/her literary work such as poems, songs, and drawing is known as *

plagiarism
copyright
industrial property
trademark
Through the use of technology we can easily: *

SELECT ALL THAT APPLY. HINT: ONLY TWO OF THE 4 ARE CORRECT.

say more traditional jobs being available
agree that there are fewer emerging jobs
sell goods and services as we’ve never been able to
produce more jobs which will create growth and development in the country.

Answers

Answer:

finding a suitable solution for issue can be accomplished by following the basic four-step problem solving process and methodology outlined.

can someone help me in my IT (information technology) homework

I am in 9th class and i will send the questions​

Answers

Answer is. Communication peed / time – money can be saved because it’s much quicker to move information around. With the help of ICT it has become quicker and more efficient. As Advantage And Disavantages is  Privacy - Though information technology may have made communication quicker, easier, and more convenient, it has also brought along privacy issues. From cell phone signal interceptions to e-mail hacking, people are now worried about their once private information becoming public knowledge.

Which operating system uses hyperlinked icons and is the most popular operating system to date?

Macintosh
Microsoft Windows
LINUX
UNIX

Answers

Answer: The Microsoft Windows operating system uses hyperlinked icons, and is the most popular operating system in the world, currently having over 1 billion registered users.

top secret mission lolz

Answers

Answer:

whats the mission about??

Explanation:

~evita

Other Questions
GIVING BRAINLIEST!!!!Which of the following best describes how a climate change affects the organisms in a certain environment? They might have more resources that help them survive. The will move to a new location where resources are available. They will struggle to survive due to reduced space. They might adapt, move to new place, or struggle to survive. Its comforting to know Chris was here, Billie explains, to know for certain that he spent time beside this river, that he stood on this patch of ground. So many places weve visited in the past three yearswed wonder if possibly Chris had been there. It was terrible not knowingnot knowing anything at all.Many people have told me that they admire Chris for what he was trying to do. If hed lived, I would agree with them. But he didnt, and theres no way to bring him back. You cant fix it. Most things you can fix, but not that. I dont know that you ever get over this kind of loss. The fact that Chris is gone is a sharp hurt I feel every single day. Its really hard. Some days are better than others, but its going to be hard every day for the rest of my life. Abruptly, the quiet is shattered by the percussive racket of the helicopter, which spirals down from the clouds and lands in a patch of fireweed. We climb inside; the chopper shoulders into the sky and then hovers for a moment before banking steeply to the southeast. For a few minutes the roof of the bus remains visible among the stunted trees, a tiny white gleam in a wild green sea, growing smaller and smaller, and then its gone. (203)What effect do the words abruptly, shattered, and percussive have in the final paragraph above?A.They exemplify Krakauers tendency to overwrite.B.They mimic the intrusion of the helicopter through sounds.C.They draw in the reader emotionally.D.They illustrate the harsh reality of the Alaskan wilderness.E.They stand as a metaphor for Chris character. Question 3You can gamble with which of the following:O A. MoneyB. Cars.C. Properties.OD. All of the above. Evaluate the expression for the given value(s) of the variable(s). m/6 ;m = 18 Find the standard deviation. Round to the nearest tenth.72, 35, 46, 89, 55, 80, 27, 24, 86 A. 7.1B. 27.3C. 24.1D. 25.5 What are six kinds of special purpose maps? it's all on the picture Use the information to answer the following question. Bill is assigned to standing committee Bill is voted on by the first full chamber ?????Bill is assigned to standing committee Bill is voted on by the second full chamberBill is put to the pea????Which steps correctly complete the lawmaking process? The New Deal affected Us domestic policy by A expanding the size and scope of the federal government. B. Increasing the number of Americans who had health insurance. C. limiting the size and scope of the federal government. D. decreasing the number of entitlements available to Americans. SUBMIT How did the Nazi view the Jews? What does a computer program use as a means to evaluate a condition as True or False? which statements are true of the silk roadChoose all answer that are correctAHSWER BY TODAY!!A, most merchants on the silk road used money in the exchange of goods.B, Merchants faced hardships from climate and dangerous Terrian on the silk road, C, Merchants from china carried silk and spices to trade with westerners, D, A lot of ideas and knowledge were exchanged along the silk road.PLEASE HELLPPPP!!!!!!!!!!!!!!!!!!!!!!!!!!!! thank you for answering this question :) what would be the answer for this? help!! Kevin plants 11 packages of vegetable seeds in a community garden. Each package costs $1.64 with tax. What is the total cost of the seeds? PLEASE HELP FAST!! write an equation of the circle with center (8,-6) and radius 2 Stop and frisk was designed to decrease crime and thereby increase peace in communities. Do you believe that stop and frisk succeeds or fails to promote peace? Why? Name the artist that drew this picture! Find the mean of the weight of rocks: 4 lbs, 6 lbs, 4 lbs, 5 lbs, 9 lbs, 8 lbs3 The Compromise of 1850 allowed certain territories to use popular sovereignty to determine whether the territory would be allowed to be free or slave. The decision applied to much of the land gained from the-