answersLogoWhite

0

A string is an array of characters.

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Engineering

What does it mean to have a string split in java?

To have a string split in Java means that a string array, containing substrings (can be delimited by elements of a specified string or Unicode character array), is returned.


How do you create string array in java?

String[] myStringArray = { "abc","def","xyz" }; You can access elements of this array by using the [index] operation. Ex: myStringArray[0] will contain value "abc" and myStringArray[1] will contain value "def" and so on...


How do you close a string literal?

Just as you have started it. good examples: 'string' "string" `string` »string« bad examples: 'string" "string` »string'


What is the difference between a string and a number?

In computer programming, a "string" usually refers to an array of characters. A string may consist of nothing (an empty string) or as many characters as are allowed in an array. To denote a string, surrounding a list of characters by double quotes is the typical standard.Strings:* "" * "abc" * "Cows say 'Moo!'" * "http://wiki.answers.com"Numbers are those fun symbols you remember from math class. The confusing part is when a string contains numbers ("123"). Usually a programming language will have a way to convert between a string of numbers and an actual number type, in case you happen to need to do math with the string.


Write a program to implement the various operations on string such as length of string concatenation reverse of a string copy of a string to another in VB?

what is string

Related Questions

What does it mean to have a string split in java?

To have a string split in Java means that a string array, containing substrings (can be delimited by elements of a specified string or Unicode character array), is returned.


Does plastic have one elemet in it?

Plastics have many elements in them but they may be made of one type of "particle" or "string" of atoms/elements.


How do you make rope in doodle god?

In Doodle God, you can make rope by combining two elements: plant and string. First, create string by combining plant and fiber. Once you have string, combine it again with plant to produce rope.


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.


What is the definition of repeating patterns?

A repeating pattern is the repetition of an identifiable core. The core is the string of elements that repeat, such as ABB.


What can string cups be made of?

String cups can be made from various materials, including paper, plastic, or biodegradable substances like plant-based bioplastics. They typically consist of a lightweight outer layer that holds the string, allowing for easy manipulation and play. Additionally, some string cups may feature decorative elements or colors to enhance their visual appeal.


What is analogy for string?

An analogy for a string is like a thread in a tapestry; just as a thread weaves together different parts to create a cohesive design, a string connects various characters in a sequence to form meaningful data in programming. Both serve as foundational elements that can be manipulated and combined to produce more complex structures.


How do you create string array in java?

String[] myStringArray = { "abc","def","xyz" }; You can access elements of this array by using the [index] operation. Ex: myStringArray[0] will contain value "abc" and myStringArray[1] will contain value "def" and so on...


How do you close a string literal?

Just as you have started it. good examples: 'string' "string" `string` »string« bad examples: 'string" "string` »string'


What is a string of words?

A string of words is a sequence of characters that form a coherent phrase or sentence, conveying meaning through language. It can consist of various grammatical elements, including nouns, verbs, adjectives, and punctuation, and is typically used in written or spoken communication. In programming, a string is often treated as a data type that represents text.


What is a collective noun for string?

The collective noun for 'string' is a ball of string.The noun 'string' is a standard collective noun for:a string of ducksa string of horsesa string of mulesa string of pearlsa string of poniesa string of racehorsesa string of violinists


How do you declare a string array and add elements to it in C plus plus?

You cannot add elements to a fixed array in C or C++. If, however, the array is declared as a pointer to an array, you can add elements by allocating a new array, copying/adding elements as needed, reassigning the new array to the pointer, and deallocating the original array.