Answer: There are several different job types in this field.
Explanation: did the test and got it right
Answer:
A or C!
Explanation:
Im pretty sure its one of those answers. I think its C though! If I'm wrong, please tell me! I just did the test and I forgot if I got it right or not. It wont let me go back in-
- A FLVS student with a 99.91 percent in computer science (Totally not bragging!)
12. In Justify the text is aligned both to the right and to the left margins, adding extra space between words as necessary *
Maybe
False
True
[tex]\blue{<><><><><><><><><><><><><}[/tex]
[tex]\green{<><><><><><><><><><><><><}[/tex]
Answer:
FalseExplanation:
Because, aligment the tex are aligned in the centre of the page.[tex]\pink{<><><><><><><><><><><><><}[/tex]
[tex]\red{<><><><><><><><><><><><><}[/tex]
The process of sending and receiving messages with words defines _____. A. Verbal communication b. Nonverbal communication c. Open communication d. Empty communication Please select the best answer from the choices provided A B C D.
The process of sending and receiving messages with words defines: A. Verbal communication.
Communication can be defined as a process which involves the transfer of a message from an individual (sender) to another (receiver or recipient), through the use of words, semiotics, symbols and signs, that are mutually understood by both the sender and the receiver.
In English language, there are different types of communication and these include:
Visual communicationNon-verbal communicationWritten communicationListening communicationVerbal communicationVerbal communication is also referred to as oral communication and it refers to the process of sending and receiving messages from one individual to another through the use of words.
Read more: https://brainly.com/question/14810228
Answer:
its a
Explanation:
yw
who develop computer first?
sorry bro...,......................................
The _______ conditional formatting option allows you to define formatting for cells that meet specific numerical or text criteria (greater than, or containing a specific text string).
How does the computer help me with school work
I need some questions and answers in spreadsheet
Answer:
you need to show what you need help with
Explanation:
What is a trusted computing base (TCB)? Hosts on your network that support secure transmissions The operating system kernel and device drivers The combination of hardware, software, and controls that work together to enforce a security policy
Answer:
yuh
Explanation:
The trusted computing base of a computer system is the set of all hardware, firmware, and/or software components that are critical to its security, in the sense that bugs or vulnerabilities occurring inside the TCB might jeopardize the security properties of the entire system
congress are smart becuase.....
Answer:
If we are talking about government then they are smart bc of there two house policies, both are equal yet super unique. They make sure each state has an equal voice in the senate.
What economic impact will this disaster have on people? Select three options.
People will have to rebuild their homes and communities.
People will have to move away from friends and family after a flood.
People will have to relocate and buy or rent new homes.
People will need to find new jobs to replace jobs destroyed in the flood.
People will be angry with the government for lack of warning about the flood.
Answer:
1, 3, and 4
Explanation:
Those are the only ones that has anything to do with money.
once multiple layers are selected which keyboard shortcut merges them
Considering the computer system analysis, when the multiple layers are selected, the keyboard shortcut that merges them is "Ctrl+E for (Windows) or Command+E for (Macbook)."
What Keyboard Shortcut?Keyboard Shortcut combines keyboard keys to ensure software programs perform specific functions.
Keyboard Shortcuts can be made by a Computer manufacturer as part of the standard functionality of the operating system or application program or made explicitly by the user in a scripting language.
Keyboard Shortcut is different in both Windows and Macbook Operating systems.
Hence, in this case, it is concluded the correct answer is "Ctrl+E for (Window) / Command+E for (Macbook)."
Learn more about Keyboard shortcuts here: https://brainly.com/question/14447287
software ............. the hardware what to display on the user's screen
A multinational pharmaceutical company used a saffron trident in a promotional campaign for one of its drugs in India. The saffron trident, a religious symbol in India, was meant to indicate the three levels of efficacy of the drug but mistakenly conveyed a religious message to Indians. This miscommunication indicates a problem associated with which step of the international communications process?
i. information source selection
ii. media channel selection
iii. encoding
iv. noise cancellation
v. message transmission
Based on the given information, This miscommunication indicates a problem associated with the encoding step of the international communications process. Thus the correct option is 3.
What is communication?Communication is referred to the exchange of information between two individuals in the form of conversation, opinion, suggestion, or advice with the help of medium or direct interaction.
In the given case, it is explained that during a marketing campaign for one of its medications in India, a multinational pharmaceutical company utilized a saffron trident to represent the drug's three degrees of efficacy.
The method used to transform thoughts into communication is called encoding. The communicator must start decoding in order to communicate meaning in the form of symbols that stand in for concepts or thoughts.
Therefore, option 3 is appropriate.
Learn more about Communication, here:
https://brainly.com/question/22558440
#SPJ6
Two primary disadvantages to the ______ BN type are that the routers in the network impose time delays, and routers are typically more expensive and require more management than switches. Group of answer choices
Answer: Routed backbone disadvantages are time delays and more expensive than switches
Explanation:
This is an image of the ...........................Topology.
if answer Correct i will mark the first person brainly.
Answer:
Mesh
Explanation:
python Better Password Prompt
Write a program that uses a loop and a half to prompt a user for a password. You should prompt the user for the password. If they get it correct, break out of the loop. If they don’t get it correct, you should give them an error message and ask again.
Sample Run:
Enter password: 123123
Sorry, that did not match. Please try again.
Enter password: password
Sorry, that did not match. Please try again.
Enter password: CODEHS
Sorry, that did not match. Please try again.
Enter password: abc123
You got it!
Note: You need to set SECRET to abc123 to run the tests
We use an indefinite while loop to keep the user entering the password. In the loop, we use if-else structure to check the password. If it is "abc123", the password is found and stop the loop using a break. Otherwise, the password is not correct. Note that since we do not use any break statement in the else part, the loop will continue asking for the input
Comments are used to explain each line of the code.
You may see the output in the attachment.
#set the SECRET
SECRET = "abc123"
#create a loop
while True:
#ask the user to enter a password
password = input("Enter password: ")
#check if the password is equal to SECRET
# if it is, state that password is correct and stop the loop using a break
# otherwise, state that password is not correct
if password == SECRET:
print("You got it!")
break
else:
print("Sorry, that did not match. Please try again.")
Here is another question related to the loops:
https://brainly.com/question/25694810
How many passes will it take to find 16 using a binary search?
2, 4, 6, 8, 10, 12, 14
3
4
2
1
Answer:
1
Explanation:
Binary search is a useful approach for reducing a list of items. It divides the section of the list that might contain the item in half repeatedly until there is only one viable position left. Thus, option D is correct.
What using a binary search?Recursive and iterative methods. The main distinction between the two approaches is that the recursive approach utilizes O(logN) space complexity, whereas the iterative approach uses O (1).
On sorted arrays, binary search operates.The binary search process begins by comparing a middle-of-the-array member to the desired value.
Therefore, It is necessary to locate element 59 in a 10-digit array. The index of the elements ranges from 0 to 9. The array's centre is now calculated. To do this, divide the index's leftmost and rightmost values by two.
Learn more about binary search here:
https://brainly.com/question/12946457
#SPJ2
A facility that is pre-wired for necessary telecommunications and computer equipment, but doesn't have equipment installed, is known as a
Answer:
hot site
Explanation:
Database management packages based on the _______________ model can link data elements from various tables to provide information to users.
Answer:
Database management packages based on the relational model can link data elements from various tables to provide information to users.
what will the computer do in response to a line of code reading # name = input("What is your name?") print “What is your name?” print “name =” nothing return a syntax error
The computer will do nothing in response to the instruction # name = input("What is your name?")
The instruction is given as:
# name = input("What is your name?")
The above instruction is a Python instruction.
In Python, lines that begin with # are not executed, because they are treated as comments.
This means that, the computer will not do anything when it comes across the instruction
Read more about Python instructions at:
https://brainly.com/question/19344465
Fill in the blank: With ticket ________, you are able to edit ticket properties according to which team owns the ticket.
Answer: records customization
Explanation:
solve each of the following a. 3x=27
Answer:
3^(x)=27 x=3
Explanation:
3x3x3 27
:)
3ˣ = 27
Factorise 27.
27 = 9 × 3
27 = 3 × 3 × 3
27 = 3³
So,
3ˣ = 27
=》ˣ = ³
3³ = 27
_____
Hope it helps ⚜
16. A/An __________ is operated on the principle that the dying have special needs and wants that hospital personnel are too busy to handle.
Answer:
Hospices
Explanation:
A/An Hospices is operated on the principle that the dying have special needs and wants that hospital personnel are too busy to handle.
Answer:
a / an hospice is operated on the principle that the dying have special needs and wants that hospital personel are too busy to handle..
Explanation:
answer:: HOSPICE
A(n) ________ is a heavily secured server located between a company's secure internal network and its firewall.
Answer: bastion host
Explanation:
________ is a function pertaining to a particular database that develops procedures and practices to control and protect the database.
Answer: Database administration
Explanation:
Is this statement true or false? Title text boxes on every slide must be the same format. True false.
Sidney needs to create a decimal number variable that will be added to another number. What kind of variable is required?binaryBooleanstringfloat
almost every school or university has a or council or organization that works towards provision of providing education training and consultation
Answer:
In education, the term stakeholder typically refers to anyone who is invested in the welfare and success of a school and its students, including administrators, teachers, staff members, students, parents, families, community members, local business leaders, and elected officials such as school board members, city ...
Explanation:
The temperature at 8 AM was 44°F and at noon it was 64°F. what was the percent of change from 8 AM to noon?
Answer: 45.45%
Explanation:
Time Passed: 4 hours
Difference in Temperature: 20°F
20/44 = .45454545454545
.45454545454545*100 = 45.45%
Correct me if I am incorrect.
what method does a gsm network use to separate data on a channel?
Wikis are designed for ________, which is allowing people to contribute more than just posting a response
Answer:
collabirations
Explanation
Wikis are designed for collabirations, which is allowing people to contribute more than just posting a response.