answersLogoWhite

0

What is a string in programming?

Updated: 10/26/2022
User Avatar

Wiki User

11y ago

Best Answer

A string is a process within a computer program. However, the word "process" is normally used for the main program, so you might think of it as a sub-process. In any case, the idea is that with threads, you can split up your code to run different processes simultaneously. If the computer has several available processors, the strings may really be running simultaneously; if there are more strings than processors, the operating system (or perhaps in some cases the runtime environment?) will simulate this, by alternating the available processors among the strings, so that each one runs for a short time, say, a few milliseconds.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

It is basically text. For example:

string "This is a string";

string "All it is is text";

(C++)

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a string in programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What do you mean by string in java programming?

A "string" in any programming language is a line of text.


What does the command strstr do in programming?

The strstr command in programming is used to find a sub string within a string. If nothing is found the pointer is returned to the beginning of the sub string.


Which programming language uses a string of 1s and 0s?

You, as a programmer, can use a string with 1s and and 0s (or any other content) in each and every programming language.


What is alphabetic chars only?

In computer programming, a string can be made up of; all numbers (a numeric string,) all letters, (an alphabetic string,) or a mixture of numbers, letters, and symbols, (an alphanumeric string.)


Why do you need a terminating null character at the end of the every string in C programming?

Because the null character represents the end of the string.


How do you use string in C programming?

You put it between double quotes, "like this".


How can a string be converted into a number?

Most programming languages have some built-in functions to do that.


Can a string value be enclosed in double quotes?

Yes, that is the standard in many programming languages.Yes, that is the standard in many programming languages.Yes, that is the standard in many programming languages.Yes, that is the standard in many programming languages.


What symbol or character determines end of string?

In C programming language, a string is an array of characters which is always terminated by a NULL character: '\0'


Where can one find online tutorials about using string format?

The string format used in C/C++ programming as well as JAVA is covered in many online tutorials. Both Microsoft and Oracle have sections dedicated to programming tutorials.


What is the significance of the character string T0526?

The significance of he string T0526 is the functioning of the ECMA script. This is needed when working with Java and programming and used to enhance webpages.


How do you delete the given string in java programming?

You usually do not need to delete a String, since when the program no longer refers to it, the garbage collector will clean it up.