answersLogoWhite

0

What else can I help you with?

Related Questions

What is the meaning of print python programming?

In Python; the "print" feature will simply output something (defined by you) onto the screen. For example: print("Hello") would output "Hello" to the screen!


What is the difference between document and print output?

document is what you see on your screen and print output is what will look like when you send it to printer. there can be small difference because screen and printer work different with colors, screen colors are rgb and they must be translated to cmyk colors in most cases to print properly.


How do you write a program to print the first n multiples of 7?

Algorithm: multiples input: two positive integers, m and n output: print first n multiples of m i = m; for j = 1 to n print i i = i + m; next j


What is the meaning of print and input in idle python?

"print" will output a value onto the screen for a user to see. "input" or "raw_input" gets a user's input.


What PHP statement outputs text on the screen?

There are several different ways to output text on the screen in PHP two of the most common are echo and print. echo "Hello World!"; print ("Hello World!"); Would both print ... Hello World!


Which Windows component allows the Windows operating system to output graphics to a computer screen or print device?

gdi


What is the function of computer printer?

To get a hard copy output of any soft print in the screen in a form of a paper! Simple..


How can print screen output in borland c plus plus?

Redirect the output to a file via the command line. Print the file. For example, if the program is named foo.exe, the output can be redirected to a file named foo.txt with the following command: foo.exe > foo.txt Everything sent to std::cout by the program will now be sent to the file instead. Everything sent to std::cerr will be displayed on screen as normal.


What monitor element has both input and output devices?

A (n) touch screen is a monitor element that has both an input and an output device. Touch screen : A display screen with a transparent touch-sensitive covering that allows a user to select input by touching the screen rather than using a keyboard or a mouse. a touch screen does triple-duty as an output device, a display, and an input device.


What is screen output?

screen output are text,graphs,pictures and drawings.


A character that displays on the screen, but does not print?

a character that displays on the screen, but does not print


How do you construct a java program that print table with backslash?

within inverted commas using two backslashes consequently .. we will print the backslash. ex: printf("//n it will gives output");