You can make artboards in non-rectangular shapes.true or false

Answers

Answer 1

Answer:

true

Explanation:

they could be square

Answer 2

Answer: false

Explanation:


Related Questions

After a new technology is purchased, what are some additional costs that must be incorporated into an upgrade budget?

Answers

Answer:

Depends

Explanation:

If corprate then education,

if home then premium software,

if school educational software.

HOPE THIS ANWSERS YOUR QUESTION

IF NOT, MESSAGE ME!

Steve Jobs described early computers as “the most remarkable tool that we’ve ever come up with..it’s equivalent of a bicycle for our minds.” Would you describe smartphones as a bicycle for our minds?

Answers

Answer:

Here is my stance on the phone issue and a quote from Steve himself.

"I think one of the things that really separates us from the high primates is that we’re tool builders. I read a study that measured the efficiency of locomotion for various species on the planet. The condor used the least energy to move a kilometer. And, humans came in with a rather unimpressive showing, about a third of the way down the list. It was not too proud a showing for the crown of creation. So, that didn’t look so good. But, then somebody at Scientific American had the insight to test the efficiency of locomotion for a man on a bicycle. And, a man on a bicycle, a human on a bicycle, blew the condor away, completely off the top of the charts.

And that’s what a computer is to me. What a computer is to me is it’s the most remarkable tool that we’ve ever come up with, and it’s the equivalent of a bicycle for our minds."

Explanation:

Like anything smartphones, computers, and television can be the junk-food equivalent of our minds or the inspiration to better yourself with knowledge and creativity. To me its like a bicycle in that are you riding the bicycle to healthfoods or mcdonalds. Its the freedom of the transportation of knowledge that can be so life-changing and so life-threating at the same time.

I would not think of smartphones as a bicycle for our minds as they do not run on how my mind functions.

What are people view on the quote above?

Some people do believe that the statement is true. They think also that smartphones and tablets can be a source of big distraction if not handled well.

Smartphones are a good learning tools, or they can be bicycles for our minds only when they are used by a skillful person.

Learn more about smartphones from

https://brainly.com/question/917245

Use the drop-down menus to complete the statements about creating a table of contents in Word 2016.

To use the table of contents feature in Word, a user must have already created
in the document.

The Mark Table of Contents Entry option is used for
marking nonheading text for the table of contents.

On the Table of Contents dialog box, the
button can be used to change font styles.

Answers

Answer:

1.headings and subheadings

2.manually

3.options

Answer: 1.Headings and Subheadings

2.Manually

3.Options

Explanation: Just did it on e2020.

Joann wants to save the building block she created for the title of her company.
In which file does she save this building block?
O Building Blocks.dotx
O Building Blocks.html
O Building Blocks. thmx
O Building Blocks.qpbb

Answers

Answer:

The actual answer is A.

Explanation:

Answer:

a

Explanation:

What does the Merge and Center feature do? Check all that apply.

O adds borders to a group of cells in a range
O centers an image in the middle of a worksheet
O combines multiple cells into a single cell
O centers the alignment of text in the cell
The answer is the last 2 this question just isn't on brainly so I thought i'd add it

Answers

Answer:

O combines multiple cells into a single cell

O centers the alignment of text in the cell

Explanation:

wanted the points lol

Answer:

3

4

Explanation:

How these technologies influence the user experience and knowledge?

Answers

Answer:

I don't know

Explanation:

Technology can help us study and stuff yet we can still look up the answers. It also allows to know what's happening in the world around us like if a girl gets kidnapped, we get Amber Alerts on our phones about the missing girl. Most of us people today have learned about George Floyd's death on the internet through technology. Technology doesn't really influence us as much as help us out but for some people it can cause us to change under the influence of seeing other people and how they dress and act and stuff.

? Assessment
8/10
Which of the following products likely include Internet of Things (IoT) connected
devices?
A soap dispenser that dispenses soap
when it detects a hand underneath.
A smart toilet flushes automatically
after use.
Lights that turn on when someone
enters the bathroom.
None of the above

Answers

Answer:

none of the above

Explanation:

What does this loop that uses a range function do?

for i in range(7, 15)
print("goodbye")

O It prints "goodbye" 8 times, numbered from 7 through 14.
It prints "goodbye" 9 times, numbered from 7 through 15.
O It prints "goodbye" 9 times.
O It prints “goodbye" 8 times.

Answers

This code will print "goodbye" 8 times

Answer:

B. It prints "goodbye" 9 times, numbered from 7 through 15

Explanation:

A financial manager was completing an annual report that contained multiple graphs explaining the company growth. If she wanted to cross-reference these graphs throughout the document, she should use the _____ feature. biliography citation caption footnote

Answers

Answer:

Caption

Explanation:

because it just works.

What is computer. Write full form of mips​

Answers

Answer:

Stands for "Million Instructions Per Second." It is a method of measuring the raw speed of a computer's processor. ... The MIPS measurement has been used by computer manufacturers like IBM to measure the "cost of computing." The value of computers is determined in MIPS per dollar.

Question 12 (1 point)
Generally, each pixel in an image creates 25 bytes of data.
True
False

Answers

Answer:

This is B: False

Explanation:

Each pixel of an image creates 24 bits, or 3 BYTES of data for color, and 1 byte for black and white.

which are the two alternatives for pasting copied data in a target cell groups

Answers

Answer:

Excel has decided to paste contents into a single cell, rather than keeping data in columns. When copying from a query in SQL that has data in a table, pasting it into Excel would normally split the data into the columns - keeping the table. But Excel has automatically changed and takes out the table, pasting each row into one cell.

Explanation:

Bill has several workbooks open, and he would like to see them all side by side on the screen. Which option on the
Arrange All menu should he use?
Tiled
Cascade
Horizontal
Vertical

Answers

Answer:

tiled

Explanation:

Write a while loop that replaces every occurrence of “cat” in the message with “dog” using the indexOf and substring methods.

Given:
public class ChallengeReplace
{
public static void main(String[] args)
{
String message = "I love cats! I have a cat named Coco. My cat's very smart!";

// Write a loop here that replaces every occurrence of "cat"
// in the message with "dog", using indexOf and substring.






}
}

Answers

Answer:

Complete the program using:

int index = message.indexOf("cat");

while(index != -1){

message = message.replace("cat","dog");

index = message.indexOf("cat");

}

System.out.print(message);

}

}

Explanation:

The line gets the index of string "cat"

int index = message.indexOf("cat");

The following operation is repeated until all occurrence of "cat"s has been replaced with dog

while(index != -1){

message = message.replace("cat","dog");

index = message.indexOf("cat");

}

This prints the new string

System.out.print(message);

}

}

The program illustrates the use of loops.

Loops are used to perform repetitive and iterative operations.

The code segment where comments are used to explain each line, is as follows:

//This gets the index of "cat" in the string message

int index = message.indexOf("cat");

//The following loop is repeated, until there is no occurrence of "cat" in the string

while(index != -1){

//This replaces "cat" with "dog"

message = message.replace("cat","dog");

//This gets another index of "cat" in the string message

index = message.indexOf("cat");

}

//This prints the new string

System.out.print(message);

}

}

At the end of the loop, all occurrence of "cat" are replaced with "dog".

Read more about similar programs at:

https://brainly.com/question/20461017

Which option ensures that a page break is automatically inserted ahead of a specific paragraph or heading?

the Page Breaks Before option in the Paragraph dialog box
the Keep With Next option in the Paragraph dialog box
the Keep Lines Together option in the Paragraph dialog box
All of the above options are correct.

Answers

Answer:

All the above options are correct

Answer: d

Explanation:


You should structure the
first before you search for a relevant picture.

Answers

Answer:

True

Explanation:

What are the seven phases of design plans and the main features of designer-client communication at each phase?​

Answers

In order to design a project there exists seven phases of design as the client needs to communicate in each phase.  

The first step is to study the client in brief. This can be done by setting goals that will enlighten your project. Step two is to research in order to understand the project so that you can need to understand the history and culture. Example analysis of your audience. The step is to brainstorm, that is to research, the client, industry, and audience. The fourth step is to sketch ideas that help put to visualize elements and save time. The fifth phase is concept development that is a 3-5 design based on the needs of the project. The sixth phase is the revision phase that is to conclude your design that meets the goals and needs of the project. In the last completion that is fully understood look forwards to the client.

Learn more about the seven phases of design plans and the main features of the designer.

brainly.com/question/25151017.

Question 2 of 5

Which detail from the story is part of the rising action?

O A. Mr. White is sorry he ever wished on the monkey's paw.

O B. Mr. White wishes his son were back in the cemetery.

C. The author establishes that the story begins on a cold, wet night.

O D. Mr. White pulls the monkey's paw from the fire.

SUBMIT

Answers

Answer:

D. Mr. White pulls the monkey's paw from the fire.

Explanation:

Rising action refers to the events in the stories that bring suspense and interest. It includes the crucial decisions and important events that leads towards the climax of the narrative. Rising actions focuses on the flaws that the characters possesses and create a space of tension.  

In the story, "The Monkey's Paw" the rising action is observed when Mr. White pulls the monkey's paw from the fire to make the third wise respectively.

Answer:

Mr. White pulls the monkey's paw from the fire.

Explanation:

what are the weakness of a computer somebody plzz tell me​

Answers

Answer:

The computer, in spite of its strengths and the denials of its missionaries, does have a number of weaknesses. These can be seen in three areas: first, the machine itself, second, the people who serve it and, third, its output.

What is an Odometer (Driver's Ed)

Answers

Answer:

It's the thing that indicates the total number of miles the car has been driven.

Explanation:

I hope this helps!

Answer:

an instrument for measuring the distance traveled (as by a vehicle)

Explanation:

Hope this helps! <3

how major is the technology problem in the United States? Why is it such a big problem?

Answers

Answer:

Explanation:

the problem is predators can get to children easier through the internet

For your biology class, you will be giving a presentation of the findings of a plant growth experiment. Which application is best suited for this presentation?


Writer or Word


Impress or PowerPoint


Notepad or Paint


Calc or Excel

Answers

Answer: Powerpoint

Explanation: Easy to give graphs and add pictures. You can also add shapes to create a bar graph if needed.

Answer:

Calc or Excel

Explanation:

Please help, Tech class!!

Answers

Answer:

Explanation:

1=A

2=A

3=A

4=True

5=A

6=D

7=D

8=B

9=True

10=C

The way things are arranged on a publication is referred to as the _____.

style
guides
layout
scheme

Answers

Answer: I’m pretty sure it’s layout

A data unit created at the transport layer by UDP is a _____.


A. segment

B. packet

C. datagram

D. frame

Answers

Answer:

A datagram

Explanation:

Protocol data units for the Internet protocol suite are: The transport layer PDU is the TCP segment for TCP, and the datagram for UDP. The Internet layer PDU is the packet.

Answer:

I think it's Datagrame

Explanation:

When would you use the Reading View in Word?

To add an image to the document
To have Word Online read the document to you
To make changes to the document
To read the document without any distractions

Answers

Answer:

D: to read the document without any distractions

To read the document without any distractions is used in the reading View in Word. Thus, option D is correct.

What is an Inference?

This refers to the deductions or conclusions that are made about a particular thing or idea based on available evidence, background information and powers of conclusion.

Hence, we can see that from the given text, Nicholas Carr is quoted as saying that reading online makes people to be 'mere decoders of information.' and this makes people become less engaged as they tend not to use their ability to interpret texts less and less.

Based on the given text, it can be seen that Nicholas Carr believes that reading online makes people not connect as deeply as reading without distraction, which can be an inference, to offline reading.

Therefore, To read the document without any distractions is used in the reading View in Word. Thus, option D is correct.

Learn more about document on:

https://brainly.com/question/27396650

#SPJ2

This feature allows you to adjust your view to see the lower or upper part of a document.

A.Command

B.Ribbon

C.Scroll bar

D.Tab

Answers

Answer:

C. scroll bar

Explanation:

Its what you use to scroll up and down on documents to see different parts of it

Why is it important to proofread your documents ?

Answers

Proofreading can make sure that your document is completely free from errors to a high standard.

Answer:

It's important to proofread your documents to make sure that you don't have any avoidable mistakes.

Explanation:

Avoidable mistakes include grammar, sentence structure, and word choice.

One day you tap your smartphone screen to turn it on, and nothing happens. It appears to be turned off and will not turn on. What should you try first to fix it?

perform a soft reset

plug it into a charger for an hour
submerge it in a bag of rice for 24 hours
perform a hard reset

Answers

Answer:

B) Plug it in

Explanation:

Though the other answer would be helpful in a real life situation, the correct choice on ed g e is b) :)

plug it into a charger for an hour

What are the four types of technical drawing?​

Answers

Answer:

3D drawings (isometric perspective)

exploded-view 3D drawings

complete working drawings

detail drawings (2D orthogonal projections)

diagrams

Other Questions
Which best explains why the sun maintains its size and shape?A. Pressure caused by high temperatures are balanced by gravity.B. The sun burns from its core to its surface.C. Forces exerted by orbiting planets cause the sun to rotate. Elizabeth was the daughter of Henry VIII andCatherine Parr HURRRY PLZZZ I. NEED SO MUCH HELP IM SO CONFUSED Melissa made some chocolate pudding. For every 3 cups of chocolate, she added 7 cups of milk. The ratio of chocolate to milk in Melissas chocolate pudding is ____. 3 7 over 3 3 over 7 7 Fill in the blanks to explain what glowworms are? Lake Sales had $2,200,000 in sales last month. The contribution margin ratio was 30% and operating profits were $180,000. What is Lake's break-even sales volume Do these side lengths make a triangle? 6, 10, 15 Compare and contrast the works of Christine Federighi and Daisy Youngblood.Consider how the work is made and the mood of the pieces project. express 2.65 as a mixed number in the lowest terms Whats the circumference of a circle object that's 2 meters ? Jared would describe a square as having four equal sides and four right angles. This is Jareds __________ of a square. A. model B. hierarchy C. feature D. concept Please select the best answer from the choices provided A B C D Solve the equation for x 6x-18-3x Sam invested a total of $25,000. His first earned 5%interest and the other earned 6% interest. If Sam earned $1280interest in one year, how much did he invest in each investment? HELP WITH WAS/WERE GUYSSSS How does this image help the reader to understand seismographs? How do citizens participate in community service Which number is equal to 10^3 Complete each exchange about two brothers, Marc and Thomas, with the adjective that is opposite in meaning to the one used in the question. Use each adjective only once. Four adjectives will not be used:-amusant -goste-grand-optimiste -sensible-travailleur-chic-fatigu-heureux-pauvre-sympathiquePlease helppp!!!! How did the leaders of the Age of Enlightenment think about the relationship between peace and justice and the monarchy?A. Peace and justice occur only when a king or queen rule according to the social contract.B. Peace and justice are only possible in a world ruled by strong figures of authority.C. Peace and justice are the sole responsibility of the king or queen to maintain.D. Peace and justice are not possible in a nation ruled by a monarch. A system of two linear equations is consistent and dependent. What is true about the graph of the equations?A.The lines are the same.B.The lines are parallel, but have different intercepts.C.The lines intersect. D.The lines are perpendicular.Please select the best answer from the choices providedABCD your friend claims that because you can find the distance from a point to a line, you should be able to find the distance between any two lines. Is your friend correct? Explain your reasoning.