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
_______________ provides options for getting access to your old password or resetting the account to a temporary password; users will change to a permanent password upon first login.
Answer:
account recovery
Explanation:
account recovery, provides options for getting access to your old password or resetting the account to a temporary password; users will change to a permanent password upon first login.
What is data communication..
Hope this helps you❤!!
Why should you pay your full credit card balance by the due date every month?
Answer: to avoid late fees and interest
Explanation:
What does it mean by does the author create an emotional connection toward the readers?
(Emotional connection reading definition)
Answer:
the author makes an emotional connection between you and the character
Explanation:
short version:you feel the characters emotion
Lucy is in charge of creating a user interface for a new app. During what phase of the project should she expect to complete her work?
A.
alongside the development of the app
B.
after the app has been developed
C.
during the testing phase
D.
during the design phase
Answer:
C option
Explanation:
Because in testing phase the game has been developed and test for errors in game.
9. Which of the following is a disadvantage of cloud storage? * Accessibility (offline/without internet) Reduction of storage cost to organization, Increased possibility for disaster recovery, Efficient management of stored Data
Answer:
Accessibility offline
Explanation:
_____ is the dynamic storage allocation algorithm that results in the largest leftover hole in memory.
Answer: Worst fit
Explanation:
The deliberate misuse of computers and networks, _____ use malicious code to modify the normal operations of a computer or network.
Answer:
Virusus
Explanation:
-
Hope that helps
Need Some Photography help
how to stop programs from running at startup windows 10?
Just go into settings, type in startup apps, and it will take you to an area where you can select certain apps to start or not start when you reset / shut down / turn off your computer and turn it back on again.
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 ⚜
which subunit of a heterodimeric cdk is the regulatory subunit?
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
3.) The primary storage device that holds the data currently being processed by the computer is
Answer:
I personally think its a hard drive or something like that,im not a computer expert to be honest
Aurelia is designing a user interface for a new game app. Which of the following should she taken into consideration for the user interface?
A.
how many variables will need to be used
B.
what inputs the game will need to take in from the user
C.
what type of loops will be used
D.
whether an array will need to be used
Answer:
C
Explanation:
what types of loop will be used.
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
8.3.7: Exclamat!on Po!nts
Write the function exclamation that takes a string and then returns the same string with every lowercase i replaced with an exclamation point. Your function should:
Convert the initial string to a list
Use a for loop to go through your list element by element
Whenever you see a lowercase i, replace it with an exclamation point in the list
Return the stringified version of the list when your for loop is finished
Here’s what an example run of your program might look like:
exclamation("I like music.")
# => I l!ke mus!c.
The function is an illustration of loops.
Loop instructions are used to repeat operations
The function in Python, where comments are used to explain each line is as follows:
#This defines the function
def exclamation(myStr):
#This iterates through the string
for i in range(len(myStr)):
#This checks if the current character of the string is "i"
if myStr[i] == "i":
#If yes, this converts the string to a list
s = list(myStr)
#This replaces i with !
s[i] = '!'
#This gets the updated string
myStr = "".join(s)
#This returns the new string
return myStr
Read more about similar programs at:
https://brainly.com/question/22444309
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
When you first purchase a notebook, make sure you have a ____ CD containing the installed OS so you can recover from a failed hard drive.
When you first purchase a notebook, make sure you have a RECOVERY CD. It enables the restoration of the notebook computer.
A recovery disc is a disc that enables to restore the computer to the same condition when it was bought.
Moreover, a recovery drive refers to a separate partition in the notebook that must contain the required files to restore the device if the system becomes unstable.
A recovery disc can be considered as a drive used to keep a backup of the files (e.g., images) and other types of restoration data.
Learn more about recovery disc here:
https://brainly.com/question/14217813
Using PowerPoint or Impress guarantees that your presentation will do which of the following? stay on schedule and end on time be clear and understood keep your audience engaged and excited none of the above.
Answer: it will be none of the above
Explanation: i just took this test. the key word is "guarantees" so yeah.
Using PowerPoint or Impress guarantees that your presentation will: D. none of the above.
A presentation can be defined as an act of speaking formally to an audience, in order to explain an idea, piece of work, project, or product, especially with the aid of multimedia resources or samples.
Generally, a speaker can use either PowerPoint or Impress during the process of a presentation to share vital information with his or her audience.
However, none of the aforementioned software applications can guarantee that your presentation will:
Stay on schedule and end on time.Be clear and understood.Keep your audience engaged and excited.Read more: https://brainly.com/question/10657795
x = 9 % 2if (x == 1): print ("ONE")else: print ("TWO")
Answer:
ONE
Explanation:
It prints one because % is modulus, which is remainder division. It divides the numbers provided and returns the remainder of the division. 9 / 2 = 4 with 1 remainder, which leads us to our answer.
if a granola bar has 5.7 grams of protein in it how many centigrams of protein does it contain?
A. 57
B. 0.57
C. 570
D. 5,700
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.
write an algorithm to print circumference of a circle
Answer:
1 Start
2 Read the value of radius r of Circle
3. Give Pi = 3.14
4 Calculate area of Circle = Pi x r x r
5. Calculate Circumference of circle
( You can use either C= 2 X Pi X r Or Area (A) = Pi X r X r Circumference (C) = 2 X Pi X r A/r = Pi X r A/r = C/2 So C = 2 x ( A/r ) 5. Print area and Circumference
6. End.
Pls help me plsssss
Answer: drawright(30)
Explanation:
In a computer-controlled greenhouse, a temperature sensor and a window motor are connected to the computer.
If the temperature rises above 23°, the windows are opened.
Draw a flowchart to describe this system.
This computer is used by touching your finger.
A Desktop
C. Mainframe
B. Laptop
D. Tablet
Answer:
a tablet because it's controlled by the touch of a finger.
A restaurant recorded the ages of customers on two separate days. You are going to write a program to compare the number of customers in their forties (ages 40 to 49).
What is the missing line of code?
customerAges = [33, 23, 11, 44, 35, 25, 35, 68, 51]
count40s = 0
for item in customerAges:
_____;
count40s = count40s + 1
print("Forties:", count40s)
if 40 > item > 49
if 40 < item < 49
if 40 <= item <= 49:
if 40 >= item >= 49
Answer:
if 40>= item >=49
Explanation:
You are in charge of setting up a network for a small office and ensuring its security. Describe how you will set up a small network.
hi there!
Answer:
setting up a small office network can be done with a LAN connection using a router, switch and some cables then we can connect all devices to the router through the switch using cables and it's done.
hope this helps.