answersLogoWhite

0

You shouldn't use it because it is not and gate in diode logic.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What symbol is use to join strings?

Language dependent. In C, for example, there no string as such, but you can use function strcat to concatenate zero-terminated character-sequences.


What function are used for string length in visual basic?

string length is a function use to check the lenght of a string i.e number of alphabets in a word or sentence.


What symbol is at the beginning and end of a string?

Depends on the programming language you are working with ..... Most use the symbol " or '


Concat a string without using any inbuilt function in java?

Use "+". Example: String string = "does this answer " + "your question?";


Geta is a math function or string function?

GetA is a math function and not a string function.


How can I use the mini.split function to separate a string into an array of substrings in JavaScript?

To use the mini.split function in JavaScript to separate a string into an array of substrings, you need to call the split method on the string and provide the delimiter as an argument. This will split the string at each occurrence of the delimiter and return an array of substrings.


Which function is used to retrive the part of the string?

If a string features a separator (e.g. a dot or a comma), use PHP's explode() function to get an array with the two parts: $string = "hello,joe" $array = explode(",", $string); $array[0] will be "hello" $array[1] will be "joe" If not, you may use substr() to return a certain length of a string


Which is string function starchy or strlength?

The string function is strlength and it is evoked to return the length of a string.


How you can convert from string to int in C language?

Use the atoi() or atol() function.


What is used to locate a string in excel?

You can use the find command of the FIND function.


What is the length command line argument in character?

Use the function strlen(string);


How can you call a function given its name as a string?

we have to construct a table of two field structures,where the first field is the funtion name as a string and the second field is just the function name.then search the table to get a string match in the first field and use the second field to call the function.