answersLogoWhite

0


Best Answer

about eight bits, which is equal to one byte

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many bytes are required to store a character string?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Other Math

Who are the characters in four miles to pinecone?

Tom Berry, Who is the main character of this story, Mr.Kerr, Tom Berry's boss who works at the local grocery store in St.Paul, Minnesota. Tom's parents, And his Aunt and Uncle who own their own resort that Tom later watches over in the story


How linear arrays represented in memory?

To implement array data structure, memory bytes must be reserved and the accessing functions must be coded. In case of linear arrays, the declaration statements tell how many cells are needed to store the array. The following characteristics of the array are used to calculate the number of cells needed and to find the location or address of any element of the array.1. The upper bound (UB) of the index range.2. The lower bound (LB) of the index range. In C/C++, LB is zero.3. The location in memory of the first byte in the array, called base address of the array (Base)4. The number of memory bytes needed for each cell containing one data element in the array (size, denoted by W)By cell we mean a unit of memory bytes that will be assigned to hold a value of respective data element.During the compilation of the program, the information about characteristics of the array is stored in a table called DOPE VECTOR. When compiler comes across references to an array element, it uses this information that will calculate the element's location in memory at runtime.


What store carry Scoe 10X?

what store sells SCOE10X


Where is your nearest store?

Just down the block, at the end of the street, there's a convenience store.


A family is building a walkway The walkway will be 54 feet long and 1.5 feet wide The store sells tiles which are 1.5 1.5 feet and come in boxes of 12 How many boxes of tiles do they need?

* Calculate how many tiles you need to place for the required width. (Divide width of sideway by width of tile; round up if necessary.)* Calculate how many tiles you need to place for the required length. (Divide length of sideway by length of tile; round up if necessary.) * Multiply the number of tiles long, times the number of tiles wide. This gives you the number of required tiles. (Some additional adjustments may be required; not relevant for this problem.) Divide that by the number of tiles per box, to get the required number of boxes.

Related questions

How many bytes are required to store the name Bill?

4 - one for each character. However, depending on the computer language being used, there is some "overhead" - for example, with "C", the end of a text string is indicated with a null character, so "Bill" would need 5 bytes. Other languages precede strings with their length, the length taking 2, 4 or 8 bytes.


How much memory is required to store a 'character' and how much is required to store a 'string'?

a character/byte as defined in the C programming language is one byte (8 bits). A string can be as short as one byte and can be as long as the physical memory limits can contain it.


How man character's can 8 bytes store?

One byte is made up of 8 bits, and each bit can store 1 character. Therefore, 8 Bytes can store 64 Characters.


How many bytes are required to store an float in ADA?

four


How many bytes are required to store an unsigned integer range?

4


How many bits or bytes required to store the robot?

40 bits or 5 byrtes


Does CMOS configuration chip have a little amount of memory?

Approximately 512 bytes. About enough to store a 500 character plain text file.


How much memory is required to store an integer data type?

integer data type consumes memory of 4 bytes or 32 bits


How many bytes are required to store the word SUMMER in computer memory?

A letter is stored in binary on a computer. The word summer in binary is written as: 011100110111010101101101011011010110010101110010. That's 48 digits. There are 8 bits in 1 byte, thus 48/8 = 6. So 6 bytes are used to store summer. On modern computers, each character in the English alphabet is represented by a byte. Therefore the word SUMMER takes up 6 bytes of memory.


How many bytes are used to store a 64-bit number?

how many bytes are there in a 64-bit machine? Another Answer: It takes 8 bytes to store a 64 bit number.


Rearrange the string in alphabetical order in two dimensional character array?

Use a std::vector<std::string>> to store the strings, then call the std::vector::sort() method.


How can you scan a letter from a String and store it as an integer so that you can compare ASCII values?

A String is essentially a character array with advanced functionality. Any character from a String object can be accessed by calling String's charAt(int position) method. This will return the character value at that position in the String, which can be stored within an int for ASCII value comparison. Example: String a = "Apple"; String b = "Banana"; int x = a.charAt(0); int y = b.charAt(0); boolean c = x<y; //A<B