Answer:
True
Explanation:
The option that answers the question is "True" and this is due to the fact that computers and computing devices represent data using 0s and 1s .
Although, the users of the computer do not have to study binary digits before they are able to interact with the computer, the computer itself can not function without binary digits.
So, for every input you pass to the computer, a translator translates it to binary for the computer to understand your input.
Hence, the statement in the question is true.
Answer:
General process of creating a data flow diagram:
Data flow diagram are used to represents the flow of data graphically and it is divided into physical and logical parameters. For creating the data flow diagram the steps involved are:
- Select the data and name the DFD.
- In DFD add the entity for start the process and add that process in data flow diagram.
- Add a data store and continuous adding that data into DFD.
- Now, adding the data flow in DFD and name the data.
Answer:
12 is c. 13 is a .14 is c 15 I don't know sorry
Answer:
decode( )
Explanation:
We can use the method decode( ) to decode the string using the codec registered for encoding.
There are two parameters
encoding: We can encode with this parameter.
errors: If used to manage the errors.
For example:
String = "this is string example....wow!!!";
String = Str.encode('base64','strict');
If we print these variables we have:
String = b'dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE='
String = this is string example....wow!!!