Answer:
Click the “Insert” tab, then click the “Chart” button on the Illustrations section to open the “Insert Chart” pop-up window.
Select the type of graph to add to the document, such as a pie chart or bar graph. ...
Click “OK” and Word adds a chart with generic data points to the document.
Explanation:
A hard cover book is _______bound.
a. case bound
b. hard back
c. textbook
d. glued
Answer:
I think it's hardback.
Explanation:
¯\_(ツ)_/¯
Answer:
hard back
Explanation:
A hardcover is also referred as hardback and sometimes a case bound which is I think in those books that are hardcover but have a paper thingy that rip easily around it.
A credit given to an author for his or her work is called a(an)
Citation.
Any other related questions you want answered?
Answer:
citation
Explanation:
Just did it in my online class, and my mom said so to
How does multimedia content enhance a user’s Web browsing experience
Explanation:
The inclusion of multimedia content such as videos, photographs and flash will help you increase your website's graphic feature, but it will also provide your visitors more value from certain pages and provide them a more positive experience, maintaining them mostly on site for something like a prolonged period of time.
Samuel loves playing the violin, but he feels embarrassed after a classmate posts a video on a social networking site making fun of him. What step should Samuel take next to stop the cyberbullying?
1) He should report the incident to the social networking site.
2) He should upload his own video making fun of the classmate.
3) He should convince his friends to cyberbully the classmate.
4) He should add the classmate on his friend’s list and follow him.
Answer:
Number 1 would be the answer and most safest one to choose.
Answer: A. He should report the incident to the social networking site.
Explanation:I just took the test have a good day! :)
Where can I watch yarichin b club lol
i know an app but hwne i try to write it it says inapooripirate...
When you record a macro, you can assign it to run from a button or from the _____.
Keyboard
Home tab
Status Bar
Task Pane
Answer:
Keyboard
Explanation:
A macro is a tool that when you press a single key bind on your keyboard and or mouse it keeps pressing the button until the time on the macro runs out or you stop it.
If a person record a macro, you would assign it to run from a button or from the Keyboard Home.
What is keyboard?A keyboard is known to be a tool that is often used in inputting information such as letters, words, etc., into your computer.
Therefore, If a person record a macro, you would give it to run from a button or from the Keyboard Home.
Learn more about Keyboard from
https://brainly.com/question/13380788
#SPJ9
how do i find the markup percentage
Which of the following statements are true?
A. There has been a decrease in the number of cyber attacks in the past decade.
B. Cybersecurity is the protection of computer systems, networks, and data from digital attacks.
C. Cyber attacks in the past few years have impacted individuals, governments, and organizations.
Answer:
I think the answer are two which are B and C
John’s father specifically asked him to get a magnetic disk from the store in his neighborhood. What should John buy?
Which technology is most often used to update parts of a web page without reloading the whole page
Answer:
It's AJAX I think
Explanation:
Help!! Its not working at all and idk what to do!
Answer:
1st. Let the teacher know
2nd. Check your internet
3rd. Make sure all other tabs are closed
Explanation:
This always helps me I hope it helps you too !! :3
If you’re paid hourly and work 40 hours in one week how much overtime have you worked? 8 hours none $48 or $80
Answer: You said 40 Hours. So $40
So, Isn't it $48, Because How Do You Get 80?
Answer:
$80.
Explanation:
Just go with it.
Suppose users share a 1-Gbps link. Also, suppose each user requires 200 Mbps when transmitting, but each user only transmits 30 percent of the time.
a. (5 pts.) When circuit switching is used, how many users can be supported?
b. (5 pts.) For the remainder of this problem, suppose packet switching is used. What is the maximum number of users that can be supported if the required blocking probability is strictly less than 0.05 and what is the blocking probability with the determined maximum number of users?
Answer:
The answer is "5 users and 1 block".
Explanation:
In Option a:
Bandwidth total [tex]= 1-Gbps \times 1000[/tex]
[tex]= 1,000 \ Mbps[/tex]
Any User Requirement [tex]= 200 \ Mbps[/tex]
The method for calculating the number of approved users also is:
Now, calculate the price of each person for overall bandwidth and demands,
[tex]\text{Sponsored user amount} = \frac{\text{Bandwidth total}}{\text{Each user's requirement}}[/tex]
[tex]=\frac{1000}{200}\\\\=\frac{10}{2}\\\\= 5 \ users[/tex]
In Option b:
[tex]\text{blocking probability} = \frac{link}{\text{1-Gbps} = 10^9 \frac{bits}{sec}}[/tex]
[tex]\ let = 0.05 = \frac{100}{20} \\\\\text{blocking probability} = \frac{ 200 \times 10^6}{\frac{100}{20}}[/tex]
[tex]= \frac{ 200 \times 10^6 \times 20 }{100}\\\\= \frac{ 2 \times 10^6 \times 20 }{1}\\\\= 40 \times 10^6 \\\\[/tex]
mean user [tex]= 25 \times \frac{1}{20} \\\\[/tex]
[tex]= 1.25[/tex]
max user [tex]= \frac{10^9}{40 \times 10^6} \\\\[/tex]
[tex]= \frac{10^9}{4 \times 10^7} \\\\ = \frac{10^2}{4} \\\\ = \frac{100}{4} \\\\= 25 \\\\ =\ \ 1 \ \ block \\\\[/tex]
Which symbol is used to indicate that a formula may contain an error?
A. green triangle in upper-left corner of cell
B. an orange circle below the formula result
C. green triangle with question mark inside
D. a wavy purple arrow above the formula result
Answer:A.
Explanation:
Just had this question if is A
Answer:
its A they right
Explanation:
Instructions
Write a loop that input words until the user enters STOP. After each input, the program should number each entry and print in this format:
+1: You entered
When stop is entered, the total number of words entered should be printed in this format:
All done. words entered.
Sample Run
Please enter the next word: cat
*1: You entered cat
Please enter the next word: iguana
#2: You entered iguana
Please enter the next word: zebra
#3: You entered zebra
Please enter the next word: dolphin
24: You entered dolphin
Please enter the next word: STOP
All done. 4 words entered.
i = 0
while True:
user_input = input("Please enter the next word: ")
if user_input == "STOP":
break
i += 1
print("#{}: You entered {}".format(i,user_input))
print("All done. {} words entered.".format(i))
First we set i equal to zero so that we can keep track of how many words we input.
We set while True so that its a continuous loop until a certain condition is met to break out of the loop.
user_input is set equal to whatever word the user enters.
our if statement tells us to break out of the while loop if the user inputs "STOP"
If the user does not enter STOP i is set equal to itself plus 1. This just means we add one to i for every new word entered.
Then we print whichever word is entered.
After the while loop, we print All done and the quantity of words entered.
Answer:
word = input("Please enter the next word: ")
count = 0
while word != "DONE":
count += 1
print("#{}: You entered the word {}".format(count, word))
word = input("Please enter the next word: ")
print("A total of " + str(count) + " words were entered.")
Explanation:
Assuming this is python, this should help!
Match the internet services to the type of communication they provide.
I have the answer to the question being asked well explained in detail in the doc attached below. Kindly check the attachment.
Questions_ Match the internet services to the type of communication they provide.
I hope this helps
BTW PLATO
Explanation:
What is Boolean algebra
Answer:
Boolean algebra is a division of mathematics that deals with operations on logical values and incorporates binary variables.
Explanation:
A program is written to prompt the user and accept input until a negative value is entered. What is the common term for this special value?
A persuasive letter should begin with
facts and examples
a clear statement of position
expert opinions
counterarguments
Answer:
B.) A clear statement of position
Select the steps in configuring an Internet connection
A) Find Network and Internet on the Control Panel.
B) Select Connect to existing network.
C) Change networks every time you need to connect in the future.
D) Click on Set up a new connection and connect to the Internet.
A for sure. You have to go into CP and edit options in there. If you want a plain answer, click the wifi icon in the bottom right.
What is the difference between the Internet and the World Wide Web? Explain in your own words.
Answer: the World Wide Web is just one common area for information exchange, facilitated by global computer networks — or the Internet. (hope this helps)
Explanation:
where do you place the title tag in HTML
Answer:
The title tag is basically your saved document
Save as and poof
High Hopes^^
Barry-
state two functions of windows environment
Answer:
idonoheheheheheuhiiikv
Identify these devices based on whether they provide the user with input or output, or both.
Monitor
Projector
Touchscreen
Mouse
Keyboard
Answer:
Monitor - Output
Projector - Output
Touchscreen - Both
Mouse - Input
Keyboard - Input
Explanation:
What is the function of napier's bones
Answer:
Calculation of products and quotients of numbers.
Explanation:
Napier's bones is a manually-operated calculating device created by John Napier of Merchiston, Scotland for the calculation of products and quotients of numbers. The method was based on lattice multiplication, and also called 'rabdology', a word invented by Napier.
I’m buying a prebuilt pc once I get it and set it up, what do I need to install on it?
Please try and solve this
How many 1/4 - inch divisions would there be in 1/2 inch?
How many 1/8 - inch divisions would there be in 1/4 inch?
How many 1/16 - inch divisions would there be in 1/4 inch?
Answer:
Many students coming into Woodworking 108 are bewildered by “all those little marks ... Parts of an inch will be referred to in fraction form instead of its decimal equivalent. ... on divisions of 2: 1” 2= ½”. ½” 2= ¼”. ¼” 2= 1/8”. 1/8” 2= 1/16”. 1/16” 2= 1/32” ... way is to realize there are 16/16 in an inch and count back 3 of the 1/16 ...
Explanation:
VNNH in py story format?
Answer:
LIBBY
Explanation:
open ended format
what are the component s of computer ❓
Answer:
Depends which one are looking to build like gaming, work etc?
Explanation:
gaming there's the Motherboard, Cpu, Ram, Gpu, Power supply, ssd, memery and other stuff I can't remember
Answer:
Monitor, pc, box thing, keyboard, souls, and fbi codes so they can hack ur computer.
Explanation:
My life is a lie, reality is an illusion, have a fan-fudgeing-tastic day.
Sorry couldn’t bring down both group of answers
Answer:
the second one
Explanation:
check your URL