Answer: g what are you talking ab
Explanation:
Any netflix recomendations?
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
If you were creating a program that would convert Fahrenheit to Celsius, which kind of variable would you want to use? a string an alphanumeric a float an integer
Answer:
an integer because it is the most common form of the atom and the same way it is used to be used to describe the same type of them
Answer:
^^^^ He is right
Explanation:
What are some machines, places or apparatus that sensors could be used in? Give at least five examples.
Answer:
Sorry
Explanation:
HEY CAN SOMEONE HELP ME OUT WITH THESE QUESTION PLZ THERE DUE TODAY!!!
1. Imagine you came across the following article when searching online to try and solve a disagreement with your friend on the topic. What are two strategies you might use to determine who wrote this information and whether you believe it is credible?
2. Use searching laterally to find more out about obesitymyths.com and if it is credible. Share your findings here.
3.Look at the reference article. The Atlantic is considered a credible source, but this article is a native ad. What do you see on the page that might hint to you that it isn’t credible?
Answer:
i have no idea but i didnt see this until today soooooooooooooo
Explanation:
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.
Why is a repeat command helpful when programming a turtle?
A. it gives input B. it engages memory C. it saves time when writing code D. it rotates objects
Answer:
C. it saves time when writing code
Explanation:
A repeat command (also known as a loop) is a programming statement that allows a block of code to be executed repeatedly for a specified number of times. When programming a turtle, a repeat command can be very helpful because it allows the same set of commands to be executed multiple times without having to write them out repeatedly. This can save a lot of time and make the code much shorter and easier to read.
For example, if a programmer wants a turtle to draw a square, instead of writing out the commands to move the turtle forward, turn right, move forward, turn right again, and so on, they can use a repeat command to tell the turtle to perform those same commands four times. This makes the code much more efficient and easier to read, and can help prevent errors that might occur if the programmer had to write out the same commands multiple times.
Answer:
c
Explanation:
1. Why is it important to know how to create a slide?
2. How can you utilize the knowledge in making a slide as a student?
in own sentence pls
Answer:
1. Because slides help in improving visual aids. It improves understanding when teaching student.
2. You can make projects, shows, teach others, and play with it just for fun
Explanation:
How do you code things to make shapes out of them and add color
Answer:
go to KhanAcademy and search "Coloring with code" and it should be the first thing at the top
Help me ASAP
(100 points for quick reply)
Nights and Dragons—
From the memoir of author Abigail Prynne
1
I sit at my desk listening to thunder growl outside my window. Flashes of light burst through the darkness, and wind races past my window. The thrilling combination of sight and sound conjures up visions of dragons roaring proudly, breathing fire, and soaring across the midnight sky. Dragons first fascinated me when I was a little girl. They have followed me ever since. The magnificent creatures appeared in storybooks I read in the library, paintings I saw in museums, movies I watched in the theater, and the dreams I had in my sleep. By the time I was thirteen, one question consumed me. I wanted to know if dragons ever existed, so I set out on a quest for facts.
2
As I started my research, I discovered many skeptics. Scientists presented evidence to show why dragons could not—and did not—exist. They explained that it would be impossible for dragons to fly because they would be too big. They laughed at the idea of dragons breathing fire. They pointed out that no other animal has ever done this. They said that if dragons had lived, someone would have found remains somewhere in the world. No bones about it, there were plenty of logical explanations. It would have been easy for me to accept that the only place dragons ever existed was in the imaginations of those who believed.
3
I could have given up, but I thought about my grandmother. She always told me that "people who believe that science is the answer to everything are missing out on everything else." With her words in mind, I searched some more. There were many facts that hinted that dragons may not be fictional. I noticed that cultures across the world all described dragons in similar ways. This was odd because they had no way to communicate with each other. I found dragons mentioned in more than just stories. They appeared in old legal papers, in the travel logs of Marco Polo, and in the Bible. I saw that the Chinese calendar uses a different animal each year. Dragons are included along with eleven real animals. I began to believe it was a real possibility that all of these people were talking about a creature that actually existed.
4
With renewed hope that there was some truth to the legends, I looked for new research. I found that some experts disagreed with popular arguments against dragons. They suggested that a dragon could have four stomachs like a cow. If it created stomach gases like birds, it might create enough to lift itself off the ground. This would give it the ability to fly. If it forced out air when diving toward the earth, it might release gases which could ignite into flame. When the animal died, the stomachs would release strong acids that would dissolve its dead body over time. Biologists backed up these ideas with sketches and models based on known animals. Not everyone agreed with these ideas, but many of the things we accept about dinosaurs and other extinct species started the same way.
5
I doubt we will ever truly know whether dragons existed. There may always be two sides to the fiery debate. Some will say the stories come from active imaginations. Some will believe with all their hearts that the legendary creatures roamed our ancient world. I don't know for certain which side to believe, but the sound and fury of a night like this makes me smile. It rekindles my childhood dreams and keeps the exciting possibility alive.
Which best states the main idea of the text?
A.
I have found no proof that dragons ever existed.
B.
I have found some proof that dragons may have existed.
C.
I have always wondered if dragons existed, and I hope they did.
D.
I have not been able to decide if dragons ever existed or not.
Everything that you see on a computer screen is a representation of which of the following?
A.
floats
B.
0s and 1s
C.
database messages
D.
flowchart input
Answer:
B
Explanation:
coding and programming for the computer to something on command (pressing keys etc)
Answer:B
Explanation:
Which line of code needs to be executed before you execute num = random.randint(1,10) ?
A.
create random
B.
import random
C.
import randint
D.
randint = random
Answer:
c
Explanation:
The correct line of code that needs to be executed before num = random.randint(1,10) is option B import random.
The random module in Python provides various functions for generating random numbers, including randint, which is used in the given line of code.
By importing the random module, you make its functions and classes available for use in your code. Therefore, it is necessary to include the line import random before calling random. randint(1,10) to ensure that the randint function is accessible and can be used to generate a random number between 1 and 10.
Learn more about Python on:
https://brainly.com/question/30391554
#SPJ1
WILL MARK BRAINLY
Which of the following is considered proper ergonomics?
Elevating keyboard, so wrists are bent when typing
Placing the mouse close to the keyboard
Resting wrists on the desk while typing
Working on a computer while sitting in a recliner
Answer:
resting wrists on the disk while typing
I'm very confused. Can someone p|z explain what's happening here?
(view screenshots below)
(I drew a cursor on most of the pictures because I can't screenshot with my cursor meaning when I take a screenshot, my cursor will disappear and so I drew the cursor on the pictures so that way you could see where I was clicking)
Answer:
It just means that when you answer questions the person who asked it has to vote you as 'brainliest' so you get points or something but the person who has asked it gets to pick who becomes brainliest
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.
what computer languages should i start with + learn if i want to be a pentester/programmer and where can i learn them
Answer:
Chinese
Explanation:
I'm not sure I understand your question. Good day.
Jason needs to add a picture of his baseball team to the team's web page. Which file format should he use?
ZIP
IMG
JPG
MPG
Answer:
JPG file(s)
Explanation:
JPG are typically used for digital images. Since he's posting this onto a website, he should use the JPG file format.
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
What is the name given to the parts of a computer that you can actually
touch?
Software
Computer Parts
Computer Case
Hardware
Answer:
Hardware
Explanation:
Hardware, is the parts of the computer that you can physically touch. Examples include, the keyboard and mouse.
Hope this helps. <3
Hardware is the name given to the parts of a computer that you can actually touch.
What is Hardware?
The physical components of a computer, such as its chassis, CPU, RAM, monitor, mouse, keyboard, computer data storage, graphics card, sound card, speakers, and motherboard, are referred to as computer hardware.
Software, on the other hand, is a collection of instructions that may be stored and executed by hardware. Software is referred to as "soft" because it is flexible, but hardware is referred to as "hard" because it is rigid in terms of modifications.
Software often instructs hardware to carry out any command or instruction. A useful computer system is one that combines hardware and software, while there are also systems that use simply hardware.
Therefore, Hardware is the name given to the parts of a computer that you can actually touch.
To learn more about Hardware, refer to the link:
https://brainly.com/question/15232088
#SPJ5
What motivated Barbara MBANEFO to become an engineer?
Answer:
to help her community and give hope to others
Explanation:
one word instructions are also known as
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.
Write the importance of software in computer . In 6 points
Answer:
Software is a set of instructions, data or programs used to operate computers and execute important tasks but can also help you work more efficiently.
Uses of Software
Uses of Software in Office.Uses of Software in Business.Uses of Software for Play Game.Uses of Software in Shop.Uses of Software for Entertainment.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.
how do you disable goguardian on a school chromebook?
Answer:
Navigate to Filtering > Configuration > Advanced Config > Scheduling.
Disable the Enable Out of School Mode toggle.
Explanation:
Or just factory reset, but that will get rid of everything.
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!!
Answer:
computer system normally stores characters using the ASCII code. Each character is stored using eight bits of information, giving a total number of 256 different characters (2**8 = 256).
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.
If you want the words “My puppy is a poodle” to appear in the interpreter. What 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: Probably C
(also, C and D say the same thing)
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..
what is the answer i need them now pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls pls
Answer: Insert ribbon > table drop down menu
Explanation:
Answer:Insert ribbon > table drop down menu
Explanation: