Yahoo India Web Search

Search results

  1. Strings are typically made up of characters, and are often used to store human-readable data, such as words or sentences. In computer programming, a string is traditionally a sequence of characters, either as a literal constant or as some kind of variable.

  2. Jan 19, 2024 · Strings are widely used in computer science and have many applications in various fields, some of which are: Text Processing: Strings are used to represent and manipulate text data, such as in text editors, word processors, and other applications that deal with text.

  3. Apr 1, 2024 · In data structures, a string is a sequence of characters used to represent text. Strings are commonly used for storing and manipulating textual data in computer programs. They can be manipulated using various operations like concatenation, substring extraction, and comparison. String in Data Structure.

  4. ncert.nic.in › textbook › pdfStrings - NCERT

    String is a sequence which is made up of one or more UNICODE characters. Here the character can be a letter, digit, whitespace or any other symbol. A string can be created by enclosing one or more characters in single, double or triple quote. Example 8.1. >> str1 = 'Hello World!' >> str2 = "Hello World!" >> str3 = """Hello World!"""

  5. May 21, 2024 · What is String? Strings are considered a data type in general and are typically represented as arrays of bytes (or words) that store a sequence of characters. Strings are defined as an array of characters. The difference between a character array and a string is the string is terminated with a special character ‘\0’.

  6. What is a string? All data stored on a computer is ultimately stored as a sequence of 0s and 1s. This includes text, digital books, images, songs, videos, and "executable files" like games and applications. Strings, an example of text data, are stored in the following way: a string is a sequence of characters (e.g., the string "Hello, World!"

  7. Computer Science. String Handling. Strings are a sequence of characters, such as letters, numbers, and symbols. They are used to represent text in a computer program. String handling refers to the various operations that can be performed on strings. Length. The length of a string is the number of characters it contains.

  8. Aug 3, 2022 · String is an important topic from GATE exam point of view. We will discuss key points on strings as well different types of questions based on that. There are two ways to store strings as character array (char p [20]) or a pointer pointing to a string (char* s = “string”), both of which can be accessed as arrays.

  9. Aug 30, 2023 · Strings are essential for encoding and processing textual data in computer programs. They are collections of characters, such as letters, numerals, and symbols.Searching, sorting, matching, parsing, and manipulating strings are just a few of the many activities that fall under the umbrella of the ... Computer science and many other disciplines make extensive use of pattern matching. To find patterns in a bigger text or data set, pattern-matching techniques are used.

  10. A string is a data type used in programming, such as an integer and floating point unit, but is used to represent text rather than numbers. It is comprised of a set of characters that can also contain spaces and numbers.