Answer:
Personal Experience
Explanation:
If a story is based on a personal experience then yes, the two doesn't matter. <em>However</em>, usually learning through personal experience is better because you learn firsthand while stories are written from a different perspective.
Answer:
a computer suitable for use at an ordinary desk.
noun: desktop computer
"a new low-end desktop"
Explanation:
please mark me as a brainly
Answer:
001*|1*00
Explanation:
The language consists of strings in {0,1} that either start with 00 or end with 00 and have no more zeros.
The requirement can be divided into two parts:
1) Strings that start with 00 and have no more zeros
2) Strings that end with 00 and have no more zeros
Generating regular expressions for these parts:
1) 001* - starts with two zeros and can have zero or more 1s later
2)1*00 - starts with zero or more 1s and ends with two zeros
So on combining with the or operator(|), the overall regular expression for the strings in the language becomes:
001*|1*00
I think the answer is C
hope this helps :)