Add the following binary numbers. 101110010 and 111001101
Answer:
101110010 is 370 in decimal (base 10, what we usually do math in) and 111001101 is 461 in decimal. The sum of 370 and 461 is 831, and 831 is binary is 1100111111. So, if you want the answer in decimal it is \(\boxed{831_{10}}\) and if you want the answer in binary, it is \(\boxed{1100111111_2}\).
You are testing a classmate’s program. The program asks you how many times you want to play the game, and you input “five.” You get the following error message: “ValueError: invalid literal for int() with base 10: 'five.'” What line of code could prevent this problem in the future?
Answer:
The following are totally acceptable in python:
passing a string representation of an integer into int
passing a string representation of a float into float
passing a string representation of an integer into float
passing a float into int
passing an integer into float
But you get a ValueError if you pass a string representation of a float into int, or a string representation of anything but an integer (including empty string). If you do want to pass a string representation of a float to an int, you can convert to a float first, then to an integer:
>>> int('5')
5
>>> float('5.0')
5.0
>>> float('5')
5.0
>>> int(5.0)
5
>>> float(5)
5.0
>>> int('5.0')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ValueError: invalid literal for int() with base 10: '5.0'
>>> int(float('5.0'))
5
Explanation:
Answer:
You put a string into integer value...
Explanation:
Why does my hisense tv have horizontal lines and why is the screen flickering?
Answer:
it's about to blow out or you need a new picture tube
NO LINKS!! HELP!! ESSAY DUE TODAY!!!
Answer:
To the "Am not 13"
Explanation:
Amy Bernstein wrote a story, which is titled "I'm Not Thirteen Yet." The story is told from the perspective of one of the characters, making it a personal narrative. The story's author describes his personal experiences throughout the narrative. 'I had entered the world of teenagers, and I wasn't even one of them yet,' says the author, demonstrating that he is writing about his own experiences.
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.
ANSWER ASAP PLEASE! I'M TIMED <3
Which of the following are forms of repetitive strain injury? Choose 3 options.
neck spasms
concussion
overexertion
back issues
carpal tunnel syndrome
please give brainliest
Answer:
The three options that are forms of repetitive strain injury are:
Neck spasms: Repetitive movements or sustained poor posture can strain the neck muscles, leading to spasms and discomfort.
Overexertion: Overexertion refers to excessive or repetitive use of certain muscles or body parts, which can result in strain and injury over time.
Carpal tunnel syndrome: Carpal tunnel syndrome is a specific repetitive strain injury that affects the hands and wrists. It occurs when the median nerve, which runs through the carpal tunnel in the wrist, becomes compressed or irritated due to repetitive hand and wrist movements.
Answer: neck spasms, carpal tunnel syndrome, overexertion
Explanation:
1 What was the first European colony in the western part of North America?
Santa Fe
Rio Grande
Albuquerque
St. Augustine
2 What did the Spanish bring to the New World?
Furs
Honeybees and tobacco
Barley, oats, wheat, and oranges
Gold and Juniper
3 What was used to cure skin irritations?
Horehound
Carrots
Garlic
Cornstarch
4 Why did Hernando de Soto explore Florida?
To establish permanent settlements
To find both gold and a water passage to China and Japan
To find a mythical group of seven cities made of gold
To spread Christianity
.
5 What did the Proclamation of 1763 do?
Prevented French from going past the mountains
Prevented fur trade from going on past the mountains
Prevented settlers from going past the mountains
Prevented Native Americans from going past the mountains
6 What did a joiner do?
Taught school
Built houses
Joined wood together into things like cupboards and staircases
Introduced members of the colony to the church
7 Which of the plants below was used to cure diseases?
Carrots
Horehound
Potatoes
Garlic
8 How did the False Face society heal people?
1They would wear very frightening masks to scare the evil spirits away. They believed that evil spirits caused illness.
2They would use various herbs and wild plants to create a paste which they would rub all over the sick person.
3They were the first of all Native Americans to practice conventional medicine.
4They would have patients wear a mask for 30 days and nights to ward off the evil spirits that they believed caused illness.
PLS HELP ME!
Who was the greatest enemy of the Susquehannock?
Iroquois
Cherokee
Mohawk
Apache
Iman manages a database for a website that reviews movies. If a new movie is going to be added to the database, what else will need to be added?
a PDF
a table
a file
a record
i need a essay 3-5 sentences on volleyball
Answer:Volleyball is a team sport that involves two teams of six players, one of which plays offense and the other defense. Each player has a specific role to play on the court:
Setter – The setter positions herself in front of her teammates, and sets up the ball for them to hit. She also controls the pace at which points are played, as well as how long each point lasts. The setter’s job is to make sure that every point goes smoothly without any errors or mistakes by her teammates.
– The setter positions herself in front of her teammates and sets up the ball
Explanation:
pick and choose the sentences from there
A friend of a friend needs a place to stay. He’s offered you $200 to camp out in your living room.
WHAT DO YOU WANT TO DO?
(A.)SAY YES
(B.)SAY NO
Answer:
A.
i wouldn't say no to that Who would?
Explanation:
Pls give the output of this pseudocode
Answer:
2
4
6
8
10
9
Explanation:
The loop runs from 1 to 10 in steps of 2, that is excluding the 10, so the values y gets are 1,3,5,7,9. The values that are printed are one higher, i.e., 2,4,6,8,10. Then finally the unchanged value of x is printed, which is 9.
QBasic implementation attached.
Answer:
2
4
6
8
10
9
Explanation:
Why isn't my brainly post being answered?
Try deleting then reposting, it may not always pop up in new questions, I will have a look at the question anyway.
To Get Text to Move
1. Write the code to create a variable for the starting position of your text on
either the X or Y axis.
a. EX: var textStarts = 25;
2. Write the code to create the loop.
3. Write the code to create the text size.
4. Write the code to create the text color.
5. Write the code to create the text that you want to appear.
6. When you write the code for the text to appear, call the variable created in
step on for the X or Y location.
a. EX: text (“Moving text is simple!”, textStarts, 150);
7. Write the code to get the text to move.
a. EX: textStarts = textStarts – 6;
(JAVAscript)
Fill in the blanks:
Potential prospects will be best for applicants who keep up with the latest ___________and ____________
Imagine you’re at lunch. Your nose smells pizza. Your legs move over to where hot lunch is being served. You have to balance the food and your milk in your hands, look around for a free seat, and then sit down. This may seem simple, but many different parts of your body have to work together to make all of that happen. To make sure your body can work correctly, even when it does many things at once, your body must be carefully organized. WHAT IS THE MAIN IDEA???
Answer:
Organization of Life
When the prompt function is used in JavaScript, _____ appears.
A.
an error message
B.
a pop-up box
C.
a data warning
D.
a password request
Answer:
B
Explanation:
instructs the browser to display a dialog with an optional message prompting the user to input some text, and to wait until the user either submits the text or cancels the dialog
In what ways can information be slanted in a news report? List at least five ways.
Answer:
author, journalist and speaker/media trainer this is all I know so
author, journalist and speaker/media trainer
Be sure to answer the following in complete and detailed sentences.
1. What might be a benefit of wirelessly connecting smart devices in a physical computing project?
2. How might you connect more than two micro:bits to activate multiple outputs triggered by one micro:bit?
3. How do batteries and other types of power sources make physical computing systems more mobile? Why is that helpful?
Answer: 1, 3
Explanation:
1: It can not just cause less of a wire mess. It can also cause easy travel if you want to do something from somewhere else!
3: It can make it easier to power up a device quickly when you CAN replace the batteries. It can also make charging more efficient overall.
Answer:1: It can not just cause less of a wire mess. It can also cause easy travel if you want to do something from somewhere else!
3: It can make it easier to power up a device quickly when you CAN replace the batteries. It can also make charging more efficient overall.
Explanation:
Please help I need some one that knows about the article Disney Imagineer because I wasn't in school today so please help me write 2 paragraphs about it please. Help this is due at 11:59 PM
Read the article (Disney Imagineer) in class and write 2 paragraphs.
Answer:
I don't know much but I looked up some stuff about the Article.
River of the light-
When park-goers swarm Walt Disney World's Animal Kingdom later this month, Joe Rohde will be paying close attention.
The executive designer and vice president of Walt Disney Imagineering Creative has spent the last eight years overseeing the expansion of Disney's Animal Kingdom park, including its soon-to-be unveiled evening spectacle, "Rivers of Light." Rohde, a Disney veteran who said he started “at the bottom of the design ladder” in 1980, has also been leading the charge on Disney's "Avatar"-themed land, based on James Cameron's 2009 top-grossing film, which is slated to debut in 2017. The first of four planned sequels to Cameron's movie based on the fantastical world of Pandora will hit theaters a year later.
Rohde has overseen the development of Disney's "Avatar"-inspired land, seen in this illustration, which is scheduled to open at Animal Kingdom in 2017.-
Rohde likened the process of developing and constructing a major attraction to filming a major blockbuster film. The whole investment -- from "the morning of conceptualization to opening day" can take anywhere from four to five years, Rohde told ABC News. And in the case of Animal Kingdom, incorporating live animals can lead to other challenges.
"The inclusion of live animals changes design standards ... but it brings realism to design," he said in a phone interview. "Nature is a supreme, immutable value."
The millions of visitors who travel to Disney’s theme parks around the world -- more than 134 million in 2014, according to the Themed Entertainment Association (TEA), an industry trade group -- are not privy to the trials and tribulations of what it takes to bring an idea to fruition at Disney. Imagineers, as they're referred to at Disney, prefer it that way.
"We try to be invisible," Theron Skees, executive creative director for Walt Disney Imagineering, said in an interview.-
Skees started his Disney career painting artificial grottos and tunnels at Disneyland Paris' Pirates of the Caribbean attraction. Skees, who previously worked as a sculptor and set designer in film and commercials, has lived on three continents as a Disney imagineer, tasked with bringing the visions and interpretations of Disney characters and stories to life. The imagineering division, one of the most competitive and challenging practices within the Disney universe, has the sole responsibility of delivering "the magic" that visitors seek year after year. There are at least 1,500 imagineers currently in the company, according to a Disney spokesperson, with 140 disciplines within the group.
"There's the technical know-how, the creative vision, the planners and the operators," Skees said. "Imagineering is a pretty specialized group that requires a specialized mindset."-
And loners need not apply.
"You have to communicate and get an idea out there, whether that's painting, building or drawing models," Rohde added. "The ability to collaborate as a group is a must."
Skees reiterates that every imagineer is encouraged to submit ideas -- whether that’s for a new roller coaster, a live performance or costume design at one of the theme parks, hotels or Disney cruises.
“All ideas go through a process and it’s not exclusive to one person,” he noted.
Ideas can come from anywhere. Rohde immerses himself in books -- non-fiction, art history, neurology -- and vows to plow through the 35 stacked next to his bed, soon-to-be additions to his personal library of 5,000 books.
To be successful in this career “you need to find smart people to work under you and to read a lot,” he explained. Traveling the world? A necessity.
“We’re not making two-dimensional products. You need to know what places are really like,” he added.
Disney is the parent company of ABC News.
Hope you can get your work in on time.
Jaime has been hired as a consultant for a company. His task is to help the company spend less time and money writing code. Jaime notices that, even for very complicated programs, the programmers at this company start programming without an overall plan for the development of the code. What might Jaime suggest that they do instead?
A.
begin by writing the final lines of the program instead of the first lines
B.
program in C++ instead of in Python
C.
begin by creating a pseudocode
D.
spend more time debugging
Answer:
C
Explanation:
i had to answer this question on a test and ended up getting it right, hope this helps!! :D
What are some ways you can turn failure into a learning experience?
Answer:
Well,you will stop making that mistake.
Explanation:
(I made this up teehee) what anime is katski bakugo from
what do u guys think of the coronavirus? and how has it affected ur life? thank you! :) :3
Tests, fixes, and maintains network systems:
In a minimum of 250 words, discuss the technological problems that can occur when consumers emphasize on speed over security.
Explanation:
--> used brainly simplify :D
Consumers prioritizing speed over security can lead to several technological problems. This includes vulnerabilities and breaches where attackers can exploit weaknesses in software or systems. Malware and phishing attacks become more likely when security measures are overlooked. Weak or simplified authentication and authorization methods can make it easier for unauthorized users to gain access. Neglecting updates and patches leaves devices and systems vulnerable to known threats. Lastly, rushing through secure development practices may result in the inclusion of vulnerabilities in the software itself. To address these issues, consumers should use strong passwords, update their software regularly, and be cautious of suspicious links or emails. Service providers and developers should prioritize security by conducting thorough security assessments and promptly addressing vulnerabilities. Striking a balance between speed and security is crucial for a safe and efficient technological environment.
Tonya is creating a program that will allow the user to input their work address. Which kind of variable should Tonya use for this?
A.
a syntax variable
B.
a float variable
C.
a string variable
D.
an alphabetic variable
Answer:
B.
a float variable is the answer
Explanation:
becouse it is float variable
Play the Scratch Game Chase HQ, Pay special attention to the animation, sounds, and colors used. Then answer the following questions in word processing document:
What kinds of sounds were used? How did the sounds affect the feel of the game?
How did the colors affect the mood and feel of the game?
What kinds of animation principles were used?
Answer:
Please mark me brainiest. It took a lot of time to compile this answer.
What kinds of sounds were used? How did the sounds affect the feel of the game?
Many sound effects were used, such as the screeching of the tyres, the sudden acceleration and the crashing or bumping of the car. The sound affects made the game feel more realistic
How did the colors affect the mood and feel of the game?
The main color used in the game is blue, which dominates the background and the color of the player's car. Blue is often associated with calmness and serenity, which is an interesting contrast to the high-intensity action of the game.
Red is also used prominently in ChaseHQ, which is often associated with danger, urgency, and excitement. In the game, red is used to indicate the presence of criminals and other hazards that the player must avoid or confront.
Overall, the color palette of ChaseHQ is intended to create a sense of high-speed action and excitement, while also providing a clear visual contrast between the player's car and the other elements in the game. The use of blue and red also helps to create a sense of urgency and danger, which is a key element of the game's gameplay and story.
What kinds of animation principles were used?
Chase HQ used a variety of animation principles to create movement and visual effects in its projects. Some of the key animation principles used in Scratch include:
Squash and Stretch: This principle involves stretching an object in one direction and compressing it in another to give the impression of weight and movement.
Timing: The timing of an animation can greatly affect its impact. In Scratch, users can control the timing of their animations by adjusting the duration and speed of individual blocks.
Anticipation: This principle involves adding a small movement in the opposite direction of the intended action to help build anticipation and create a more dynamic animation.
Follow-Through and Overlapping Action: These principles involve creating secondary movements that follow the main action of the animation, helping to create a more natural flow of movement.
Arcs: This principle involves using curved paths of motion to create more organic and appealing movement.
Overall, Scratch provides a range of tools and features that allow users to incorporate these animation principles and create engaging and dynamic projects.
Explanation:
Answer: Please mark me brainiest. It took a lot of time to compile this answer.
What kinds of sounds were used? How did the sounds affect the feel of the game?
Many sound effects were used, such as the screeching of the tyres, the sudden acceleration and the crashing or bumping of the car. The sound affects made the game feel more realistic
How did the colors affect the mood and feel of the game?
The main color used in the game is blue, which dominates the background and the color of the player's car. Blue is often associated with calmness and serenity, which is an interesting contrast to the high-intensity action of the game.
Can someone please help me with fixing this bug? (Ten points if you are able to help me)
Answer:try to power of phone then power back on clear briny( history) and go back to it
Explanation:
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:
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