Answer: Probably C
(also, C and D say the same thing)
hi i choose brainlyest 4 free
Answer:
bet
Explanation:
What is the python code for these problems (100 points): Ask the user to enter a name. If there is an ‘a’ in the name, print a message saying ‘The name contains at least one a.’ If there is no ‘a’, print “The name does not contain the letter a.” Extend the previous program and count the number of a’s that come in the name. Ask the user to enter a number. If the number is between 1 and 50, print “The number is too small.” If the number is between 50 and 100, print “The number is too big.” If the number is 50, print “You found me.” If the number is 100, print “You found a tip: The number is between 45 and 60.” The program should keep asking the user for the number until he enters 50. Use a for loop to print numbers from 10 to 40. Ask the user to enter a number. Print all the even numbers till that number using a for loop. Generate a random integer. It can be any number from 1 to 100. Print numbers from 1 to that number. Repeat question 4. Replace the for loop with a while loop. Thanks so much!!!
Answer:
Sorry, but I do not know the answer. Although, I will say to go onto codesters, or codehs and they have some free coding classes that can help you get better at coding.
Explanation:
In Scratch, it is very simple to display a score on the screen. All you have to do iswhat to the score variable? place an instruction bubble next to it insert a score sprite containing the variable check the box next to it insert a drop-down menu containing it
My Recommendation:
I think thats the correct way but I am not sure, I recommend watching something that can help you with that or maybe get a friend to help you with it. Hope this helped! :D
WILL GIVE BRAINLIST IF ANSWER IS RIGHT AND YOU TELL ME HOW YOU GOT YOUR ANSWER
Which function allows a user to add another item to a list in Python?
a. order()
b. print()
c. sort()
d. append()
Answer:
c I'm gonna say c I remembered we talked about in my class
ANSWER ASAP GIVING BRAINIEST FIVE STAR AND HEART!
THIS IS 6TH GRADE TECHNOLOGY!
Please answer the following essay question:
What is the difference between a function and a formula? List an example of each.
Answer in paragraph form using 5-7 complete sentences.
Answer : A Formula is a method, statement, or procedure for achieving something, especially reconciling different aims or positions. A function is an activity or purpose natural to or intended for a person or thing. The difference between the two is a function is a piece of code that executes a predefined calculation, while a formula is something you create yourself.
Answer:
A Formula is a method, statement, or procedure for achieving something, especially reconciling different aims or positions. A function is an activity or purpose natural to or intended for a person or thing. The difference between the two is a function is a piece of code that executes a predefined calculation, while a formula is something you create yourself.
Explanation:
Which of these represents information that is fact-based, measurable, and observable?
objective information
predictive information
subjective information
interpretive information
Answer: objective information
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.
what is 8 4/7 divided by 15
Answer: 4/7
Explanation:
8 4/7 ÷ 15
60/7× 1/15
=4/7
ok so...you first are going to convert the mix fraction 8 4/7 to improper fraction by multiplying the denominator and the whole number which is 56 then add the numerator 56 +4= 60 and put back the denominator which is going to be 60/7.
Then flip the fraction or the whole number 15 which is also 15/1 that is on the right which is going to be 1/15 and change the division sign to multiplication which is going to be 60/7 × 1/15.
then you can cancel, 15 go into 60, 4 times, so you are going to multiply 4 times 1 and 7 times one, which gives you 4/7.
I hope this help you to understand
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.
i) State the two types of storage media.
ii) Give three important features of storage media.
iii) State two ways to protect storage media.
Please no links and false answers.
Which is the best approach to debugging?
A.
Don’t worry about it at all until after the program is written.
B.
Be sure the program will work perfectly before writing it.
C.
Anticipate errors before they happen, and find and fix errors that happen.
D.
Use an HTML encoder.
Why is it recommended to develop a study plan? A. It tells you when your teacher is planning on giving the test. B. It helps you organize what you will study and when you will study to ensure you have enough time. C. It provides all of the information that your teacher will put on the test. D. It tells your Learning Coach when to help you study for your test.
Answer:
B. It helps you organize what you will study and when you will study to ensure you have enough time.
What type would the object X be in the following statement:
if (X) { ... }
A.
Number
B.
Boolean
C.
String
D.
Date
Answer:
Boolean
Explanation:
If statement condition always returns true or false,which is a boolean data type.
X is true or false
it maybe a variable or an expression.
How do I get into smart art??? I have to do a slide presentation and I'm confused.
how has social media changed my journalism looks like?
A. journalists use poor grammar online
B. journalist can be everyday people
C. Only journalists from major news stations report the news
D. Journalists can dress down while reporting the news
This is for a test, so I need to get answers fast.
Please help me
Answer d
Explanation:
helppppppppppppppppppppppppppp
Answer:
2.
Explanation:
Stayed a safe distance away from the tank while shooting to ensure that he did not fall in accidently
im going to go with 1 or 2
Explanation:
Create 8 Source cards on Why Phones Should Keep Evolving. Pls Help due Monday.
Here are eight source cards on why phones should keep evolving:
1. Chatfield, Tom. "Technology in Deep Time: How It Evolves Alongside Us." BBC Future, 8 Feb. 2019, https://www.bbc.com/future/article/20190207-technology-in-deep-time-how-it-evolves-alongside-us.
2. "Smartphone Innovation in the Third Decade of the 21st Century." MIT Technology Review, 5 Mar. 2020, https://www.technologyreview.com/2020/03/05/905500/smartphone-innovation-in-the-third-decade-of-the-21st-century/.
3. Bearne, Suzanne. "The People Deciding to Ditch Their Smartphones." BBC News, 24 Jan. 2022, https://www.bbc.com/news/business-60067032.
4. Kelly, Heather. "The Smartphone Is Eventually Going to Die, and Then Things Are Going to Get Really Crazy." Business Insider, 19 Apr. 2017, https://www.businessinsider.com/smartphones-will-die-out-in-five-years-2017-4.
5. Lomas, Natasha. "Why Your Next Phone Should Be a Modular Phone." TechCrunch, 28 Jan. 2015, https://techcrunch.com/2015/01/28/why-your-next-phone-should-be-a-modular-phone/.
6. O'Callaghan, Jonathan. "How Smartphones Are Heating Up the Planet." Scientific American, 26 Mar. 2018, https://www.scientificamerican.com/article/how-smartphones-are-heating-up-the-planet/.
7. Pogue, David. "Why Phones Keep Getting Better." Scientific American, vol. 321, no. 3, Sept. 2019, pp. 22-23.
8. Wadhwa, Vivek. "The Future of Smartphones: They're Going to Morph and Take Over Everything." The Washington Post, 16 Feb. 2016, https://www.washingtonpost.com/news/innovations/wp/2016/02/16/the-future-of-smartphones-theyre-going-to-morph-and-take-over-everything/.
Source: Conversation with Bing, 6/11/2023
(1) Smartphone innovation in the third decade of the 21st century. https://www.technologyreview.com/2020/03/05/905500/smartphone-innovation-in-the-third-decade-of-the-21st-century/.
(2) Technology in deep time: How it evolves alongside us - BBC. https://www.bbc.com/future/article/20190207-technology-in-deep-time-how-it-evolves-alongside-us.
(3) The people deciding to ditch their smartphones - BBC News. https://www.bbc.com/news/business-60067032.
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:
Your friend Marco loves being on his phone and interacting on social media. He knows that you are studying different careers and asks you what kinds of careers he might consider that would allow him to learn more about communications. You know that advances in telecommunication are always being introduced, and in the future more and more people will be needed in the Energy cluster to design, create, advertise, and sell new ways of communicating. List two careers that he could pursue along the telecommunication pathway. What kind of skills or talents would he need in these two careers? How could he gain the talents or skills to succeed in these two careers?
Explanation:
Social Media Manager: he would be responsible for overseeing a company's interactions with the public by implementing social media platforms' content strategies. He's duties include analyzing engagement data, identifying trends in customer interactions and planning digital campaigns to build community online.
Promotions Manager: He would be responsible for planning and managing campaigns to promote their company's products and services. Promotions can help increase short-term sales and improve the results of other marketing programs.
Answer:
Network Services or Technical Officer
Explanation:
Some Good Skills for Network Servieces would be:
An analytical mind.
An ability to learn new technologies quickly.
Good time management skills.
An ability to follow processes.
Strong documentation skills.
Good communication skills – both written and verbal.
Some Good Skills For a Technical Officer would be:
Exceptional ability to prioritize and perform maintenance tasks and repairs.
Working knowledge of recordkeeping and preparing maintenance schedules.
Experience taking inventory of maintenance materials and replacement parts.
Proficiency in working with budgets and advising on maintenance and repair costs.
Give a brief history of programming, including at least three milestones related to the advancement or development of programming.
Answer: 1. 1953: FORTRAN, the first commercially available programming language, is developed.
- Developed by John Backus and IBM.
- Originally developed for scientific computations.
- Currently used to rank the world's fastest supercomputers.
2. 1972: The C programming language is developed.
- Developed by Dennis Ritchie.
- Developed to encourage cross-platform programming.
3. 1989: The Python programming language is first implemented.
- Originally created and developed by Guido van Rossum.
- Currently developed by the non-profit Python Software Foundation.
- Emphasizes code readability.
Explanation:
Answer:
yes
Explanation:
Is technology science? I mean, I think it is... uh, why am I so paranoid about this project.
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.
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
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
List the different computer industries, and what they do.
(Like the part makers, people who assemble it and stuff not the companies)
Answer:
There are several different industries that are involved in the production and use of computers. These industries include:
Hardware manufacturers: These companies design and produce the physical components of computers, such as the motherboard, processor, memory, storage, and other peripherals.Software developers: These companies create the operating systems, applications, and other programs that run on computers.System integrators: These companies assemble and configure computers, often using components from multiple manufacturers, and sell them to consumers or businesses.Service providers: These companies provide support and maintenance services for computers, including repair, installation, and training.Data centers: These companies operate large facilities that host and manage the data and computing resources of other companies.Internet service providers: These companies provide access to the internet for businesses and consumers.Cloud computing providers: These companies offer computing services, such as storage, networking, and software, over the internet.Consulting firms: These companies provide advice and expertise on the use of computers and technology for business and organizational goals.Answer:
Hardware Manufacturers
Software Developers
System Integrators
Service Providers
Data Providers
ISP
Cloud Computing Providers
Consulting Firms
Explanation:
It is in order..
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
Can you please make a simple python program? I will give you 20 points and branliest if it is good! It must include:
·At least 3 variables
·Contain a new function
·And must have at least 10 lines of code
Answer:
# Solve the quadratic equation ax**2 + bx + c = 0
# import complex math module
import cmath
a = 1
b = 5
c = 6
# calculate the discriminant
d = (b**2) - (4*a*c)
# find two solutions
sol1 = (-b-cmath.sqrt(d))/(2*a)
sol2 = (-b+cmath.sqrt(d))/(2*a)
print('The solution are {0} and {1}'.format(sol1,sol2))
Hope This Helps!!!
Answer:
# Newton's Law of Universal Gravitation
import math
print("This program will calculate the gravitational force between two objects")
# Gravitational Constant
G = 6.67408
while True:
try:
m1 = float(input("\nInput mass of first object (in kilograms): "))
break
except ValueError:
print("Invalid input!")
while True:
try:
m2 = float(input("Input mass of second object (in kilograms): "))
break
except ValueError:
print("Invalid input!")
while True:
try:
d = float(input("Distance between the objects (in meters): "))
break
except ValueError:
print("Invalid input!")
force = G * (m1 * m2) / math.pow(d, 2)
print("The gravitational force between these two objects is {0} newtons!".format(force))
What are all the names of different Mechanical Watch, Sundial Watch, Pocket Watch,Digital Watch, Electric Watch, Smart Watch and the Computer? What im trying to say is different type of watches that are above for example different type of tyota cars camry, century and etc
Answer:
mechanical watch: Grand Seiko T0 Constant-Force Tourbillon caliber
sundial watch: police
pocket watch: tissot savonnette pocket watch
digital watch: casio g shock ga100
electric watch: timex m40
smart watch: apple watch 7
computer: mac book air 2021
Explanation:
mark me brainliest if it helped
HOW DO YOU TURN CAPS LOCK OFF ON CHROMEBOOK
What to do when hearing someone bang on your door? Protection question! 20 points
Answer:
if someone knocks at your door, do NOT open the door, and ask them what they want. If they’re asking for help (red flag)“OK, I get that you need help, let me call the police right now and they will be able to assist!”
Explanation: