answersLogoWhite

0

Yes. Java program data can be stored in RAM, in a file, sent across a network, or however else you (the programmer) wishes it to be stored.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the hierarchy of the java program?

define the data types


What is the highest coins in rs?

The largest number of coins (or any item) in a single stack is 231-1. This is about 2.1 billions. The limit is determined by the data type "int", often used in Java programming. (It is possible to store larger numbers in Java, but that might require a redesign in the program.)


What are Java Data Objects used for?

The Java Data Objects AVI is used primarily by application programmers and it helps the programmer by storing the Java Domain into a persistent store or database.


What Program that will display the even numbers in data structures and algorithms?

JAVA


Which characteristics of java makes possible to compiled code to be executable on many processors?

Its not the processor that it is compatibal with. The JRE runs java on most major oporating systems. The JRE sends the execution data to the OS which then has the processor process the data, then execute the resaults. The JRE uses the OS to execute the program.


In what career would one use Java collections?

Careers that use Java Collections include programmers who build data capture and storage programs, as a Java Collection is a framework that allows a programmer to implement reusable data into a program.


Where does a computer store a program and the data that the program is working with while the program is running?

secondary storage


What has the author Jonathan Knudsen written?

Jonathan Knudsen has written: 'Wireless Java' 'Java cryptography' -- subject(s): Java (Computer program language), Cryptography, Data encryption (Computer science)


Example of multilevel inheritance program in java having HAS-A relation?

Just create a class that has two fields of object type. For example, to store data about a person, you might store a name (String object) and a birth date (Date or Calendar object).


How do you store a character in a variable?

In Java a primitive data type called 'Char' is used to store a single character of text.Char myChar = "a";


What is a heap in Java and how does it function within the Java programming language?

In Java, a heap is a data structure used to store and manage objects dynamically allocated during program execution. It is a region of memory where objects are stored and accessed by the Java Virtual Machine (JVM). The heap is responsible for memory allocation and deallocation, allowing objects to be created and destroyed as needed. This helps manage memory efficiently and ensures that the program runs smoothly without running out of memory.


What is the process for managing the state of objects in Java?

In Java, the process for managing the state of objects involves using instance variables to store the object's data and methods to manipulate that data. This allows for the object's state to be modified and accessed as needed throughout the program. Additionally, encapsulation is used to control access to the object's state, ensuring that it is only modified in a controlled manner.