differcence between displayed output and printed output

Answers

Answer 1

Answer:

The display output specifies the variable's data type and returns output line by line. The print output, on the other hand, does not indicate the variable's data type and does not deliver output line by line. The print output can be used to portray any type of data, such as a string or an approximate value. The display output is a Python programming capability that is used to comprehend a line of text given by the user.


Related Questions

On a leading-trailing system technician A says that both shoes do equal work when stopping while going in reverse. Technician B says that the shoe facing the rear does most of the work when stopping in reverse. Who is right?

Answers

Based on the scenario above about the leading-trailing system Both technician A and B are incorrect.

How many brake shoes function?

There are known to be two shoes function that are said to be working a way where both become either the trailing shoe or leading shoe based on whether the vehicle is moving forward or backward.

Therefore we can say that, Based on the scenario above about the leading-trailing system Both technician A and B are incorrect.

Learn more about trailing system from

https://brainly.com/question/14367881

#SPJ1

As the Data Analyst, you have been named in a lawsuit against the company. Other
emplovees of the company are upset over findings from a recent company network
traffic usage report. Which of the following best describes the reason for this situation?
Capturing video of employees working using a hidden camera
Failure to publish positive comments along with employee complaints.
Publishing an incomplete list of employee suggestions for network improvements.
Failure to keep personal information collected private.

Answers

Publishing an incomplete list of employee suggestions for network improvements.

What is Data Analyst?

A Data Analyst is a professional who gathers and analyzes data across the organization in order to make informed decisions or to assist other team members and leadership in making sound decisions.

You have been named in a lawsuit against the company as the Data Analyst. Other company employees are displeased with the findings of a recent network traffic usage report.

One possible explanation is that an incomplete list of employee suggestions for network improvements was published.

Thus, this can be the reason for the given scenario.

For more details regarding data analyst, visit:

https://brainly.com/question/28893491

#SPJ1

4.13 LAB: Playlist (output linked list)
Given main(), complete the SongNode class to include the printSongInfo() method. Then write the Playlist class' printPlaylist() method to print all songs in the playlist. DO NOT print the dummy head node.

Ex: If the input is:

Stomp!
380
The Brothers Johnson
The Dude
337
Quincy Jones
You Don't Own Me
151
Lesley Gore
-1
the output is:

LIST OF SONGS
-------------
Title: Stomp!
Length: 380
Artist: The Brothers Johnson

Title: The Dude
Length: 337
Artist: Quincy Jones

Title: You Don't Own Me
Length: 151
Artist: Lesley Gore

import java.util.Scanner;

public class Playlist {

// TODO: Write method to ouptut list of songs

public static void main (String[] args) {
Scanner scnr = new Scanner(System.in);

SongNode headNode;
SongNode currNode;
SongNode lastNode;

String songTitle;
int songLength;
String songArtist;

// Front of nodes list
headNode = new SongNode();
lastNode = headNode;

// Read user input until -1 entered
songTitle = scnr.nextLine();
while (!songTitle.equals("-1")) {
songLength = scnr.nextInt();
scnr.nextLine();
songArtist = scnr.nextLine();

currNode = new SongNode(songTitle, songLength, songArtist);
lastNode.insertAfter(currNode);
lastNode = currNode;

songTitle = scnr.nextLine();
}

// Print linked list
System.out.println("LIST OF SONGS");
System.out.println("-------------");
printPlaylist(headNode);
}
}

Answers

Using the knowledge in computational language in JAVA it is possible to write a code that will organize the songs of a playlist through the titles and singers.

Writing the code in JAVA we have:

import java.util.Scanner;

public class Playlist {

public static void printPlaylist(SongNode songs){

SongNode song = songs.getNext();

while (song!=null) {

song.printSongInfo();

System.out.println();

song = song.getNext();

}

}

public static void main (String[] args) {

Scanner scnr = new Scanner(System.in);

SongNode headNode;

SongNode currNode;

SongNode lastNode;

String songTitle;

int songLength;

String songArtist;

headNode = new SongNode();

lastNode = headNode;

songTitle = scnr.nextLine();

while (!songTitle.equals("-1")) {

songLength = scnr.nextInt();

scnr.nextLine();

songArtist = scnr.nextLine();

currNode = new SongNode(songTitle, songLength, songArtist);

lastNode.insertAfter(currNode);

lastNode = currNode;

songTitle = scnr.nextLine();

}

System.out.println("LIST OF SONGS");

System.out.println("-------------");

printPlaylist(headNode);

}

}

class SongNode {

private String songTitle;

private int songLength;

private String songArtist;

private SongNode nextNodeRef;

public SongNode() {

songTitle = "";

songLength = 0;

songArtist = "";

nextNodeRef = null;

}

public SongNode(String songTitleInit, int songLengthInit, String songArtistInit) {

this.songTitle = songTitleInit;

this.songLength = songLengthInit;

this.songArtist = songArtistInit;

this.nextNodeRef = null;

}

public SongNode(String songTitleInit, int songLengthInit, String songArtistInit, SongNode nextLoc) {

this.songTitle = songTitleInit;

this.songLength = songLengthInit;

this.songArtist = songArtistInit;

this.nextNodeRef = nextLoc;

}

public void insertAfter(SongNode nodeLoc) {

SongNode tmpNext;

tmpNext = this.nextNodeRef;

this.nextNodeRef = nodeLoc;

nodeLoc.nextNodeRef = tmpNext;

}

public SongNode getNext() {

return this.nextNodeRef;

}

public void printSongInfo(){

System.out.println("Title: "+this.songTitle);

System.out.println("Length: "+this.songLength);

System.out.println("Artist: "+this.songArtist);

}

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

which set of possible outputs can result from a Boolean function
A. Movement or sound
B. If or then
C. True or false
D. High or low

Answers

The set of possible outputs that can result from a Boolean function is known to be True or false.

What is the output of Boolean?

In Boolean Algebra terms, that which is known to be the output will only come out as TRUE only if all of its inputs are TRUE and false if it is not.

Therefore, The set of possible outputs that can result from a Boolean function is known to be True or false.

Learn more about Boolean function from

https://brainly.com/question/13265286

#SPJ1

Name the folder inside which the folder "first term' and second term' are located.​

Answers

Answer:

............................................

A collection of modules and packages that can be imported into a program is called

Answers

Answer:

library

Explanation:

class - used to create objects

documentation - provides information on the program's workings

function - this is part of a module

You work at a computer store and a client approaches you, asking you to recommend a computer that she can buy for her son who wants to use the computer for gaming.

Answers

Answer:

just search a gaming pc and write the components then the specs of the pc

Explanation:

now gimme answer for question 4.2 please

Regarding k-NN algorithm which of the following statements is true?

Select the best answer

Select one:

A.
KNN could be used for both classification and regression problems


B.
All answers are correct


C.
It makes sense to use KNN, in cases where the data changes frequently and the prediction time is not important


D.
It does not make sense to use very high values of K (number of neighbors)

Answers

Answer:

A

Explanation:

KNN could be used for both classification and regression problems

CALCULATE THE MISSING VALUE:


1. P=?, I = 2A, E = 12V

2. P=200W, I = 2A, E = ?

3. P= 100W, I = ?, E = 120V

4. P = 1000W,I= 10A, E = ?

5. P=150W, I = ?, E = 120V

6. P=?,I= 3A, E = 15V

7. P=300W, I = ?, E = 100V

8. What unit is to measure power?

9. What unit is to measure voltage?

10. What unit is to measure amperage?.​

Answers

Answer:

See below ~

Explanation:

Relating Power (P), Amperage (I), and Voltage (V) :

Power (P) = Voltage (V) × Amperage (I)

===========================================================

Q1

⇒ P = 2A × 12V

⇒ P = 24W

============================================================

Q2

⇒ 200W = 2A × E

⇒ E = 100V

=============================================================

Q3

⇒ 100W = I × 120V

⇒ I = 5/6

⇒ I = 0.83A

=============================================================

Q4

⇒ 1000W = 10A × E

⇒ E = 100V

=============================================================

Q5

⇒ 150W = I × 120V

⇒ I = 5/4

⇒ I = 1.25A

=============================================================

Q6

⇒ P = 3A × 15V

⇒ P = 45W

===========================================================

Q7

⇒ 300W = I × 100v

⇒ I = 3A

============================================================

Q8

⇒ The unit to measure power is Watt (W)

===========================================================

Q9

⇒ The unit to measure voltage is volt (V)

============================================================

Q10

⇒ The unit to measure amperage is Ampere (A)

PLEASE HELP!!
Read the following characteristic:
Programmers will write code and have objects interact and perform actions.
How would you classify it?

A disadvantage of object-oriented programming
A purpose of object-oriented programming
A result of procedural programming
An aspect of procedural programming

Answers

Based on the above, I will classify it as purpose of object-oriented programming.

What is this programming about?

The  object-oriented programming (OOP) is known to be where the programmer thinks in regards to the objects instead of the functions.

Note that Objects are said to be defined here via the use of a class and are known to be parts of the program that can does certain actions and interact with one another.

Therefore, Based on the above, I will classify it as purpose of object-oriented programming.

Learn more about Programmers from

https://brainly.com/question/23275071

#SPJ1

What type of scripts can tap in to your mobile device’s GPS location, which can then be used in a game?
geo-location scripts
geo-level scripts
heightmap scripts
evasion vector scripts

Answers

Answer:

geo-location scripts

Explanation:

see above

Explain why you would use the soft the soft on/off jumper when working on the ATX system

Answers

Soft power is one that hinders a user from turning off a system when the operating system has not yet been shut down.

What is the system about?

The BIOS or operating system is known to be a kind of system that handles the work of turning the PC on or off. This is known to be soft power.

Note that the use of soft power instead of a physical switch has a lot of benefits such as it prevents a user from turning off a system when the operating system is not yet shut down.

Learn more about system from

https://brainly.com/question/25594630

#SPJ1

Dalton needs to prepare a close-out report for his project. Which part of the close-out report would describe how he would plan and manage projects in the future?

Answers

The part of the close-out report would describe how he would plan and manage projects in the future is summary of project management effectiveness.

What is summary?

A summary is known to be a short statement or the restatement of key fact , mostly in a form of  a conclusion to a work.

Note that in the above case, The part of the close-out report would describe how he would plan and manage projects in the future is summary of project management effectiveness.

See the options below

Select an answer:

project highlights

major changes and risks

summary of schedule and cost performance

summary of project management effectiveness

Learn more about report from

https://brainly.com/question/24256083

#SPJ1

Which of the following algorithms is deterministic, in the sense that for a given input, a constant output will necessarily be given?

Select the best answer



Select one:
A.
The K-Means algorithm with the Lloyd method

B.
The K-Means algorithm with the Forgy method

C.
The K-Means algorithm with the K-means++ method

D.
The K-NN algorithm with a weighted average

Answers

The following algorithms is deterministic, in the sense that for a given input, a constant output will necessarily be given are C.The K-Means algorithm with the K-means++ method.

What is the difference between What is the distinction among K method and K-method ++?

Both K-method and K-method++ are clustering strategies which comes beneath neath unsupervised learning. The fundamental distinction among the 2 algorithms lies in: the choice of the centroids round which the clustering takes place. okay methodthe ++ eliminates the disadvantage of K method that's it's miles depending on initialization of centroids.

This set of rules guarantees a wiser initialization of the centroids and improves the first rate of the clustering. Apart from initialization, the relaxation of the set of rules is similar to the same old K-method set of rules. That is K-method++ is the same old K-method set of rules coupled with a wiser initialization of the centroids.

Read more bout the  K-Means algorithm:

https://brainly.com/question/15016224

#SPJ1

What kind of AR target category makes sense for a playing card with a picture on it?
single image
cylinder
3D object
bitmap

Answers

Answer:

3D objects

Explanation:

Repeated patterns and 3D makes AR target category more sensible for playing card with picture in it. 3D usually stands for three dimensional imaging which helps in better visualisation techniques of object.

Option C

: Compute the 9 partial derivatives for the network with two inputs, two neurons in
the hidden layer, and one neuron in the output

Answers

Using the python code we can say that it will be possible to calculate the neutrons and organize them as:

The code can be written as:

def get_total_derivative(self,l_id):

def sigmoid(x, div = 0):

if div == 1:

return np.exp(-x) / (1. + np.exp(-x))**2.

if div == 2:

return - np.exp(x) * (np.exp(x) - 1) / (1. + np.exp(x))**3.

return 1. / (1. + np.exp(-x))

def linear(x, div = 0):

if div == 1:

return np.full(x.shape,1)

if div > 2:

return np.zeros(x.shape)

return x

See more about python at brainly.com/question/18502436

#SPJ1

Word frequencies (lists)

Answers

A list in programming is list of values for a given parameter enclosed in a square bracket and separated by commas.

Worde frequences ( lists )

A list can contain a mixture of string, integer and float values while a list can also be mutable when required to add or delete value(s) from the list.

The debugged lines of code ( file ) which can be run with zyBooks Lab 7.8 is attached below

Learn more about lists in programming : https://brainly.com/question/26352522

#SPJ1


To what extent do preexisting personal biases affect representation in new media

Answers

Answer:

Below

Explanation:

I believe that it's a bit of a case by case scenario. However, personal biases will inevitably show throughout any sort of writing or other presenting within media. That's why you should always be careful about what you read and believe is true

a) In order to execute a program, instructions must be transferred from memory along a bus to the CPU. If the bus has 8 data lines, at most one 8 bit byte can be transferred at a time. How many memory accesses would be needed in this case to transfer a 32 bit instruction from memory to the CPU? ​

Answers

Answer: 4 memory accesses

.........We should now focus on the 8 bit byte and how many can it transfer at a time. Notice how I bolded that word so we no know that we should fivide the 32 bit instruction divided by the 8 bit byte which would be 4 memory acesses

what is the broad overview of a class scheduling software​

Answers

Answer: basically you run the time management of a company

Explanation:

You can perform the collaborative scheduling

You can minimize the scheduling conflicts

Easy to track management insight

Increase efficiency

Keep your staff updated

Track of time and attendance

A particular talent competition has five judges, each of whom awards a
score between 0 and 10 to each performer. Fractional scores, such as 8.3, are allowed. A
performer’s final score is determined by dropping the highest and the lowest score received, then
averaging the three remaining scores. Write a program that uses these rules to calculate and
display a contestant’s score. It should include the following functions:
• getJudgeData() should ask the user for a judge’s score, validate it, and then return it. This
function should be called by main once for each of the five judges.
• calcScore() should drop the highest and lowest score and then calculate and print the
average of the three scores that remain. This function should be called at least once by
main and should be passed the five scores. These averages should be rounded to the
tenths decimal place. Make sure you are rounding after your calculation (3.57 = 3.6 and
3.54 = 3.5)
Two additional functions, described below, should be called by calcScore, which uses the
returned information to determine which scores to drop.
• findLowest() should find the lowest of the five scores passed to it.
• findHighest() should find and return the highest of the five scores passed to it.
In JAVA programing

Answers

Using the C++ code we can say that it will be possible to calculate the points as follows:

Writing this code we will have:

#include <iostream>

using namespace std;

void getJudgeData(double *);

void calcScore(double[], int);

double findLowest(double[], int);

double findHighest(double[], int);

int main()

{

double scores[5];

int i;

int s=5;

double avgScore;

cout << "\n Enter each Judge's score.\n\n\n";

for(i=0;i<5;i++)

{

cout << "\n Enter Judge #"<< i+1 <<" score: ";

getJudgeData(&scores[i]);

}

See more about C code at brainly.com/question/17544466

#SPJ1

A leading pharmaceutical company is launching a major transformation of its entire Cloud operations in order to more quickly and efficiently perform research and conduct clinical trials.

How can a Cloud-first strategy help this client?


by providing a data and analytics platform that keeps the client's legacy systems intact


by providing a data-centric approach that offers more speed, agility, and security


by transforming and upskilling the client's workforce to build their own Cloud solution


by automating the entire scope of the client's business

Answers

A cloud-first strategy helps this client by providing a data-centric approach that offers more speed, agility, and security. Thus, the correct option is B.

What is a Cloud-first strategy?

A cloud-first strategy may be defined as an operational strategy that allows the users to reposition all or most of their infrastructure to cloud-computing platforms.

A cloud-first strategy helps this client in numerous ways. It provides a data-centric approach that offers more speed, agility, and security to its customers or clients in a facilitated manner.

Therefore, the correct option for this question is B.

To learn more about the Cloud-first strategy, refer to the link:

https://brainly.com/question/24719487

#SPJ1

fast i need now ill give anything
Why is compressed air energy storage considered to be very useful?
A. because it allows people to use the resource at the exact time they need it
B. because it uses outside electricity to change the speed of the flywheel
C. because it stores electricity as rotational energy
D. because the vacuum chamber reduces friction and minimizes energy loss

Answers

Answer:A

Explanation:

Because compressed air energy storage (CAES) is known to have strong potential to deliver high performance energy storage at large scales for relatively low costs compared with any other solution.

Answer: A. because it allows people to use the resource at the exact time they need it

Explanation:

Review this persuasive speech outline .
.This speech includes an effective introduction using humor,several transitions and an effective conclusion with a thought provoking ending

Answers

Saying that the speech includes an effective introduction using humor, several transitions and an effective conclusion with a thought provoking ending is false.

What is persuasive speech?

This is known to be a speech that is given so as to convince a person about a thing or topic.

Note that in the excerpt, the speech does not includes an effective introduction using humor, several transitions and an effective conclusion with a thought provoking ending and thus, it is a false statement.

Learn more about persuasive speech from

https://brainly.com/question/14047451

#SPJ1

Which data value is most likely an outlier in the dataset below?

89, 100, 95, 26, 79, 85, 98, 75

Answers

The answer is A, 26. Hope this helps!

Why does the media play such an important role in our personal freedom? Select 3 options.

It holds government accountable.
It holds government accountable.

It promotes self-expression.
It promotes self-expression.

It spreads government’s views.
It spreads government’s views.

It keeps us informed.
It keeps us informed.

It keeps us entertained.
It keeps us entertained.

Answers

Answer:

It promotes self-expression

It holds the government accountable

It keeps us informed

Explanation:

I got them right Ed

The media play such an important role in our personal freedom because of the following:

A. It holds the government accountable.

B. It promotes self-expression.

D. It keeps us informed.

What is media?

The media is a center of communication or transfer of information throughout the world. Its main aim is to collect information from the world and provide it to the citizens.

Because it enables the public expression of one's personal opinion about a subject, the media is crucial to freedom.

Media plays an important role in freedom because it helps in expressing a personal view about something in front of people. It gives us information about the world, and what is happening in the government, and other current situations.

Thus, the correct options are:

A. It holds the government accountable.

B. It promotes self-expression.

D. It keeps us informed.

To learn more about media, refer to the link:

https://brainly.com/question/28100033

#SPJ5

Which of the following is classified as a workgroup information system?

Answers

The Monterey Bay Aquarium's tool that helps staff communicate, organize, plan, schedule, and track jobs is classified as a workgroup information system.

What is a workgroup information system?

A workgroup information system (WIS) can be defined as a system that is designed and developed to provide support for team members during a group decision-making process.

The main purpose of a workgroup information system (WIS) is to enhance and promote the free flow of information among the members of a team.

Read more on workgroup information system here: https://brainly.com/question/25226643

#SPJ1

An example of people working for a social cause is when a:
A.family complains to a restaurant manager that the food and service were poor
B.group stands on the corner with signs urging people to spray or neuter their pets
C.government decides that a certain newspaper company must be shut down.
D.student writes in his journal about how much he enjoyed visiting a national park

Answers

Answer:

B. Group stands on the corner with signs urging people to spray or neuter their pets.

Explanation:

It is B because they are fighting for people to neuter their pets to probably to avoid having so many strays

Please select the word from the list that best fits the definition

Plagiarism

Answers

the practice of taking someone else's work or ideas and passing them off as one's own.

Answer:

You need to give context/examples/question answers.

Explanation:

If I bought a PC, what is the official way to get all of the drivers and runtimes?​

Answers

Answer: To get drivers to go to the website of the computer

Explanation:

Like if it is Dell or HP or ASUS  the drivers will be on the site if you have the serial number and make of your pc. The site will have phone numbers if you have problems and email help ...

Plus the site will have all the specs of your PC depending how new it is for the runtimes

Other Questions
What is the name of the scratch extension used in this game [tex]3x^2+8x+4=0[/tex] Solve using the quadratic formula. Which of the following words has theconnotation that best fits the sentencebelow?He had taken his car in for repair threetimes now, and he was ! It stillwasn't working.A. angryB. irkedC. inconvenienced Select the correct text in the passage.Which two sentences in this excerpt from John F. Kennedy's inaugural address demonstrate the use of antithesis as a rhetorical device?We observe today not a victory of party but a celebration of freedomsymbolizing an end as well as a beginningsignifying renewal as well as change. For I have sworn before you and Almighty God the same solemn oath our forbears prescribed nearly a century and three-quarters ago.The world is very different now. For man holds in his mortal hands the power to abolish all forms of human poverty and all forms of human life. And yet the same revolutionary beliefs for which our forebears fought are still at issue around the globethe belief that the rights of man come not from the generosity of the state but from the hand of God.We dare not forget today that we are the heirs of that first revolution. Let the word go forth from this time and place, to friend and foe alike, that the torch has been passed to a new generation of Americansborn in this century, tempered by war, disciplined by a hard and bitter peace, proud of our ancient heritageand unwilling to witness or permit the slow undoing of those human rights to which this nation has always been committed, and to which we are committed today at home and around the world. Your creditworthiness is measured by a number called a. Choose the correct order for the process of a user attempting to access network resources: 1. network protocol 2. application 3. network client 4. nic driver details of the socio political and economic background of Woza albert Please convert these sentences into the imperfect tense 100pts similarities between chromosphere and photosphere Why did black South Africans take over Stefan Smits land? Given circle N with chord AB, which point lies on the perpendicular bisector of AB? Name the inverse opetThe inverse operation that you can use to solve this equation is 1Cul es el signo del resultado de la suma de dos nmeros enteros negativos?y escribir un ejemplo...2Cul es el signo del resultado de la suma de dos nmeros enteros con signos diferentes?y escribir un ejemplo Find the measure of the three missing angles in the rhombus below.Explain it. What it the present value of $2,000 that you expect to receive in 3 years assuming you could invest the money today and earn a 5% annual return?. In which two ways does the fifth paragraph contribute to the development of ideas in the passage?A.) it illustrates how the camp a used in the present day.B.) it provides reasons for why the camp allows limited public access.C.) it lists the different activities that guests can engage in at the camp.D.) it explains several historical events at the camp.E.) it describes how most visitors enjoy their time at the camp. please help me I'm almost done mention part of generetor and write the uses of each part make mathematical expression and simplify. The sum of 4 and 5 is subtracted form one-third of the difference of 40 and 4. Find the slope please