Answer:
the motherboard
Explanation:
Which human job is most similar to the role of a producer
Answer: Directors
Explanation: directors create motion pictures, television shows, live theater, commercials, and other performing arts productions. directors work under a lot of pressure, and many are under stress to finish their work on time. Work hours for producers and directors can be long and irregular.
A script meaning sound effects
What is the name of the file in which this
program is stored: public class myProgram
A. myProgram.class
B. myProgram.java
C. myProgram.jgrasp
D. myProgram.doc
Answer:
B
Explanation:
i’m an information technology student and as I remember we used this name
What is a social media scam?
Answer:
Internet fraud is a type of cybercrime fraud or deception which makes use of the Internet and could involve hiding of information or providing incorrect information for the purpose of tricking victims out of money, property, and inheritance.
A top priority of the Federal Bureau of Investigation (FBI) is protecting Internet users from what?
A.) spam marketers
B.) online predators
C.) viruses
D.) unsecured networks
Answer:
b
Explanation:
Answer:
B. Online Predators
Explanation:
write algorithm to find (a+b)^2=(a+b)*(a+b)
Answer:
Basically
(a+b)^2 = a^2 + b^2 + 2ab
Explanation:
steps
1: start
2: read a value
3: read b value
4: c=(a+b)*(a+b);
5: print c value
6:end
______ means locating a file among a set of files
Locating a file among set of flies is called file system.
Declare Integer values[SIZE] = 1, 2, 3, 4, Debugging Exercises 1. What is the error in the following pseudocode? // This program uses an array to display five names Constant Integer SIZE = 5 Declare String names [SIZE] = "Meg", "Jack", "Steve "Bill", "Lisa" Declare Integer index For index = 0 To SIZE Display names[index] End For
Answer:
In "Declare String names [SIZE] =", Meg and Jack are done correctly, however for Steve and Bill, there is no ending quote after Steve, and no comma separating the two. More of a common problem than one would think
it should look more like
Declare String names [SIZE] = "Meg", "Jack", "Steve", "Bill", "Lisa"
Why is it important for element IDs to have meaningful names?
Answer:
Explanation:
In programming, it is very important that element ID's have meaningful names because it allows anyone reading the code to be able to easily identify what that element is and where it is most likely to be found in the code. This also applies to variables in every programming language. The clearer and more unique the name is the easier it becomes to know what that variable or element ID is representing which ultimately makes reading and debugging the code that much easier. This means that the entire process becomes more efficient as well.
It is vital for element IDs to have meaningful names due to the fact that it allows easy identification of the codes.
Element IDs refer to the id property of the interface of the element. It should be noted that the id property is unique in a document.
Element IDs should have meaningful names due to the fact that it allows east identification of the codes. This makes it easy for the person reading the code to identify them easily. The uniqueness of an element ID is vital to know what it represents.
Read related link on:
https://brainly.com/question/18173585
Question #1
Dropdown
Choose the word that makes each sentence true.
Asking the user for four numbers is an example of____.
Finding the average of the four numbers is an example of_____.
Telling the user the average is an example of_____.
O input
O output
O processing
Answer: Dropdown
Choose the word that makes each sentence true.
Asking the user for four numbers is an example of__input__.
Finding the average of the four numbers is an example of__processing___.
Telling the user the average is an example of__output___.
Explanation:
Following are the discussion to the given question:
Input is displayed by asking users for four digits. Any data or information that's also supplied to a system for analysis is referred to as input. Its statement, 'input' tells the system that it uses must enter some data before the software can proceed.The instance of processing is computing the mean of four numbers. In the CPU, computing is the conversion of input information to a more meaningful form of information.An instance of output is giving the user the average. It refers to information produced by and sent through a computer or another electronic device. The act of generating it, the amount generated, or the procedure through which something is given are all instances of output.Therefore, the answer is "input, processing, and output".
Learn more:
brainly.com/question/2882943
differences between laptop andhandheld conputer
Answer: a conputer has a moniter and a mouse and laptop doesn't
Explanation:
Ken has inserted an image into his PowerPoint presentation, but the image contains a lot of empty and/or unnecessary space. He needs to eliminate this space. Which option should he use to achieve this goal?
cut
copy
crop
adjust
Answer:
C. crop
Explanation:
Answer:
c
Explanation:
You need to control the number of people who can be in an oyster bar at the same time. Groups of people can always leave the bar, but a group cannot enter the bar if they would make the number of people in the bar exceed the maximum of 100 occupants. Write a program that reads the sizes of the groups that arrive or depart. Use negative numbers for departures. After each input, display the current number of occupants. As soon as the bar holds the maximum number of people, report that the bar is full and exit the program.
Answer:
count = 0
while True:
people = int(input("Enter the number of people arrived/departed: "))
count += people
if count == 100:
print("The bar is full")
break
elif count < 100:
print("There are " + str(count) + " in the bar currently")
else:
print(str(people) + " people cannot enter right now")
print("The maximum capacity is 100!")
count -= people
print("There are " + str(count) + " in the bar currently")
Explanation:
*The code is in Python.
Set the count as 0
Create an indefinite while loop.
Inside the loop:
Ask the user to enter the number of people arrived/departed
Add the people to the count (cumulative sum)
Check the count. If the count is 100, stop the loop. If the count is smaller than 100, print the current number of people. Otherwise, state that they cannot enter right now. The capacity is 100 at most. Subtract the people from the count and print the current number of people.
Is there anybody who knows eris quirk but me- i feel lonely rn ;-;
Answer:i do Eri's Quirk allows her to rewind an individual's body to a previous state. She has shown the ability to rewind someone's body to a point before they existed, which she accidentally did to her father.
Answer:rewind
..........