Answer:
repeat-y ................ ..
9. What will help you determine the kinds of tools, equipment and utensil you will assemble, sanitize, inspect or check?
a. the kind of product to be produced
b. the method of food processing to be done
c. the raw materials to be processed
d. the availability of tools, equipment and utensils
Explanation:
b. the method of food processing to be done
WILL GIVE BRAINLIEST!! If a flowchart has a diamond with the words “yes” and “no” to the sides of it, then it is representing a program that is a sequence.
true
false
Answer:
false
Explanation:
a flowchart with a diamond and with the words “yes” and “no” to the sides of it, then it is representing a program with branches.
it represents branch, like an if , else statement.
It is not in sequence.
Answer:
True
Explanation:
Most portable devices, and some computer monitors have a special steel bracket security slot built into the case, which can be used in conjunction with a:
Answer:
Instead of using a key or entering a code to open a door, a user can use an object, such as an ID badge, to identify themselves in order to gain access to a secure area. What term describes this type of object?
Explanation:
Create a code for playing blackjack
The first part of the code will create two variable.
One for the first card you’re dealt and one for the second.
Add those two variable for the total score you have
Then
Create a while loop that will stop if your score becomes above 21 or if the user says that they wish to stay.
Inside the while loop have ask the user if they want to hit or stay. Inside of the question be sure to print the current total that the user has
If the user inputs “hit” add a random number between 1 and 11 to their score.
If they input “stay” then print their final score
Then
Create a code for the dealer
The dealer should also start with two cards (remember you can always copy and paste and then edit your code)
Create a while loop for the dealer. (there is rule that dealers must always hit if their total is 16 or under
Print the dealers score once they are done.
Finally
Check if your score is higher than the dealer’s.
If it is you win
If not, you lose
Remember.
If either the dealer or you reach over 21 then that person automatically loses
Answer:
import random
is_stay = 'n'
y_fcard = random.randint(1, 11)
y_scard = random.randint(1, 11)
d_fcard = random.randint(1, 11)
d_scard = random.randint(1, 11)
you_score = y_fcard + y_scard
dealer_s = d_fcard + d_scard
print("Your score", you_score)
print("dealer's score", dealer_s)
while is_stay == 'n':
if you_score > 21:
break
you_score += random.randint(1, 11)
print("Your score", you_score)
is_stay = input("Do you want to stay y/n?: ")
if you_score > 21:
print("You lost")
quit()
while dealer_s <= 16:
dealer_s += random.randint(1, 11)
if dealer_s > 21:
print("The dealer lost")
quit()
if you_score > dealer_s:
print("You are the winner", "My score: ",you_score, "\nDealer's score: ", dealer_s)
else:
print("Sorry, you lost the game", "My score: ",you_score, "\nDealer's score: ", dealer_s)
Explanation:
The python program uses the random module's 'randint' to get a random integer number between 1 and 11, and adds the value to the user's score if the user decides to hit but compares the result with the dealer's if the user stays.
Can you please help me with the AP Computer Science Fill in the blank. What goes on number 5 8 and 18. I don’t understand this I need help programming.
Answer:
you can probably just delete them. what programming language is this?
How will Artificial Intelligence change the way we do things? .......C-Claim:
Write a statement that responds to the question.
Your answer
Answer:
hey i hope someone will help you
ILL GIVE BRAINLIEST HELLP.
in windows 8, the _____ manager is the app that allows you to manage your hardware drivers on your computer .
a. device
b. drivers
c.system
d.utilities
Answer:
Device Manager
Explanation:
The Device Manager is used to check for hardware that have been installed on your system such as RAM, CPU, GPU etc. However, it has the option to update drivers for any hardware that you such desire.
Select the best answer from the drop-down menu. Sometimes people feel threatened by new ideas and different ways of doing things. This results in . conflict is resentment that a person is experiencing but doesn't express. conflict is the behavioral or action stage of conflict. This is often characterized by negative actions. Conflict can arise in the workplace because of personality issues, cultural differences, and .
Answer
Conflict
Latent
Manifest
Religious beliefs
Explanation:
help me i dont understand REAL ANSWERS PLS
Answer:
it's answer is B
hope it helps you
Using 20 sentences, as a student, why is it important to identify risk and hazard inside kitchen and home and business properties?
Answer:
The answer is below
Explanation:
Hazard is something or condition that can cause injury to individuals. If properties are not managed appropriately, the hazard can be inevitable. Every hazard comes with its own risk. And Risk of hazard is the degree to which hazard can affect individuals when exposed to hazards.
Identifying hazards in the surrounding are essential. Also, identifying the risk associated with hazards can't be overemphasized. Hence, the need to identifying both the hazards and the risks associated with it.
There are various reasons it is important to identify risks and hazards inside kitchen and home and business properties. They include the following reasons:
1. It is important to identify hazards in the kitchen, home, and business properties because they may cause injury.
2. Identifying hazards will make us know how to eliminate the hazards
3. When we identify hazards we can easily prevent its future occurrence
4. Identifying hazards in the kitchen such as a bad electric cooker can prevent potential electrical shock
5. When a hazard such as leaking gas is identified, we prevent potential fire outbreak
6. Identifying hazard early is a preventive measure and it is cheaper.
7. Failure to identify hazards in business properties will lead to a great loss of profits.
8. To identify the risk of hazards is the best way to eliminate the hazards.
9. Identifying the risk of hazards can make us anticipate and quickly remove the hazards effectively.
10. It is cheaper to eliminate the risk of hazards when identified than performing repairs after hazards have caused damages.
11. Understanding and identifying the risk of hazard can help save lives, whether kitchen, home, or in business properties.
12. Identifying the risk of hazards, can lead us to have a solution in place against the hazard.
What is output? Select all that apply.
C=0.
while (c < 5):
c = c + 1
print(c)
Answer:
Since we didn't print it at the beginning, we can assume that the program will start printing to the console at the number: 1. After that, it continues right before hitting 5. Proving the output of the program will be the following:
1
2
3
4
Wearables, video playback and tracking devices can help athletes because
Answer: rap accusations
Explanation:
Write a java program to read elements in an array from user and count total number of duplicate elements in array.
Answer:
Explanation:
The following code is written in Java and is a function/method that takes in an int array as a parameter. The type of array can be changed. The function then creates a counter and loops through each element in the array comparing each one, whenever one element is found to be a duplicate it increases the counter by 1 and moves on to the next element in the array. Finally, it prints out the number of duplicates.
public static int countDuplicate (int[] arr) {
int count = 0;
for(int i = 0; i < arr.length; i++) {
for(int j = i + 1; j < arr.length; j++) {
if(arr[i] == arr[j])
count++;
}
}
return count;
}
What type of card contains an integrated circuit chip that can hold information, which then can be used as part of the authentication process
Answer:
C. Smart Card
Explanation:
I majored in Technology.
Answer:
A smart card, chip card, or integrated circuit card (ICC or IC card)
Explanation:
smart card
Could u give me brief summary of New Years
....................................
Answer:
happy new year friend
sorry for late..
Which view is most often used to reorder slides in a presentation that has already been created?
Outline view
Slide Sorter view
Reading view
Normal view
Answer:
Normal view
Explanation:
The normal view is best used because it is just to drag and drop
Normal view, is most often used to reorder slides in a presentation that has already been created. Thus, option (d) is correct.
What is presentation?The term presentation refers to the present on the information in the front of the audience. The presentation was the present the information in the short way and the face to face communicated to the audience. It was the interaction to the audience. The presentation is the two way communication.
The normal view in Microsoft PowerPoint is the default view for developing and viewing presentation slides. You'll be creating your slides in normal view, which is the editing mode, the most of the time. Unless you altered the default view, when you create or open a presentation you see it in normal mode.
As a result, the significance of the normal view is most typically used to reorder slides in a presentation that has already been created are the aforementioned. Therefore, option (d) is correct.
Learn more about on presentation, here:
https://brainly.com/question/28712294
#SPJ3
What is a frame injection attack in a wireless network?
A. A hacker inserts a forged frame during data transmission.
B. A hacker creates a botnet to flood a particular website.
C. A hacker sniffs data packets from a data transmission.
D. A hacker deletes frames during a data transmission.
The answer is A.
Answer:
A.Un hacker introduce un cadru fals în timpul transmiterii datelor.
Explanation:
When you open PowerPoint online, how many blank slides will appear on the screen? (5 points)
Four
One
Three
Two
Answer:
The correct answer is: One
Explanation:
PowerPoint is a software that is used to make presentations.
It is available in Microsoft office suite.
When we open PowerPoint first there are templates to choose from. After selecting blank presentation the editor window opens and it contains only one master slide/title slide
Rest slides can be added later.
Hence,
The correct answer is: One
Answer:
it isn't one it is three
Explanation:
cause i chose one and got it wrong
Debugging is finding and fixing problems in an algorithm or program. True
or False.
False
True
Debugging is finding and fixing problems in an algorithm or program is True statement.
Debugging is indeed the process of finding and fixing problems, errors, or bugs in an algorithm or computer program.
When a program does not produce the expected output or behaves unexpectedly, programmers use debugging techniques to identify and resolve the issues.
This involves analyzing the code, checking for syntax errors, logical errors, and unexpected behavior, and making the necessary corrections to ensure the program functions correctly.
Thus, the given statement is True.
Learn more about Debugging here:
https://brainly.com/question/9433559
#SPJ6
Whenever you are designing a project for commercial use (making money) and need to use photographs with people in them you must obtain a__________release.
Answer:
Copyright
Explanation:
Why are backlinks a useful way to see if information on a website is reliable
Answer: It would help because the backlink could have the necessary details about the information being told. Hope it helps!
Four students measured the mass of a piece of metal whose accurate mass is 34.75g. Their results are 34.2g, 33.75g, 35.0g, and 34.69g. Explain whether the results are precise or accurate
Answer:
The given data are more precise than they are accurate
Explanation:
From the given measurements, we have;
The accurate mass = 34.75 g
The deviations from the accurate measurement is as follows;
34.2 g - 34.75 g = -0.55 g
33.75 g - 34.75 g = -1 g
35.0 g - 34.75 g = 0.25 g
34.69 g - 34.75 g = -0.06 g
For precision measurement, we find the average deviations as follows;
The sum of the deviations = -0.55 g - 1 g + 0.25 g - 0.06 g = -1.36 g
The average deviation = -1.36 g/4 = -0.34 g
For accuracy measurement, we find the average of the absolute deviations as follows;
The sum of the absolute deviations = 0.55 g + 1 g + 0.25 g + 0.06 g = 1.86 grams
The average absolute deviation = 1.86 g/4 = 0.465 g
Therefore, the magnitude of the average deviation is less than the magnitude of the absolute deviations, therefore, the given data are more precise than they are accurate
explain the purpose of a web server (4marker)
It's a computer program that distributes web pages as they are requisitioned. The basic objective of the web server is to store, process and deliver web pages to the users. This intercommunication is done using Hypertext Transfer Protocol (HTTP).
Answer:
A web server is hardware that is dedicated to running the software. A web server can contain one or more websites, and does what clients want and can process incoming network requests.
Which popular file format loses some of the information from the image? JPEG TIFF RAW NEF
Answer:
The popular file format that loses some of the information from the image is JPEG
Explanation:
How can internet affect business area?
Submit a paragraph about how people earn income online.
Answer:
Selling services or products, generating traffic for ad revenue or investing in different types of products / companies.
Explanation:
One of the functions of an IDE is to check for: flowchart errors. Syntax errors. memory errors X input and output.
Answer:
flowchart errors
Explanation:
Answer:
flowchart errors
Explanation:
Can someone help me I am coding.
Answer:
i will help u
Explanation:
what did you want
What is globalization? O A. A constant change in weather patterns that is occurring all over the globe OB. A movement for countries to turn to an economy based on bartering C. The movement from many local economies to one economy that is global O D. The tendency for global companies to create small local businesses
Answer:
The movement from many local economies to one economy that is global
Explanation:
Globalization is when companies and governments from around the world come together through interaction.
Read the following scenario. How might Sarah correct successfully complete her task?
To permanently remove a file from her computer, Sarah doubled-clicked on the My Computer icon and searched for her
file under the “Uninstall or change a program" menu option. A
Answer:
Explanation:
A: To permanently remove a file from her computer, Sarah doubled-clicked on the My Computer icon and searched for her file under the “Uninstall or change a program” menu option.
or
b: empty the recycle bin : You can permanently delete a program file installed in the computer by following the procedure in option A. The option above will take you to the control panel and you'll be able to select the program you'd want to permanently remove. If you had initially deleted a file like a picture or a document or anything else that you necessarily do not need, it will go to recycle bin. You can head over there and select the Empty the Recycle Bin option to permanently delete the file.