Answer:
Following are the code in the Python Programming Language.
#set and initialize string type variable
str1 = "I love python"
#convert and initialize the value of string into list
chars=list(str1)
#print the value of the list
print(chars)
<u>Output:</u>
['I', ' ', 'l', 'o', 'v', 'e', ' ', 'p', 'y', 't', 'h', 'o', 'n']
Explanation:
The description of the program in the Python Programming Language.
- Here, we set a string data type variable i.e., "str1".
- Then, convert the value of string into the list through "list()" built-in function that converts the value into the list and store it into the variable "chars".
- Finally, we print the value of the variable "chars".
A computer has ideas from a bunch of different people instead of the knowledge of just one person.
Answer:
Literate
Explanation:
A computer literate is a person that is high in knowledge and skill with computers, knowing the device inside and out
Explanation:
a . Regular language -
Uses are as follows -
- matching the regular expression patterns , like the Unix grep .
- patterns search and replace operations .
- programming languages for the Lexical analysis in the compilation phase .
b. Context Free Language -
Uses are as follows -
- match the count of one symbol with another symbol .
- Match a symbol with another symbol .
- submit one symbol with string made of other symbols recursively .
c. NP-Completeness -
Uses are as follows -
- used for Weighted Model Counting
- Used for Integer Programming
- used for Boolean Satisfiability testing
d. Decidability -
Uses are as follows -
- Team games with incomplete information are undecidable.
- Infinite chess (with limitations on rules and game pieces) is decidable.