answersLogoWhite

0

Why text is used in java?

Updated: 8/18/2019
User Avatar

Wiki User

13y ago

Best Answer

People mainly communicate on computers via text; it would be silly not to used written words when creating a program.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why text is used in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What commands are used to prints text in java?

System.out.println("text"); or System.out.print("text"); Please note that Java is case sensitive, meaning you must match uppercase and lowercase exactly.


What is java GUI?

GUI means Graphical User Interface; it refers to any visible elements that are commonly used to show content to the user: the windows, buttons, text-boxes (areas to write text), etc. Ex: Java AWT, Java Swings, JSP etc


Why you use string s in the java program?

Strings are used to represent text data. This lets you work with names and other variables that hold text.


What is systemoutprintln means in java?

That's the command used to output text to the console. For example: System.out.println("Hello!");


How do you compile java programs using windows vista text pad?

How can I compile java programs using windows vista text pad?


How do you convert text file to jar file?

You can change the file extension from .txt to .jar but .jar is a java format and is not normally used to wrap text.


What are tools or software that are needed to editcompile and run to java?

To edit Java source code you can use any text editor. In order to compile a Java source file to Java bytecode you need the Java Development Kit (JDK). The program which does this is called "javac" and can produce .class files which can be used by the Java Runtime Environment (JRE) to execute.


What is java console?

The Java console is a display of output sent by a Java program. This is similar to the MS DOS operating system.To print to the console, a programmer will type "println(text);" or "print(text);" depending is the programmer wants to make a new line after the text(println) or not(print).


What do you mean by AWT?

AWT stands for Abstract Window Toolkit It contains the list of java classes & packages that can be used to create UI based applications using java. Some components available are: * button * text field * text area * scroll bar * etc...


How you make a project in java?

You create a text file with a .java extension. Then you put a proper class definition.


How do you save a notepad file into a java file?

just add an extension .java when you save your notepad text file


How do you display text with a label in java?

button.getLabel(); button.setLabel("label");