answersLogoWhite

0

yes

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

In java is A string the same thing as a char?

No.A char is a single Unicode character. It is stored as a primitive (i.e., non-object) data. A string can be considered as an array of chars - Java stores it as an object.No.A char is a single Unicode character. It is stored as a primitive (i.e., non-object) data. A string can be considered as an array of chars - Java stores it as an object.No.A char is a single Unicode character. It is stored as a primitive (i.e., non-object) data. A string can be considered as an array of chars - Java stores it as an object.No.A char is a single Unicode character. It is stored as a primitive (i.e., non-object) data. A string can be considered as an array of chars - Java stores it as an object.


What is the base of a character?

In computer science, the "base" of a character typically refers to its character encoding, which defines a mapping between characters and numeric values (often in binary form) for representation in digital systems. The base can vary depending on the encoding scheme used, such as ASCII, Unicode, or UTF-8, determining how characters are stored and interpreted by computers.


The coding system for text base data?

The coding system for text-based data refers to the character encoding used to represent text characters as binary data in computers. Examples of coding systems include ASCII, Unicode, and UTF-8, each with its own set of characters and encoding rules. By using a specific coding system, text data can be stored, processed, and displayed correctly across different platforms and devices.


What are literals in java?

In Java, a literal is the source code representation of a fixed value and are represented without requiring computation. The various types are Integer, Floating-Point, Character and String literals.


How much memory is normally used to store one letter?

In computing, one letter is typically stored using one byte of memory, which can represent 256 different characters in standard ASCII encoding. However, for characters outside of this range, such as those in Unicode, storage can vary, with some characters requiring multiple bytes. For example, UTF-8 encoding can use one to four bytes per character, depending on the character being represented.


How many bits and bytes are required to store the word World contain?

That depends what encoding is used. One common (fairly old) encoding is ASCII; that one uses one byte for each character (letter, symbol, space, etc.). Some systems use 2 bytes per character. Many modern systems use Unicode; if the Unicode characters are stored as UTF-16 - a fairly common encoding scheme - many common characters will still use a single byte, while many special symbols (for example, accented characters) will take up two bytes. The number of bits is simply the number of bytes multiplied by 8.


What is the amount of memory it takes to store a single character?

Characters are typically stored in 8 bits.


What is character array?

In other way Character array is called strings.A group of characters can stored in a character array. e.g. char name[] ={'S','A','T','Y','A','\0'};


What is the name for the amount of characters that can be stored in each text field?

The amount of characters that can be stored in each text field is commonly referred to as the "character limit." This limit defines the maximum number of characters, including letters, numbers, and special symbols, that can be entered into that field. Character limits are often set to ensure data integrity and manage storage efficiently.


How many keystrokes make up one word when typing?

That depends on how the keystrokes are stored. If the ascii or scan code is stored, it's one byte per keypress. Some Chinese input systems using unicode can use up to 4 bytes per keypress.


How is a string stored in array?

The characters are stored in successive elements of the array with a nul (0) in the element after the last character of the string. Remember the array storing a string in C must be at least one element longer than the longest string to be stored in it to allow space for this nul (0) character.


Memory occupied by object in Java?

An object in Java may contain a small amount or a large amount of memory - it depends almost entirely on what you store in it. For example, a String is an object. Now, you can have a String that contains 10 characters - that object will contain 20 bytes (2 bytes per character - characters are stored as Unicode), plus a small amount of overhead. The amount of overhead may vary, depending on the specific Java implementation. Another String, which contains 100 million characters, will be stored using 200 million bytes (plus a small amount of overhead). I believe the JVM may also round the space used up by an object up - for example, to the closest power of two. But once again, this is implementation-specific.