Answer:
She should use Notes pane
Explanation:
Notes pane is for notes only the creator will see.
Answer:
A. Notes Pane
Explanation:
what are four basic properties of waves?
Answer:
Amplitude, Wavelength, Frequency, and Speed.
Explanation:
Amplitude: The maximum displacement of the wave from the centerline (undisturbed position).
Wavelength: The distance from one crest (outer egde of wave) to crest.
Frequency: The number of crests that pass a single point over a unit of time.
Speed: How far the wave travels in a unit of time.
The basic properties of waves are: Amplitude, Wavelength, Frequency
and Speed.
Four basic properties of waves are:
1. Amplitude: The amplitude of a wave is the maximum displacement or distance that a particle in the medium (or the wave itself) moves from its rest position when the wave passes through.
2. Wavelength: The wavelength of a wave is the distance between two consecutive points that are in phase, such as two crests or two troughs. It is measured from one point in the wave to the corresponding point in the next wave.
3. Frequency: The frequency of a wave is the number of wave cycles (complete oscillations) that pass through a specific point in one second. It is measured in Hertz (Hz).
4. Speed: The speed of a wave is the rate at which the wave travels through the medium. It is the distance that a wave travels in a given amount of time.
Learn more about Waves here:
https://brainly.com/question/3381679
#SPJ6
Zachary is writing an article that will be included in a Who is most likely Zachary's audience? pamphlet his school is putting together titled "Guide to Your School Library." Zachary's article will explain how to O students about to graduate from the school find information for a science project. O science teachers O parents visiting the school O students who are new to the school
Answer:
Students who are new to the school.
Explanation:
right on edg2020
Passage:
Zachary is writing an article that will be included in a pamphlet his school is putting together titled "Guide to Your School Library.” Zachary’s article will explain how to find information for a science project.
Question:
Who is most likely Zachary’s audience?
Options:
students about to graduate from the school science teachers parents visiting the school students who are new to the schoolAnswer:
D.) students who are new to the school
Explanation:
This option is correct because when I did the assignment on Edge, I got it right!
Why can't you test a program for run-time errors when it has compile-time (syntax) errors
Answer:
your computer will not allow it
Explanation:
because it is not one of the main dyonostics
what is a technology that exists inside another device called
Answer: embedded technology
Explanation: just took the test
Answer:
AExplanation:
Embedded technology
In double-entry accounting, where should you record money that is leaving your company to pay bills?
A. In the debits column
B. In the credits column
C. In the asset column
D In the cash flow column
Please select the best answer from the choices provided
A
B
С
D
Answer
I think the answer is cash flow
Explanation
Okay, so cash flow if my memory serves correctly, cash flow is the money that is coming in or when you go to pay something, cash asset is money that is in your wallet or in your bank account, cash credit is a temporary loan and I dont really kniw what a debita column is.
Answer:
Its actually
In the credits column
-
Or (B) On edg. E2021
Explanation:
<3
1What kind of rules protect everyone’s rights when we use each other’s content
2What are two example of intelectual property
Answer:
1. Copyright.
2. Songs and books.
Explanation:
A copyright law can be defined as a set of formal rules granted by a government to protect an intellectual property by giving the owner an exclusive right to use while preventing any unauthorized access, use or duplication by others.
For example, when an individual downloads a song owned by any record company without paying a purchase fee, it is a violation of copyright law.
A copyright can be defined as an exclusive legal right granted to the owner of a creative work (intellectual property) to perform, print, record, and publish his or her work. Also, the owner is granted the sole right to authorize any other person to use the creative work.
Hence, copyright is a kind of rules that protect everyone’s rights when we use each other’s content.
An intellectual property can be defined as an intangible creation of the human mind, ideas, thoughts or intelligence. Some examples of an intellectual property are songs, books, poems, technology, design etc.
I WILL GIVE BRAINLIEST TO WHO ANSWERS FIRST AND CORRECTLY.
Use this option to view your presentation as your audience will see it.
File menu
Play button
Slide Show button
Tools menu
Answer:
It's either slide show button or the play button
Explanation:
match each sentence to the type of context clue it represents.
Answer: was willing to help but there isn’t any picture of anything about what each sentence says
If the grade is 60, which action will be executed?
Answer:
Study with tutor
Explanation:
Edgenuity
What kind of money is a gold certificate considered to be?
commodity
fiat
representative
currency
The kind of money a gold certificate is considered to be is: C. representative.
What is a gold certificate?A gold certificate can be defined as a certificate of ownership that is issued by a public treasury and held by the owner of a gold instead of holding the real gold itself.
In the United States of America, a gold certificate is typically issued exclusively to the Federal Reserve System (Fed) by the US Treasury.
In conclusion, the kind of money that a gold certificate is considered to be is representative.
Read more on money here: https://brainly.com/question/25959268
#SPJ5
The kind of money a gold certificate is considered to be is representative. Thus, option C is correct.
What is a gold certificate?A gold certificate can be defined as a certificate of ownership that is issued by a public treasury and held by the owner of a gold instead of holding the real gold itself. In the United States of America, a gold certificate is typically issued exclusively to the Federal Reserve System (Fed) by the US Treasury.
Money is a good that is widely recognized as a means of economic exchange. It serves as the means for expressing values and prices. It is the primary indicator of wealth because it moves from person to person and nation to country, facilitating trade.
Therefore, the kind of money that a gold certificate is considered to be is representative.
To learn more on money, click here:
brainly.com/question/28784237
#SPJ5
full detail about computer and its history
Answer:
The computer as we know it today had its beginning with a 19th century English mathematics professor name Charles Babbage. He designed the Analytical Engine and it was this design that the basic framework of the computers of today are based on. ... It was called the Atanasoff-Berry Computer (ABC).
Explanation:
3.4 Code Practice: Question 2
Answer:
n = float(input("Enter the Numerator: "))
d = float (input("Enter the Denominator: "))
if (d != 0):
print ("Decimal: " + str(n/d))
else:
print("Error - cannot divide by zero.")
Computer hardware is best described as
Computer hardware is best described as any physical component of a computer system that contains ICs, Circuit boards , or any other type of electronic.
6) Sometimes it is difficult to read a piece of code and understand what the code will do. For this reason, you may want to add notes to yourself (or to someone else that may read the code) that show up in the code, but not when you run the program. What are these notes called and what symbol do you use to write them
Answer:
The answer to this question is given below in the explanation section.
Explanation:
The notes that are used in a piece of code to understand the difficulty of coding or for others to read it is called comments.
Comments in code help in understanding the code, they help others to read the code and understand the logic written behind it. Comments also help the programmer to read his code himself for understanding purposes. Comments in coding used for understanding the purpose of code and what the code will do. The comments written in the program cannot execute or shown when you run the program.
Comments in coding/program can be used in two ways in almost all programming languages. You can use comments on a single line and in multiple lines.
To show a comment on a single line, you can use the double backslash "//" .
To make a comment on a single line. for example
//here the calculation start or some other understandable comments.
if the comments are more than one line then you can use "/* */" symbols to write comments on multiple lines
for example:
/* this is the code
that calculate the sum and average of students grades
it also displays the grade in letter
*/
types of computer that we use in our daily life
Answer:
all coumputers
Explanation:
i just like coumputers
what's my favorite color
black
red
purple
yellow
orange
Answer:
.
Explanation:
Why is computer called an information processing machine?
Answer:
A computer is an information processing machine. Computers process data to produce information. The sets of instructions that humans give computers are called programs or software. Computers never lose or misplace information.
hope this helped youuu:)
In a non-linear control structure, the statements are executed depending upon the
Answer:
test condition
Explanation:
Computers that are connected to each other, but not to the internet,
configured according to which network?
plzz this due today
Answer:
The answer to this question is given below in the explanation section.
Explanation:
Computers that are connected to each other, but not to each other - is an intranet.
Because in intranet computers are connected to each other within an organization and don't connect to the internet. In the intranet, computers don't access globally. For example, in banking, the banking system can be accessed within the organization but not from outside as on the internet.
While it is noted that the Internet is a globally-connected network of computers that enables people to share information and communicate with each other. An intranet, on the other hand, is a local or restricted network that enables people to store, organize, and share information within an organization.
How do you change the behavior of the VR Robot?
Answer:
You can not do it
Explanation:
Answer:
To be able you have to change some of the robots codes, within the game.
Explanation:
What key allows you to move to the next line
Answer:
enter
Explanation:
press tab or enter and you will get what u need
Type the correct answer in the box. Spell all words correctly.
Which artistic technique does an artist use to draw images made up of tiny dots?
Katie is an artist. She uses the..............technique to draw images made up of tiny dots.
Answer:
Pointillism is the technique you are looking for
Nina is trying to learn more about how computers work. She has repeatedly read that the motherboard is the "brain” of the computer.
Nina has learned that the motherboard is considered the brain because it
stores all of the computer’s information.
enables the computer to function.
processes the data on the computer.
guides the computer’s activities.
[tex]\huge\boxed{Enables\;the\;computer\;to\;function.}[/tex]
The motherboard is the part in the computer that allows the computer to function correctly. Without it, none of the computer pieces could interact.
Nina has learned that the motherboard is considered the brain because it enables the computer to function, hence option B is correct.
What is the function of the motherboard?The circuit board determines the kinds of storage devices, memory modules, and graphics cards (among other expansion cards) that can connect to your PC. It also distributes electricity from your power supply and links all of your hardware to your processor.
The motherboard of the computer contains the central processing unit (CPU), also known as a processor. It executes commands and is sometimes referred to as the computer's brain. You provide the CPU instructions every time you touch a key, click the mouse, or launch an application.
Therefore, the motherboard is considered the brain of the computer.
Learn more about motherboards, here:
https://brainly.com/question/29834097
#SPJ2
Which of these files is most likely to be a helper file for an application?
library .mov
library. mp3
library. dll
library. png
Answer:
library.dll
Explanation:
Answer:
library.dll
Explanation:
is right trust me
what dose a bios system do?
A family member who hasnít worked with computers before has decided to change jobs. Youíve been asked to explain some of the basics. You begin by explaining the basic idea of word processing software, spreadsheets, databases, and presentation software. You sense that the following question is coming: ìWhy so many different things? Why canít there just be one software that you could use for everything?î How would you answer?
There are too many diverse forms of media. For all of them to be suited under one program would make every server monotonous and pretty much the same. With different programs, different forms of diverse media are created.
A programmer created a piece of software and wants to publish it using a Creative Commons license. Which of the following is a direct benefit of publishing the software with this type of license?
A
The programmer can ensure that the algorithms used in the software are free from bias.
B
The programmer can ensure that the source code for the software is backed up for archival purposes.
C
The programmer can include code that was written by other people in the software without needing to obtain permission.
D
The programmer can specify the ways that other people are legally allowed to use and distribute the software.
Answer:
The answer to this question is given below in the explanation section. However, the correct answer is D.
Explanation:
This question is about publishing software under a creative commons license. The direct benefit of publishing the software under commons creative license is that the programmer can specify the ways that other people are legally allowed to use and distribute the software.
Because under this type of license, the publisher can publish their work under copyright law. So they can control and specify the ways that how other people can use and distribute it legally.
While other options are not correct, because of its programmer responsibility that source code is free from error and bias, take backup for archival purposes. People can't include anything without obtaining permission etc.
The direct benefit of publishing the software with this type of license is option D.
The following information should be considered:
It is the programmer that represent the ways where the other people are permitted for using and allocating the software. Also under this license, the publisher could publish the work as per the copyright law.The source code should be free from error & bias, backup for archival purpose, without giving the permission represent the responsibility of the programmer.Therefore we can conclude that the correct option is D.
Learn more: brainly.com/question/22701930
Describe any five modern application areas
of computer
Answer:
Some of the application areas of computer are banking, education, industries, entertainments, hospitals, data processing etc. ... and also online education. Different types of entertainment fields such as multimedia, film making with animation, graphics, audio and visual design are done with the help of computer.
Employees at the Red Bluff Golf Club & Pro Shop have the opportunity to become certified trainers if they log enough hours. Aleeta would like to know which of her employees are certified. On the EmployeeAnalysis worksheet, in cell D5, enter a function that will return the text Certified if the number of training hours completed is 50 or more, otherwise return the text Not Certified. AutoFill the function down through cell D9. Club members get a 10% discount off all items in the Pro Shop. Aleeta wants to keep track of these discounts. On the Transactions worksheet, in cell I10, enter a function that will return 0.07 if the customer is a member, otherwise return a blank value (""). Use the fill handle to copy the formula down through cell I30.
Answer:
Following are the solution to this question:
Explanation:
Some of the data is missing in the question, which is defined in the attached file. Please find it.
Follows are the formula which is used in the question:
EmployeeAnalysis Worksheet IF(C5>49,"Certified","Not Certified") Transactions Worksheet IF(F10="No","",0.07)In the first condition, it checks "C5" is greater than 49 if the condition is true, it will give "Certified" otherwise, it will give "Not Certified".
In the second condition, it checks "F10" is equal to "No" if the condition is true, it will give a blank or space otherwise, it will give "0.07".
Which statement best explains the purpose of using online note-taking tools?
Online note-taking tools guarantee better scores on tests.
Online note-taking tools let students take notes quickly and easily.
Online note-taking tools tell students exactly what they need to study.
Online note-taking tools turn disorganized notes into organized notes.
Answer:
B
i did the instruction
Explanation:
The statement which best explains the purpose of using online note-taking tools is that Online note-taking tools let students take notes quickly and easily. Thus, the correct option for this question is B.
What is an online note-taking tool?An online note-taking tool may be characterized as a type of software tool that significantly allows users to capture, store, and manage voice and text notes on different devices.
It makes note-taking convenient and accessible and allows you to write and study flexibly. Unlike other note-taking apps, you can view documents and take notes at the same time on one screen.
The primary purpose of note-taking is to encourage active learning and to prepare study materials for exams. Developing note-taking skills should help you organize information into an understandable format that will assist in your studying process.
Therefore, the correct option for this question is B.
To learn more about Note-taking tools, refer to the link:
https://brainly.com/question/18546670
#SPJ2