Answer:
the step of creating a story board should be done after writing the script
If you want the words “My puppy is a poodle” to appear in the output box, what Python code should you use?
A.
create “My puppy is a poodle”
B.
execute (“My puppy is a poodle”)
C.
print(“My puppy is a poodle”)
D.
print “My puppy is a poodle”
Answer:
i think it is B hope it helps
A college campus uses robots to give students tours. The prospective students can ask the robot questions about life on campus. The robot allows the visiting student to choose which parts of campus to visit. What best describes the type of AI possessed by the robot?
weak AI
neural network AI
symbolic AI
Strong AI
The type of AI possessed by the robot in this scenario is Weak AI, also known as Narrow AI or Applied AI.
Weak AI is designed to perform a specific task, and it operates within a limited domain. The robot in this scenario is programmed to give tours of the campus and answer questions about life on campus. It does not have general intelligence, consciousness, or the ability to think and reason like a human being, and it cannot perform tasks outside of its programmed capabilities.
In contrast, Strong AI, also known as Artificial General Intelligence (AGI), is a theoretical form of AI that would possess human-like intelligence and the ability to reason and perform any intellectual task that a human can do. However, Strong AI does not currently exist.
Neural network AI and Symbolic AI are categories of techniques and approaches used in the development of AI, and they can be applied to both Weak AI and Strong AI systems. Neural network AI involves developing algorithms that are modeled after the structure and function of the human brain, while Symbolic AI involves creating AI systems based on a set of rules or symbols. However, the type of AI possessed by the robot in this scenario is more specifically described as Weak AI.
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.
How does binary code control the processes in a computer.
Binary systems employ the code to comprehend user input and operational instructions and to offer the user with an appropriate output.
What is binary system?Binary system is defined as a numbering system where each digit can only have one of two values—0 or 1—and which serves as the foundation for all binary code used in computing systems. These systems make use of this code to decipher user input and operational directives and provide the user with the desired result.
The binary is read from, say, disk and loaded into memory. The memory contents are then loaded into a processor local resister according to a directive issued by the processor logic to the memory controller. The CPU then interprets it as a command to execute.
Thus, binary systems employ the code to comprehend user input and operational instructions and to offer the user with an appropriate output.
To learn more about binary system, refer to the link below:
https://brainly.com/question/2824068
#SPJ2
Experts believe robots and AI will continue taking over many of the human jobs we know today. What changes should be made to K-12 education to ensure students are prepared for the future? What courses or skills should be added? WHat should be removed? Why?
Answer:
I think they should show one subject per month so students are more prepared
Answer: some changes that should be made are dresscode , some courses should be more sports . Nothing should be removed because the kids in the future need to learn more .
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
how do you set up a go ogle account on a school computer?
Explanation: Click sign in, then Click use another account, after that put in the email and password for that account. You should now have a new account.
Please answer the question on engineering process
Answer: A
Explanation: If you don't Identify the problem the computer will act up and you will not be able to fix it if you don't identify the problem.
Demonstrate how to assign a value to the third element of an array called finalGradeArray.
Answer:
It's really important that you say in which language you wanna do this. But like in python:
finalGradeArray.insert(2, "New value")
Explanation:
what are some basic commands to remember in terminal? windows 10
please help if you know
Answer:
If you just need a few, maybe this can help.
Explanation:
Cat - The cat command means 'Concatenate'. It prints the contents of a file or files to stdout. It's frequently used in Linux commands.
Touch - Using the 'Touch' command, you can create a file, or possibly just modify or generate a timestamp.
Move - The 'mv' command stands for 'Move'. As the name says, we can use this command to move files and directories from one place to another.
Chsh - The chsh command changes a user's login shell attribute. If you want to change the shell of another user, execute the command with root permissions.
Sudo - 'Sudo', or 'super user do', is a command that allows you to elevate your user privileges while executing the command to administrator privileges.
What is the purpose of the PC troubleshooting process? Select two answers. BRAINLIEST to who gets it right
Answer:
identify...
solve...
Explanation:
Troubleshooting is a form of problem solving, often applied to repair failed products or processes on a machine or a system.
Answer:
Identify Problems and Fix Broken Components
Explanation:
"Critical troubleshooting will automatically fix things like corrupt settings that keep critical services from running, make adjustments to work with your hardware, or make other specific changes required for Windows to operate with the hardware, apps, and settings you've selected." Cited from Microsoft Support's Website
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
Will the following boolean expression return True or False?
Answer:
the boolean expression returns false
Explanation:
because 10!==100
Question 1(Multiple Choice Worth 5 points)
(03.01 MC)
Which line of code will only allow a non-decimal point to be stored in a variable?
candyCost = int(input("How much is the candy?"))
candyCost = input("How much is the candy?")
candyCost = float(input("How much is the candy?"))
candyCost = str(input("How much is the candy?"))
Question 2(Multiple Choice Worth 5 points)
(03.01 MC)
Cheri's teacher asked her to write a program using the input() function. What will this allow her program to do?
Add comments to the code
Allow others to understand the code
Display a string on the screen
Make the program interactive
Question 3(Multiple Choice Worth 5 points)
(03.01 MC)
Jabari is writing a program which prompts a user for a value that is negative and has a decimal. Which function should he use?
float()
int()
print()
string()
Question 4(Multiple Choice Worth 5 points)
(03.01 LC)
In programming, what is a string?
A cable that connects a computer to hardware
A method of threading code into a computer
A system of organizing letters alphabetically
A way to store a sequence of letters, numbers, or symbols
Question 5(Multiple Choice Worth 5 points)
(03.01 LC)
Which function converts the user's input to a number without a decimal?
float()
int()
print()
string()
Answer:
b
Explanation:
it's not a c or d and now I have to make it 20 characters long so I will do this
Hey can someone help?
What is something you do to judge the credibility of websites, videos, or information you come across online?
A bicycle is probably not a computer because it does not
have a screen
require electricity
use information to solve a problem
use the internet
Pls anwser quick
PLEASE HELP ME!!!!
You are creating a form on a website where the user will enter a “Y” for “yes” and an “N” for “no.” Which data type should you use to store the letter that the user enters?
*character
*string
*Boolean
*integer
Answer:
integer
Explanation:
While the economy of eastern Washington relies on farming, western Washington relies on technology.
True
False
HURRY 50 POINTS A human is needed to create the algorithms that computers use.
True
False
Answer:False
Explanation:Took the test before
Answer:
maybe false
Explanation:
Which of these might be an example of an advertiser's target group?
A.People who have no access to media
B.people the advertisers know nothing about
C. People who watch a variety of TV shows
D. People who live in the same region of the country
An example of an advertiser's target group that "people the advertisers know nothing about". which is the correct answer would be option (B).
What is Advertiser?A corporation, organization, or individual who pays for advertising space or time to deliver a convincing commercial or message to the public is known as an advertiser. It is derived from the Latin word "annunciare", which means to announce or make known certain news.
Advertising is the technique of displaying advertisements. Advertisers use advertising to increase the consumption of their products or services by creating a "brand," which equates the name of the product or picture with particular traits in the minds of customers. Political parties, interest groups, religious organizations, and government agencies are examples of advertisers who can spend money to market other aspects of a product or service to the customer.
Thus, the example of an advertiser's target group that "people the advertisers know nothing about"
Hence, the correct answer would be option (B).
To learn more about the advertisements click here:
https://brainly.com/question/3163475
#SPJ5
3 different ways that ultrasonic sensors can be used in everyday life.
Answer:
Ultrasonic Sensors Uses:
Anti-Collision DetectionPeople DetectionContouring or ProfilingPresence DetectionBox Sorting using a Multi-Transducer SystemEasy Control of Trash Collection VehiclesPallet Detection with ForkliftsBottle Counting on Drink Filling MachinesLearn more about Ultrasonic Sensors here
Visit —
https://brainly.in/question/19907919
https://brainly.ph/question/13809853
Hope my answer helps you ✌️
Mark BRAINLIEST
Part 1: Compare the Websites
You are conducting research for a project about elephant sanctuaries. Compare the two websites using the 5 W’s criteria for reliability and validity. For each website, complete the 5 W’s Checklist.
Answer:
WHO: a 15-year old high school student
WHAT: information about donating to a local elephant sanctuary and a trip
WHEN: January 2012
WHERE: www.free-elephants.com.cv
WHY: To help fund the student's trip to Africa to visit an elephant sanctuary
who: a 15-year-old high school student
what: information about donating to a local elephant sanctuary and a trip
when: January 2012
where: www.free-elephants.com.cv
why: To help fund the student's trip to Africa to visit an elephant sanctuary
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.
help please im not sure what this means T^T
Answer:
14
Explanation:
What do the Brainly points do? sorry im new here and i dont know how to internet rn .-.
also you get points for this i guess :)
Answer:
Hii, Welcome to brainly!
Explanation:
Basically, if you have points, you can ask your own questions. If you answer people's questions, you get points. You can also get leveled up by points. (or ranks) For example, Beginner is starts from 0 points and 0 brianliest. Then there's Helping Hand. You can get helping hand by having 100 points. Then there's Ambitious which starts off with 250 points. You can get Brainliest when you answer someone's question and they think you answered with the best answer. You also get points when you get Brainliest. One way to earn many points is by doing any challenges. The first challenge is to answer 5 questions in 48 hours/2 days and you get 50 points. There's a lot to learn about brainly i didn't cover all of it but i hope this helps!
Walt needs to ensure that messages from a colleague in another organization are never incorrectly identified as spam. What should he do?
A.Configure a safe recipient.
B.Configure a blocked sender.
C.Configure a safe sender.
D.Do nothing.
Answer:
C. Configure a safe sender
Explanation:
It’s dabest thing to do
As per the given scenario, Walt should need to configure a safe sender. The correct option is C.
What is configuration?A system's configuration in communications or computer systems refers to how each of its functional elements is organised in relation to their nature, number, and distinguishing features.
Configuration frequently involves picking the right hardware, software, firmware, and documentation.
A person, group, or organisation that starts the communication is known as the sender. The success of the message stems primarily from this source.
The communication is influenced by the sender's experiences, attitudes, knowledge, competence, perspectives, and culture.
Walt must take care to prevent messages from a colleague in a different organisation from ever being mistakenly classified as spam. He ought to set up a secure sender.
Thus the correct option is C.
For more details regarding configuration, visit:
https://brainly.com/question/13410673
#SPJ2
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.
Ji-Woo is helping a supervisor create a database of all employees. The supervisor points out that there is more than one person with the same name, and there are concerns about their records getting confused. Ji-Woo explains that every database record will have a unique ____ to identify it.
A.
primary key
B.
query
C.
table
D.
field
Answer:
I think that option A is the correct answer.
Answer:
Explanation: Primary key
ill give Brainliest!!!!! I REALLYYY NEED HELP
i have to do journals for computers, and its a free topic....... make a topic and give me a four sentence journal PLSSSS this question Worth 28 points too
Answer:
Topic: Alexander the great
Alexander was born in July 356 B.C. to Philip II and his wife, Queen Olympias.He was tutored by a philosopher named ‘Aristotle’,he taught Alexander about medicine, philosophy, morals, religion, logic, and art.His full name is ‘Alexander ||| of Macedon’.He died on June 323 B.C and people still don't know how he was killed.A lot of people say that he was killed by poison but nobody really has proof.But despite him being killed he was famous for being the King of Macedonia and conqueror of the Persian Empire. He was a great military leader in fact he is one of the BEST known
How do you think computers have helped to improve documentation, support and services within the healthcare industry.
Answer:
It can help in many ways, like telling your phone that your there to tell the workers to get ready, you don't need to hire a worker cashier anymore but you will need power for it speakers and radios and lights can help you see inside of the area technology has helped us with many things.
Explanation: