Answer:
I believe that its B: he died fighting in Vietnam
Explanation: Sorry if its wrong :(
Some games have very strict rules, while other games have more relaxed rules. What are the advantages and disadvantages of each style?
(Game Design)
an advantage of strict rules is that if someone is doing something wrong or inappropriate he/she could get in trouble for it. a disadvantage though is that you could accidentally misspell or something and get in trouble for it. for not so strict rules those are great because it’s good to have some freedoms and do some fun, and interesting games without being told you did something wrong. it is also bad because people could be abusing the power they have. people could go off and do bad things and nothing happens.
What two types of devices have a keyboard integrated into the screen?
Question 1 options:
laptops and smartphones
tablets and electric typewriters
typographers and tablets
tablets and smartphones
Answer:
tablets and smartphones
Explanation:
Justice uses a program to keep track of how much money she earns and spends each week. Which type of data is used to determine if her account is greater than $20?
Money
Boolean
Images
Text
Answer: Money
Explanation:
None of the others fit without more reasoning. If she sees more then $20 is there she can change the data using money.
As of right now, I’m working on a blender model for my programming class. However, I still cannot figure out how to add a leather texture to the glove model I made
While the economy of eastern Washington relies on farming, western Washington relies on technology.
True
False
Question: How do you file a complaint using a food restaurant? 100 POINTS WILL BE GIVEN INCLUDING BRAINLIEST
send it through the mail
Answer: Be prepared to provide the following information:
1.Your Name, Address and Phone Number (your information will remain anonymous to the restaurant)
2.Name of restaurant
3.Location/address of the restaurant
4.Date of incident
5.Nature of complaint
If you suspect you became ill from this incident. You will need to give specific information about the suspected foods that made you sick, as well as when your symptoms began, and what they were. In addition, you will need to give a 3-day food eating history.
Explanation
It's about a truth table. No need to draw tables, 3 rows for the 3 columns is enough. Pls answer.
Answer:
I don't know the answer.
Explanation:
What will I do???????????????????????????
CodeHS 2.1.4 Evidence collection.
Charles Babbage
1. Time Period:
2. What did the term 'computer' mean?
3. Main contribution:
Ada Lovelace
1. Time Period:
2. What did the term 'computer' mean?
3. Main contribution:
Alan Turing:
1. Time Period:
2. What did the term 'computer' mean?
3. Main contribution:
Mauchly and Eckert
1. Time Period:
2. What did the term 'computer' mean?
3. Main contribution:
ENIAC Programmers
1. Time Period:
2. What did the term 'computer' mean?
3. Main contribution:
Grace Hopper
1. Time Period:
2. What did the term 'computer' mean?
3. Main contribution:
Mark Dean
1. Time Period:
2. What did the term 'computer' mean?
3. Main contribution:
Bonus Exhibit
1. Who is missing from this picture?
2. What questions do you have about this image?
3. Why do you think some are included while others are not?
Final Report: Who invented the computer?
Claim:
Evidence:
I need help asap pls helpppp
Answer:
The term computer is derived from the Latin term 'computare', this means to calculate or programmable machine. Computer can not do anything without a Program. It represents the decimal numbers through a string of binary digits. The Word 'Computer' usually refers to the Center Processor Unit plus Internal memory.
Explanation:
How do you print "Hello World" in the console with Python? Wrong Answers Only.
Explanation:
with keyboard........
print("Hello world")
OUTPUTHello world
EXPLANATIONPython's print() outputs a given message. Python's print function displays strings on a screen.
an app that unsubscribes you from emails
Answer:
unsubscribe, unlistr, unroll.me
Explanation:
They are different apps that can be used by a person to unsubscribe from unwanted emails so as to reduce the amount of messages in inbox. Unwanted emails can be unsubscribed manually or with the aid of apps.These apps enables the user to unsubscribe from emails using just a single click. Examples of such apps are unsubscribe, unlistr, unroll.me and many more other apps.
1. What do you think is the most important event in the history of the internet? What event has had the biggest impact on your daily life?
Answer:
The biggest event in internet history was YuTubers punching each other in the face. Months of hype came to a peak Saturday for the self-declared “biggest event in internet history” a boxing match between two YuTube celebrities in Manchester, England.
Explanation:
There is no particular event but the whole journey till now which shaped my personality. Every person even if they are the worst has something good in them.
Able to make a survey form using VB (Visual basics 6.0) to represent ways of conservation of
energy.
(I know what a survey means but how do u make questions to represent ways of conservation of energy? [I also know how to use the resources in the app]
Somebody please give me some ideas it will help me)
Coding with Loops Worksheet
Print | Save
Output: Your goal
You will complete a program that asks a user to guess a number.
Part 1: Review the Code
Review the code and locate the comments with missing lines (# Fill in missing code). Copy and paste the code into the Python IDLE. Use the IDLE to fill in the missing lines of code.
On the surface this program seems simple. Allow the player to keep guessing until he/she finds the secret number. But stop and think for a moment. You need a loop to keep running until the player gets the right answer.
Some things to think about as you write your loop:
The loop will only run if the comparison is true.
(e.g., 1 < 0 would not run as it is false but 5 != 10 would run as it is true)
What variables will you need to compare?
What comparison operator will you need to use?
# Heading (name, date, and short description) feel free to use multiple lines
def main():
# Initialize variables
numGuesses = 0
userGuess = -1
secretNum = 5
name = input("Hello! What is your name?")
# Fill in the missing LOOP here.
# This loop will need run until the player has guessed the secret number.
userGuess = int(input("Guess a number between 1 and 20: "))
numGuesses = numGuesses + 1
if (userGuess < secretNum):
print("You guessed " + str(userGuess) + ". Too low.")
if (userGuess > secretNum):
print("You guessed " + str(userGuess) + ". Too high.")
# Fill in missing PRINT statement here.
# Print a single message telling the player:
# That he/she guessed the secret number
# What the secret number was
# How many guesses it took
main()
Part 2: Test Your Code
Use the Python IDLE to test the program.
Using comments, type a heading that includes your name, today’s date, and a short description.
Run your program to ensure it is working properly. Fix any errors you observe.
Example of expected output: The output below is an example of the output from the Guess the Number game. Your specific results will vary based on the input you enter.
Output
Your guessed 10. Too high.
Your guessed 1. Too low.
Your guessed 3. Too low.
Good job, Jax! You guessed my number (5) in 3 tries!
When you've completed filling in your program code, save your work by selecting 'Save' in the Python IDLE.
When you submit your assignment, you will attach this Python file separately.
Part 3: Post Mortem Review (PMR)
Using complete sentences, respond to all the questions in the PMR chart.
Review Question Response
What was the purpose of your program?
How could your program be useful in the real world?
What is a problem you ran into, and how did you fix it?
Describe one thing you would do differently the next time you write a program.
Part 4: Save Your Work
Don't forget to save this worksheet. You will submit it for your assessment.
10x37x2368x2=? how do u want to answer it is veary hard
Answer : if its multilaction its 1,752,320
I need help with doing a debate for ela. The debate topic is "do you think we are to dependable on our laptops/cellphones. My teacher assigned me to the group that think we are not to dependent on our electronics when i dont even support that side sooo i need help coming up with topics that help support the side that im on. ( that probably did not make any sense)
Answer:
I think we are so this is hard lol
Explanation:
we are not too dependable
things that show this is library are still open, school sports teams still flourish(if we were too depending on them they wouldnt) they help us plan ways to interact in person if we were too dependent businesses would struggle more and only be online
this is hard if I can think of any others I'll come back I'm sorry if this isn't any help
All of the data in a digital book (letters, punctuation, spaces, etc) are stored and processed in a computer as binary. Break down how this works (hint: Ascii) . Explain in three or more sentences: Please Answer ASAP, Brainiest for Best and most In detail answer!!!!!
What was true of Northern cities?
O A. Governments ensured that all areas of city had equal public
services
B. Segregation was limited to the workplace.
O C. The rights of wealthy citizens were protected regardless of their
race.
D. Segregation was practiced even where it was not the law.
Answer:
D. Segregation was practiced even where it was not the law.
Anybody have any rating on this? Plus this is just a work in progress right now. This is a mental health project if you do want to know what it is. https://codeprojects.org/projects/weblab/vp5HAwWBw-GoOMCmubMbc6yL9nN_KsEWaAs-U8Y6msQ
Question 1 (2 points)
What is a written list of instructions (recipes, assembly instructions, etc.)?
Question 1 options:
Algorithm
Syntax
Flowchart
Pseudocode
Question 2 (2 points)
What is a series of instructions that are used to solve a specific problem?
Question 2 options:
Algorithm
Pseudocode
Syntax
Flowchart
Question 3 (2 points)
What is a graphical representation of a computer program in relation to it works?
Question 3 options:
Flowchart
Pseudocode
Algorithm
Syntax
Question 4 (2 points)
What is the sequence of words/symbols that are used to form a correctly structured sentence/program called?
Question 4 options:
Syntax
Pseudocode
Flowchart
Algorithm
Question 5 (2 points)
IF/THEN statements are part of what we know as Syntax.
Question 5 options:
True
False
Answer:
2. 2. 1. 4. I'm not to sure about the last one
If you spam im deleting your question sorry!
Jackson is learning how to use Scratch and would like his code to repeat an action 10 times. Which menu would allow Jackson to accomplish this task? (5 points) Motion Control Events Variables
Answer:
He can use the "Repeat" block under the "Control" menu to execute a set of blocks a specified number of times.
Explanation:
Jackson can use the "Control" menu in Scratch to repeat an action a certain number of times. Specifically, he can use the "Repeat" block under the "Control" menu to execute a set of blocks a specified number of times. To repeat an action 10 times, he can drag the "Repeat" block onto the workspace and change the default value of 10 to the desired value of 10. Then he can place the set of blocks that he wants to repeat inside the "Repeat" block.
Carina's computer is turning off without warning. Which of the following steps should she take to troubleshoot the problem?
A: Try several fixes at once.
B: Uninstall the anti-virus software.
C: Check the cable connections.
D: Remove devices.
HELPPPPPPPPPPPPp PlzSS
Answer:
I would go with the last answer
Answer:
The battery is powering up the lightbulb in order to make it light up.
Explanation:
Digital and analog audio recordings have pros and cons. Do you think the pros of digital recordings outweigh the cons and therefore prefer digital audio recordings? Or, do you think the cons outweigh the pros and therefore you prefer analog audio recordings? Explain. ( USE C.E.R *Claim, Evidence, Reasoning* )
I think the pros of digital recordings outweigh the cons! I prefer digital audio recordings over analog audio recordings because analog recordings require more financing and preservation. Compared to digital recordings, analog recording equipment is more expensive and the tape deteriorates over time. Which to me personally, doesn't seem to be worth the amount of effort since it's such a process to go through. You can possibly go into debt due to that. Digital recording equipment, on the other hand, is more affordable. It's less time-consuming and although it does have its disadvantages, they're minor. Digital recordings can be stored online. Its data get corrupted? You can get it back! It won't cost you anything.
Which type of cyber crime offender requires the highest percentage of risk management in terms of computer monitoring?
A) Sex offenders
B) Identity thieves
C) Low-Risk offenders
D) hackers
Answer: D
Explanation: Hackers are the only type of cyber criminal that monitors your computer
The character you control enters the Mystic Palace. Once inside, you find that the game’s world turns upside down. Standing on the ceiling, your objective is to get to the exit that is now above your head. To do so, you’ll have to use objects on the wall such as bookcases and paintings. What kind of challenge has been described here?
resource management
reaction time
spatial awareness
pattern recognition and matching
Answer:
is it pattern recognition and matching
Explanation:
Answer:
pattern recognition and matching
GUYS THERE IS A HACKER IN BRAINLY PLEASE DONT PRESS ON THE WEBSITE THEY WILL HACK YOU.
yeah ive seen them :( they are files and if you download them you will get a virus or your ip taken so please watch out !!
Answer:
Ok noted
Explanation:
Is a poster the best media form to make a call to action to the government and major corporations? What other media forms could be effective?
Answer:
A Poster can be an effective media form to make a call to action to the government and major corporations, as it allows for visually impactful messaging. However, other media forms could also be effective, such as:
Social media campaigns: Utilize platforms like Twitt..er, Fa..cebook, or Ins..tagram for awareness and mobilization.Online petitions: Collect signatures and demonstrate public support.Video campaigns: Engage viewers emotionally through compelling videos.Mass media advertising: Utilize TV, radio, or print media for broader reach.Advocacy websites: Provide information, resources, and a platform for action.Public demonstrations and rallies: Gather supporters for visible advocacy.Answer:
Explanation:
Online petitions: Collect signatures and demonstrate public support.Video campaigns: Engage viewers emotionally through compelling videos.Mass media advertising: Utilize TV, radio, or print media for broader reach.Advocacy websites: Provide information, resources, and a platform for action.Public demonstrations and rallies: Gather supporters for visible advocacy.How to you change you name, so that whenever i answer something or comment on something it says my name and not my email adress
PLEASE ANSWER QUICKLY IM GIVING 100 POINTS TO WHO EVER GIVES ME THE RIGHT ANSWER FIRST HURRY PLEAAAAAASE!!!!
Answer:
you cant
Explanation:
the website is weird and wont let people change their name
Which best describes desktop publishing? the process of designing and laying out printed material the positioning of text, graphics, and white space on a page the style of letters and how they are arranged the use of images and colors
Explanation:
the process of designing and laying out printed material.
Answer:A photographic proof where all colors are shown in blue, best used for spot color jobs, and it is used primarily to ... WYSIWYG is technical jargon that describes.
Explanation:
C programming 3.26 LAB: Leap year
A year in the modern Gregorian Calendar consists of 365 days. In reality, the earth takes longer to rotate around the sun. To account for the difference in time, every 4 years, a leap year takes place. A leap year is when a year has 366 days: An extra day, February 29th. The requirements for a given year to be a leap year are:
1) The year must be divisible by 4
2) If the year is a century year (1700, 1800, etc.), the year must be evenly divisible by 400; therefore, both 1700 and 1800 are not leap years
Some example leap years are 1600, 1712, and 2016.
Write a program that takes in a year and determines whether that year is a leap year.
Ex: If the input is 1712, the output is:
1712 - leap year