Answer: A; X coefficient
Explanation: Hope I helped out !
-Carrie
Ps. it would mean a lot if you marked brainliest
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)
Choose the best function for the purpose. You need a collection to grow. Once you have all the data values, you will pass the collection to a function for processing. You will store a set of data that will not change.
Answer:
Static function I think
Explanation:
is this a scam pls tell me????????????/
Yes don't trust at all, I've got that so many times
NO SPAMMERS, ONLY FULL ANSWER
Write true or false, and correct the statement if false:
In Excel:
(a) Excel places the chart in a box at the top-left corner of a worksheet.
(b) In a 3-D chart, four walls and a floor make up the plot area.
Answer:
true
Explanation:
1. If a triathlon is a sport combining three events, what do you think would be the
word for a sport combining five events?
Answer:
The modern pentathlon
Explanation:
The modern pentathlon is an Olympic sport that comprises five different events; fencing (one-touch épée), freestyle swimming (200 m), equestrian show jumping (15 jumps), and a final combined event of pistol shooting and cross country running (3200 m).
who wants to play kahoot
Answer:
Me but I can't
Explanation:
I'm doing homework ☹️
Answer:
+5.lol
Explanation:
How do the text feature help on the text?
Answer:
Text features help you locate important information in a text. Knowing the purpose of the text feature helps you decide at which text feature to look when you want to understand your text better. Organized by purpose, the chart identifies text features and how they help the reader.
Explanation:
What is a drawback to the use of AI?
Answer:
No creativity
Explanation:
One of the biggest artificial intelligence problems is that the sophisticated and expensive processing resources needed are unavailable to the majority of businesses.
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:
Mario forgot to do his book report until midnight the night before it was due, so he used a couple of paragraphs from a book review he found online as part of his report. What sort of ethical violation is he guilty of?
Question 3 options:
A hacking
B data breach
C plagiarizing
D piracy
Answer:
Explanation:
the answer is C
Answer:
c.
Explanation:
he is copying someone else's work that is ILLEGAL
A coworker just sent you a presentation to review. You noticed that she used different types of transitions on the same slide, and the animations and videos were distracting from the topic. Give your coworker advice about guidelines she can follow when using animation, transitions, and multimedia. Be sure to include at least four guidelines. ...- x-x
I stg I can't think of a good answer- x-x
Answer:
1. Make sure they are not overwhelming
2.Maintain the same style of transitions throughout the presentation
3. Keep it down to one animation/video per every 5 slides
4. Focus on the quality of the information rather than the way it is presented
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.
Please help I need to ask you a question...
Answer:
yes ask whatever you want to
Write an algorithm for a program which inputs the lengths a, b and c of the three
sides of a triangle. The program then determines whether the triangle is right-angled
and prints out a message to say whether or not the triangle is right angled. You may assume that a is the longest side. The triangle is right-angled if a2 = b2 + c2
I’m really stuck with this and need help asap
Hello,
Answer:
--//Triangles AlgorithmDeclare the variables of the side of each triangle, in this case, a, b, and c, and input them.
If a^2 == b^2 + c^2
display "This triangle IS right-angled."
Else
display "This triangle is NOT right-angled
Explanation:
The meaning of the word "algorithm" in this situation would be the coding of the program that you are assigned to create. I'll use Python in this. Display, in this case, will mean "print"
Answer:
Triangles algorithm
IF a^2 == b^2 + c^2
then display is to the right
IF it is anything else then display not to the right.
Engineers are problem-solvers who use math, science, creativity and other knowledge and skills to solve problems. They use every possible resource to create the things that they imagine. But engineering is not just inventing. It’s a systematic practice for solving problems. That means that when an engineer encounters a problem, he or she has a system in place for breaking down the problem and trying different solutions. We also use the word “engineering” to describe the building or technology that engineers produce.
Different types of engineers solve different kinds of problems. A mechanical engineer might design a rollercoaster that is fun and safe using knowledge of physics and mechanics, while a civil engineer might design a system for creating highways to connect remote areas of developing countries.
Which of these people is an engineer?
Answer:
this person is an engineer
Explanation: Different types of engineers solve different kinds of problems. A mechanical engineer might design a rollercoaster that is fun and safe using knowledge of physics and mechanics,
blank are defined by how a company interacts with customers and employees
What is this?
Cam and Follower
Lead Screw
Bevel Gears
Rack and Pinion
We have a test on this in 10 minutes and we get this time to finish studying but I have NO IDEA WHAT THIS IS. Please help :D
Answer:
It looks like a Lead Screw
You are in the process of creating a form that will be used to obtain customer contact information. You have two goals: Wrap a box around the fields, and add a field to allow customers to type several lines of comments. Select the correct elements to fulfill these two codes.
To wrap a box around the fields in the form, you can use the HTML <fieldset> element. This element is used to group related form fields together and provides a visual boundary around them. Here's an example of how you can use it:
<fieldset>
<legend>Contact Information</legend>
<!-- Your form fields go here -->
</fieldset>
By using the <fieldset> element and providing a <legend> element inside it, you can create a labeled box around the contact information fields.
To add a field that allows customers to type several lines of comments, you can use the HTML <textarea> element. This element creates a multi-line input area where users can enter and edit text. Here's an example:
<textarea name="comments" rows="4" cols="50"></textarea>
In the example above, the <textarea> element is created with the name attribute set to "comments". The rows attribute determines the visible height of the input area, and the cols attribute determines the visible width. Adjust these values according to your desired size.
By incorporating the <fieldset> element to wrap the contact information fields and adding the <textarea> element for customer comments, you can create a form that fulfills both requirements.
To wrap a box around the fields in the form, you can use the HTML <fieldset> element. This element is used to group related form fields together and provides a visual boundary around them.
<fieldset>
<legend>Contact Information</legend>
<!-- Your form fields go here -->
</fieldset>
By using the <fieldset> element and providing a <legend> element inside it, you can create a labeled box around the contact information fields.
To add a field that allows customers to type several lines of comments, you can use the HTML <textarea> element. This element creates a multi-line input area where users can enter and edit text. Here's an example:
<textarea name="comments" rows="4" cols="50"></textarea>
In the example above, the <textarea> element is created with the name attribute set to "comments". The rows attribute determines the visible height of the input area, and the cols attribute determines the visible width. Adjust these values according to your desired size.
By incorporating the <fieldset> element to wrap the contact information fields and adding the <textarea> element for customer comments, you can create a form that fulfills both requirements.
Learn more about text on:
https://brainly.com/question/29784279
#SPJ1
Which of these lists correctly orders the binary numbers from smallest to largest?
A: 1010,0110,0101,0011
B: 0011,0110,0101,1010
C: 1010,0101,0110,0011
D: 0011,0101,0110,1010
Answer:
The answer is D: 0011,0101,0110,1010
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 function below Missing?
function start() {
A closing square bracket, ]
nothing
A variable
A closing curly bracket, }
Answer:
I think a closing bracket.. sorry if its wrong.
Explanation:
Answer:
i think closing
Explanation:
Using AI to predict future crimes might be considered
bias
fair
helpful
smart
Answer:
helpful
Explanation:
Answer:
I think using Al to predict future crimes might be considered HELPFUL
The first person gets the brainiest!!!
Match the areas seen on the presentation program’s interface with their uses.
A. Placeholder
B. Speaker Note
C. Slide Master
D. Theme
1. default template for any new presentation
2. predefined appearance of a slide
3.used to insert the choice of items on a slide
4. guidelines that assist in delivering the presentation
Where is my Plato/ Edmentum at???
Answer:
1A
2D
3C
4B
Explanation:
:)
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 use of an NDP?
A). identifying pointers at the other end of a network
B). sending an error message if a packet gets lost due to a bad connection
C). finding other computers on the network
D). taking an IP address from a network layer and identifying the associated MAC address
Answer:
Taking an IP address from a network layer and identifying the associated MAC address
Explanation:
Option D
Which tools help the sender review and edit their work before printing? document tools stylistic tools object placement tools block tools
Answer:
Document tools. I could know because I have a keyboarding class that teaches me all about it
hellpppppppppppppppp
Answer:
They can photograph from a safe area away from risks, and close to something they can escape to if something happens.
They can also put their printed photos into a plastic protective bag or case so that they won't be ruined.
maybe if the camera or whatever you were photographing with gets lost or destroyed, you should have the photo files backed up so that you can recover them.
Mark brainliest.
Answer:
I'm answering #2
Explanation:
Hector could have kept some distance from the water tank so he could ensure that he didn't accidently fall in
Hi could someone find me a video or the code to connect a database to my HTML table I am new and I am having trouble with it
Answer:
no
Explanation:
PLEASE HELP!!! What is one game you think would be hard for computers to play? (AI)
Answer:
I would say the game "Go" because it requires intuition to play.
Explanation:
Answer:
I dont play much games but probaly a game you need to think outside of the box for
Explanation:
robots arent creative
If you were programming a robot to respond to touch, the path might look something like this:
touch --> touch receptor --> computer processor--> motor --> movement
Write a similar path showing how the same information would be processed within the human body.