Answer:
B. Binary Code
Explanation:
Binary code is the base-2 system used by computers to represent data. Binary code consists of 0's and 1's which can be used to represent states such as on or off; go or no-go and more.
Answer:
B - A word is correctly spelled but is used incorrectly in a document
<u>Answer</u>:
<em>It is possible to sort data in word. For doing this, you must have content in the form of list.
</em>
<u>Explanation:</u>
<em>1. Select the text in numbered list / bulleted list
</em>
<em>2. Click on the Home tab, Paragraph group, Click on Sort. You well get a Sort Text dialog box</em>
<em>3. In the dialog box , Click Paragraph, Text, Ascending / descending. So you can change the way it sorted by using the same dialog box whenever required.
</em>
<em>
In addition to sorting text, you can sort date and also sort number.
</em>
Based on mil-std-6016, the requirements for information to be passed between and among joint forces, along with the technical interfaces is called Joint Tactical Operations (JTO) Procedural Handbook.
<h3>What is Joint Tactical Operations (JTO) Procedural Handbook?</h3>
This is known to be a book that contains all the provisions that is needed by system operators along with some technical parameters and tactical procedures.
It is often used for the exchange of near real-time data through TDL and it is known to be set up to function on console in the time of joint service operations and exercises.
Learn more about military from
brainly.com/question/525279
Answer:
userInput = input("Please enter a string of words ")
userInput.split ()
for item in userInput.split ():
if item =="darn":
print("Censored")
break
else:
print(userInput)
Explanation:
Using Python programming language, the input function is used to receive the users input and save in a variable userInput
Then the .split method is used to convert the words into a list of words.
Using a for loop, the code checks for the word darn and prints censored if it exists else it prints the userInput