answersLogoWhite

0

example:

SELECT name, '*', address FROM table;

Here '*' is a literal character.
User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

What are the different issues if a string is implemented as a primitive or as a character array?

Even in languages where string is a type, it is still an array of characters. A computer can not represent a string as a primitive type. That said, the difference between using the programming language string object or an array or list if characters will differ based on language. Though in most languages which offer a string type, it would mean that you'd have to implement all the functions provided for you by the type on your own. A string object class simply provides a series of utility functions to manipulate a character array within.


Write a program sort a list of names in alphabetical order in java programming language?

// Let's assume we're sorting the characters in String toSort // convert the String to an array of characters char[] chars = toSort.toCharArray(); // let Java do the sorting for you Arrays.sort(chars); // recreate the original String with the newly sorted array of characters toSort = new String(chars);


Write an interactive c plus plus program to create a linear linked list of customer names their telephone numbers?

#include<list> #include<string> struct Customer { std::string m_name; std::string m_phone; Customer (std::string name, std::string phone): m_name(name), m_phone(phone) {} // ... }; int main() { std::list<Customer> customers; customers.push_back ("Joe Bloggs", "555 7465"); customers.push_back ("Dan Mann", "555 3458"); // ... }


Can you store non primitive data type in the array list?

Yes you can store non primitive data type variables in an array. String is a non primitive data type. You can declare a string array as: String a[]=new String[10];


How do you select the stage in scratch?

You click the stage icon next to the list of sprites. The same way you would select a sprite.

Related Questions

Differentiate string and character?

A character is an integer value which stores an encoding for a printable (though not necessarily "visible") symbol. A string is a list of characters.


How do I find currency characters on Mac OS 10?

Press on the on the language chooser in the menu bar and select "Show Character Viewer". After the viewer is open select "Currency Symbols" and you will get the whole list. If you can't see "Show Character Viewer" in the menu. Go to "System Preferences" then to "Language & Text". Go to "Input Sources" tab and enable "Keyboard & Character Viewer" in languages list.


What is array literal in as2?

An array literal is a comma-separated list of the elements of an array. An array literal can be used for initializing the elements of an array.


How can you use the dictionary to support the use of denotative language?

The dictionary provides a list of definitions that you can use to determine the literal meaning of a word.


Select one person from the list?

what list??????


When viewing a cardholders statement. how do you specify which cycle to view?

Select a cycle date from the Select Billing Cycle drop-down list


What are the components of print f and scan f?

printf: format string + value list scanf: format string + address list


What are the different issues if a string is implemented as a primitive or as a character array?

Even in languages where string is a type, it is still an array of characters. A computer can not represent a string as a primitive type. That said, the difference between using the programming language string object or an array or list if characters will differ based on language. Though in most languages which offer a string type, it would mean that you'd have to implement all the functions provided for you by the type on your own. A string object class simply provides a series of utility functions to manipulate a character array within.


Is there a idiom list that has literally meaning?

You don't need a list. The literal meaning is whatever the phrase sounds like. For example, the literal meaning of "raining cats and dogs" would be dogs and cats falling out of the clouds.


What is the longest factor string for 312?

The longest factor string is 2x2x2x3x13. It is always best to list your factor string from the least to greatest number.


A word's denotation is its?

A dictionary provides a list of literal definitions or denotative meanings of a word


Where do you use arrays?

Anywhere you want a collection of like typed items arranged in a sequential list. A character string is an example of an array of char.Do not confuse this with C++ string classes. I am talking about plain old-fashioned C strings, such as argv[0], which points to the name of the program.