Answer:
Body
Font
Highlighting
Indentation
Explanation: just did it on edge
who is the first man to find biology
Answer:
Thomas Beddoes
Explanation:
One easy way to tell if a cell contains a formula instead of data is to click on the cell and look at the formula bar to
see if it
A. contains a number.
B.contains any parentheses.
C.begins with an equal sign.
D.begins with an operator.
Answer:
C.. begins with an equal sign.
Explanation:
EDGE2021
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
23 24
Computing
L2 - Review the sentences below and fill in the blanks using the
list of words provided.
To connect together different devices, you need cables. The cables carry the messages sent between machines
communicating with one another. The most common type are called 'Ethernet cables'. The cable is made up of a
number of copper wires and has the ability to send data in_both directions.
A
connects a number of computers together within the same room or building. This means that each computer
does not need to have its own dedicated connection to every other computer in a network, which reduces the
number of needed.
A is often described as a powerful computer that provides services. One example of a service that it can
provide is shared access to such as text, images, sound, or
List of words: cables, server, files, video, hub, both
11
Click to add speaker notes
Answer: 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
Explanation: x1
3
Select the correct answer.
What must a person who wants to join an online discussion group do first?
ОА. .
Email the group's moderator.
OB.
Register with the group.
O C. Reply to at least one message.
OD.
Pay a membership fee,
Reset
Next
Answer:
B. Register with the group.
Explanation:
A person who wants to join an online discussion group would have to first register with the group.
Basically, a user who is not registered with a web or local computer-based platform is considered to be a guest user and as such this user do not have the ability to post comments (messages) in its discussion group. Therefore, to have the exclusive rights and permission to participate in contributing to an online discussion group, a user must be registered with the platform as a bonafide member.
After the registration is complete, the user will have a user account (profile) which comprises of his login credentials i.e username and password.
Many digital libraries have much more information than traditional libraries
Answer:
However, despite 10 great breakthroughs of 2018 in technology, traditional libraries are still around – the British Library in London, the Library of Congress in Washington, D.C., the New York Public Library, the Bavarian State Library and many more which you can find in the list of 25 most famous libraries of the world. Although they don’t shy away from implementing some of the novelties into their structure and organization – all of them have quick access to the Internet. Well, why is it so? Is it going to keep that way? Just like in case with any other topic, making predictions is an ungrateful task, for the world is most likely to develop in the least predictable way – just like it always does. Let’s look at the ‘battle’ between digital and traditional libraries.
Explanation:
It is true that many digital libraries have much more information than traditional libraries.
What is digital library?A digital library is a database of digital objects available online that may comprise text, still photos, audio, video, digital documents, or other digital media forms.
It is also renowned to as an internet library, an online library, a digital repository, or a digital collection.
Since they are not constrained by physical space and may hold enormous volumes of digital information in a very tiny physical footprint, digital libraries frequently have a lot more material than traditional libraries.
This means that compared to traditional libraries, digital libraries have a significantly greater capacity to store books, journals, articles, and other sorts of data.
Thus, the given statement is true.
For more details regarding digital library, visit:
https://brainly.com/question/30485183
#SPJ2
Your question seems incomplete, the probable complete question is:
State true/false
Many digital libraries have much more information than traditional libraries
Help !! -- Please ....................................................................................................
Answer:
1. Prompt user for input and get length and store in L
2. Prompt user for input and get width and store in W
3. Perform calculation p = 2LW and print out result
your one output statement should occupy two lines in your program
Answer:Use \n in your print function after text to keep writing in the next line
Explanation:
For example,
print("first line \n second line")
output would be:
first line
second line
what file format should you not use for website photos?
JPEG
GIF
PNG
BMP
Will give Brainliest.
Use the drop-down menus to complete the statements about message flagging.
The (Flag message, Add flag, Follow up) command is used for message flagging.
When you “flag” a message, it will display as a task with a flag icon in the (Reading pane, To-Do bar, Events list).
Flagged messages can be customized by renaming the task, adding a due date, and setting (Colors, Reminders, Sort order).
Clicking (Mark complete, Unflag message, Remove flag) will remove the flagged message/task from the To-Do list.
Answer:
Use the drop-down menus to complete the statements about message flagging.
The
✔ Follow up command is used for message flagging.
When you “flag” a message, it will display as a task with a flag icon in the
✔ To-Do bar
.
Flagged messages can be customized by renaming the task, adding a due date, and setting
✔ reminders
.
Clicking
✔ Mark Complete
will remove the flagged message/task from the To-Do list.
Explanation:
Answer:
1. Follow up
2. To-Do bar
3. reminders
4. mark complete
Explanation:
The follow up command is used for message flagging.
When you "flag" a message, it will display as a task with a flag icon in the To-Do bar.
Flagged messages can be customized by renaming the task, adding a due date, and setting reminders.
Clicking mark complete will remove the flagged message/task from the To-Do list.
what are 3 most common Operating systems
Answer: Microsoft Windows, Mac OS X, and Linux
Explanation:
Is this the answer you want or is it something else?
Answer:
Microsoft Windows, MacOS, Linux
Explanation:
These are the most common types.
In which of the following situations would parallel systems MOST likely be used to help analyze data?
A. Data analysis involving two or more columns of data
B. Data analysis involving both string and numeric data
C. Data analysis involving large datasets
D. Data analysis that could result in two or more different types of visualizations
Answer:c
Explanation: big data
The wrong choice description can be defined as follows:
In option A and Option B both are wrong because it doesn't include data columns and string and numeric value.In Option D it is wrong because it not used in visualization.Learn more:
brainly.com/question/14843342
I'm trying to move the figure a little away from, the column line and every time I move it and click ok it goes back to being beside the line like the others below
Answer:
Try to click the center button layout.
Explanation:
The visitor's age is stored in the variable age, the day of the week is stored in a variable day, and the price in dollars is stored in the variable price. Which piece of code will correctly decide the price for each ticket.
Answer:
If a museum charges different prices based on the day of the week and age of the visitor. The pricing rules are shown below.
- On Tuesday and Thursday children 10 and under get in free ($ 0).
- For all other days and ages the cost is ten dollars ($ 10).
The code in python is;
if (day == 'Tuesday' or day == 'Thursday') and age <= 10:
price = 0
else:
price = 10
Explanation:
The logic of the algorithm suggests that that the conditional if-statement assigns zero to the price variable if the day variable is either Tuesday or Thursday and the child's age is 10 or below but assigns 10 to the price variable if the condition is not met.
2x=y t-09 3xX=v 8x0=?+ 87-6x5=
Answer:
6
x
3
+x
2
+2x
Explanation: