Answer and Explanation:
Find / -name "IT4983"
See what it will do is it will find the file named IT4983 in the root directory.
run this commmand with sudo just in case for permission issues.
then it will give you the location of that file we want to find.
Or
$ file /home/IT4983 ( you can type this command from whichever directory you are )
output : IT4983 , ASCII TEXT
The best answer to this question should be (A)
Cloud Computing.
In general, cloud computing is the term used for the delivery
of hosted services over the internet. We can also simply put cloud computing as
the delivery of computing services like storage, servers, databases, software
and more over the internet.
I think the best one is voice recognition keyboards.
Would perfect work there
Mark as brainliest
Equality and Relational Operators
For the statement to return false, you can simply use the "not equal to" equality operation. The full symbol of this operation is '!=', disregarding the quotes.
<u>Examples:</u>
- [1 != 1] would produce FALSE. Translation: 1 <u>does not equal</u> 1?
- [1 == 1] would produce TRUE. Translation: 1 <u>does</u> 1?
- ["G" != "G] would produce <u>FALSE</u>. Translation: "G" <u>does not equal</u> "G"?
CONCLUSION: Use "!=".
Answer:
Option 2: Variable names can not begin with a number.
Explanation:
As given Mark and John named a variable as 24_hour_mart while writing a program in python.
While it is forbidden to name a variable starting with any digit, only alphabets (capital and smaller) and underscore can be the first letter of the variable name.
Moreover, by considering the other options given:
- Variable name can include the underscore (_) between the words. It is used instead of spaces that are not allowed.
- There is no upper limit for variable length, it can be of any reasonable length and more than 10 characters say 11 or 12 are reasonable.
- There is no lower limit for variable length, it can be any reasonable length , even it can be of 1 character.
Variables named in python language must not be the keywords as they are reserved for other purposes.
i hope it will help you!