About 396 results
Open links in new tab
  1. String (computer science) - Wikipedia

    In computer programming, a string is traditionally a sequence of characters, either as a literal constant or as some kind of variable. The latter may allow its elements to be mutated and the length changed, or …

  2. What is String - Definition & Meaning - GeeksforGeeks

    Jul 23, 2025 · In Data Structures and Algorithms (DSA), a String can also be defined as a sequence of characters, stored in contiguous memory locations, terminated by a special character called the null …

  3. String Definition - What is a string in computer programming?

    Dec 18, 2024 · In computer science, a string is a fundamental data type used to represent text, as opposed to numeric data types like integers or floating-point numbers. It contains a sequence or …

  4. What Is a String? - Computer Hope

    Nov 26, 2025 · A string is any series of characters that are interpreted literally by a script. For example, both "hello world" and "LKJH019283" are quotes containing strings, even though one is a phrase and …

  5. What is a String in Programming: AP® CS Principles Review

    May 19, 2025 · Therefore, it is important for anyone interested in coding to ask: what is a string in programming? In simple terms, a string is a sequence of characters such as letters, numbers, or …

  6. What is a String? - W3Schools

    What is a String? A string is a sequence of characters, usually used to represent text such as words or sentences. Strings are one of the most common data types in programming, and are enclosed in …

    Missing:
    • computer science
    Must include:
  7. What is a string in computer science? - California Learning Resource ...

    Jun 25, 2025 · In computer science, a string is an immutable sequence of characters, representing textual data. It’s a fundamental data type present in virtually every programming language and forms …

  8. What Are Strings In Computer Science

    Jan 12, 2026 · In computer science, strings are fundamental data types used to represent text, contrast to numeric data types like integers. They contain sequences of characters such as letters, digits, and …

  9. String Definition - AP Computer Science Principles Key...

    A string is a data type in programming that represents a sequence of characters. It can store letters, numbers, symbols, and even empty spaces.

  10. Introduction to Strings - GeeksforGeeks

    Jan 20, 2026 · JavaScript: Strings are immutable, primitive data types and can be defined using single, double, or template literals (backticks), allowing for interpolation. C#: Uses the string keyword, which …