Which of the following might a small local bakery hire a multimedia artist to do? (Select all that apply).
design a new line of cupcakes
create advertising
design a menu
create digital ordering systems

Answers

Answer 1

Answer:

B and C

Explanation:

Multimedia artists create art, they do not program or do the cooking for the business.


Related Questions

Randy is concerned about his company’s data security on the Internet. Because cellular signals are not encrypted, he is concerned that the new smartphones given to the sales department will allow a breach. Randy has decided the company needs a more secure way to allow the sales department to connect to the company network over the Internet. What should Randy deploy to allow the sales department to connect to the company network securely over a cellular data signal?

Answers

Answer:

By using a virtual private network (VPN)

Explanation:

If Randy deploys a virtual private network (VPN), it will give the sales department online privacy since VPN encrypt connections whenever the sales department connects to the company network over the Internet. A VPN for the sales department is very necessary to use over a cellular data signal to ensure the department's overall digital defense, and it also has other uses.

The National Archives is part of the federal government, which means that its content:

-belongs to everyone.

-is off limits to the public.

-comes with extreme licensing fees.

-is outdated and useless.

Answers

Answer:

belongs to everyone.

Explanation:

A National Archive can be defined as the collection of data (informations) and documents by the government of a particular country for record keeping purposes.

Basically, these documents comprises of information about important and historical events that have happened in the country or events generally related with the country.

Hence, the National Archives is part of the federal government, which means that its content belongs to everyone. This is simply because the federal government is a government of the people, for the people and by the people. Thus, the ownership of governmental institutions or agencies belongs to the general public i.e the citizens of the country.

Don't Answer if you are going to give me a link! Don't Waste My Points!

An image is considered a portrait if the person is looking into the camera lens.

A.
True

B.
False

Answers

Answer:

Hello there! :) It could be considered a portrait but that is not exactly what a portrait is.

Explanation:

A portrait is mostly considered a painting or drawing of someone that that same person has drawn. For example, a portrait of the Mona Lisa would have been her drawing/painting herself. Now someone just looking at camera lens would'nt exactly be true, it would be false so the answer is B. False

Hope this helps!

Answer: False

Explanation: I don't know 100%, but it wouldn't make sense if it was because the person can be really far away and still be looking at camera, as well as be looking slightly away from lens and it still look like a portrait.

PLEASE BE CONFIDENT ABOUT YOUR ANSWER


Which of the following statements is FALSE?
the value of the ID attribute....

a. may not start with a number
b. must be unique within each document
c. must not start with a special character
d. should be lowercase?

Answers

Answer: d. should be lowercase.

Explanation:

ID attributes are case sensitive for the most part - DOM and Java Script - which means that the ID attribute does not always have to be lowercase.

It can be uppercase as well. ID attributes can also start with a number and as of HTML 5 can start with a special character as well. Finally, the ID attribute must always be unique within each document.

Answer:

d. should be lowercase?

Explanation:

Hope this helps

Choose the correct color to complete the sentence.
It is generally understood that
Blank is the best color choice for a global audience.

Answers

Answer:blue is the best color choice for a global audience.

True or False: Nested elements must be indented with respect to parent elements in
order for the code to be properly displayed in a browser

Answers

Answer:

true

Explanation:

9.6 Code Practice, this is in Python, I need its quick!

Answers

Answer:

def printIt(a):

   for r in range(len(a)):

       for c in range(len(a[0])):

           print(a[r][c], end = " ")

       print(" ")

   print(" ")

   

   for r in range(len(a)):

       x = a[r][r]

       for c in range(len(a[0])):

           a[r][c] = x

           

   for r in range(len(a)):

       for c in range (len(a[0])):

           print(a[r][c], end = " ")

       print(" ")

   

N = []

N.append([1, 2, 3, 4, 5])

N.append([1, 2, 3, 4, 5])

N.append([1, 2, 3, 4, 5])

N.append([1, 2, 3, 4, 5])

printIt(N)

Explanation:

<3

In this exercise we have to have knowledge in python computational language to write code like:

The code can be found in the attached image.

What is an Array?

Widely used by programmers, array is a simple data structure present in most programming languages. Its main purpose is to be a continuous space in memory to organize and store a collection of elements.

This code can be written as:

N = [1,1,1,1,1], [2,2,2,2,2], [3,3,3,3,3], [4,4,4,4,4]

def printIt(ar):

for row in range(len(ar)):

for col in range(len(ar[0])):

print(ar[row][col], end=" ")

print("")

N=[]

for r in range(4):

N.append([])

for r in range(len(N)):

value=1

for c in range(5):

N[r].append(value)

value=value + 1

printIt(N)

print("")

newValue=1

for r in range (len(N)):

for c in range(len(N[0])):

N[r][c] = newValue

newValue = newValue + 1

printIt(N)

See more about python at brainly.com/question/18502436

Where is information stored in the computer?​

Answers

Answer:

files

Explanation:

data is stored in files

The decimal equivalent of the product of 1011 and 1100 is

Answers

Answer:

132

Explanation:

We convert each number to base 10 (decimal) and multiply.

So 1011₂ = 1 × 2³ + 0 × 2² + 1 × 2¹ + 1 × 2⁰

= 1 × 8 + 0 × 4 + 1 × 2 + 1 × 1

= 8 + 0 + 2 + 1

= 11₁₀

1100₂ = 1 × 2³ + 1 × 2² + 0 × 2¹ + 0 × 2⁰

= 1 × 8 + 1 × 4 + 0 × 2 + 0 × 1

= 8 + 4 + 0 + 0

= 12₁₀

So, 1011₂ × 1100₂ = 11₁₀ × 12₁₀ = 132₁₀

So, the decimal equivalent of the product of 1011 and 1100 is 132

Don't Answer if you are going to give me a link! Don't Waste My Points!

Keisha is working with a furniture company to take branding photographs for their website. The furniture is fun, brightly colored, and meant for children’s rooms. What props should Keisha bring to get the best branding photographs for the company?

A.
some cups of steaming espresso and linen napkins

B.
adult clothing and dark, heavy curtains

C.
her camera equipment

D.
children’s toys and brightly colored rugs

Answers

Answer:

D. Childrens Toys and brigh colored rugs

Explanation:

It is because they mentioned that it was for children and they already have bright furniture, so it only makes sense.

Which of the following is true of a procedure? Check all that apply.

It can be reused.

It saves programmers time.

It is a block of code that performs a single task.

It lets you exit a function.

Answers

Answer:

It can be reused, It saves programmers time, it is a block of code that performs a single task.

Explanation:

WHERE THE SMART PEOPLE AT??????


PLEASE I NEED HELP

THIS IS MY LAST QUESTION FOR THE TEST

PLEASE

I KNOW THE ANSWER IM JUST MAKING SURE


You can use tables for layout work. However, in XHTML, each form control should have its own ______ element

a. method

b. textarea

c. label

d. fieldset

Answers

Answer:

I would say A. Method

Explanation:

.

Any tips or tricks I can use on my phone?​

Answers

Answer:

What phone you got mate? I'm interested

Answer:

No ffrjrirrjj dudjddiejejej

does trend in computing important for organization management?​

Answers

Answer:

yes it is...................

Ryan is installing new flooring in his house. Ryan can install 169 square feet of flooring in 5 hours. How much new flooring can Ryan install in 35 hours?

Answers

Answer:

1183 square feet.

Explanation:

If Ryan can install 169 square feet in 5hours.

Then, he can install times 7 of that in 35 hours since 35 / 5 = 7

So, 169 x 7 = 1183

Dose anybody know how to do this because i dont.

Answers

Answer:

All you need to explain in this assignment is specific things which makes a product an innovationi or new. This is what emerging means in the first question. Then say why these new technologies can be hard to identitfy.

Explanation:

To print preview a document, navigate to the _____ tab and select the Print option. File Page Design View Insert

Answers

Answer:

Option A

Explanation:

The process of viewing the print preview option in MS word is as follows -

a) First of all click on the File tab

b) After clicking on file tab, click on the print button at the left hand side

c) In the new tab that open up after clicking on the print button will provide an option of print preview.

Hence, option A is correct

Answer:

b. page layout

Explanation:

Do Not Answer If You Are Going To Give Me A Link! DONT WASTE MY POINTS!!
Choi is trying out for a reality show on television. The application requires a self-portrait. Choi is setting up a self-portrait but wants to get her whole body. How might Choi BEST take a self-portrait that looks professional enough to submit?

A.
She could stand in front of a mirror holding her phone to take the photo.

B.
She could hold up the camera and take a selfie pointed down toward her body.

C.
She could use a self-timer to allow herself to get into position for the shot.

D.
She could ask her friend to take a photo of her as she stands against a background.

Answers

Answer:

My answer may be right nor wrong

A.

Answer: D seems like a good answer because she has a background behind her and it's a full body photo so i will say d looks more professional

Explanation:

The following if statement tests the rainfall in New York’s Central Park during the months of June, July and August.

if (low <= rain && rain <= high)
System.out.println("Rainfall amount is normal.");
else
System.out.println("Rainfall amount is abnormal.");
It could be replaced with:
I.

if (rain >= low)
{
if (rain <= high)
System.out.println("Rainfall amount is normal.");
}
else
System.out.println("Rainfall amount is abnormal.");
II.

if (rain >= low)
{
if (rain <= high)
System.out.println("Rainfall amount is normal.");
else
System.out.println("Rainfall amount is abnormal.");
}
else
System.out.println("Rainfall amount is abnormal.");
III.

if (rain >= low)
System.out.println("Rainfall amount is normal.");
else if (rain <= high)
System.out.println("Rainfall amount is normal.");
else
System.out.println("Rainfall amount is abnormal.");
I only
II only
III only
(II or III)
I, II or III

Answers

Answer:

II only

Explanation:

In the original code, both conditions of low<=rain and rain >= high must be met for the print message to be executed. This is denoted by the && logical operator.

The code in II does the same thing. It first checks that the low <=rain condition is true; then it goes on to check if the rain >= high condition is true as well before the "normal" print statement can be executed. But if either of the condition is not true, it prints "abnormal" because both conditions must be true.

What are some common summary operations that aggregate functions can perform in a crosstab query? Check all that apply.
adding
counting
dividing
subtracting
identifying an average
calculating a minimum or maximum
predicting the next value in a pattern.

Answers

Answer:

adding

counting

identifying average

calculating max or min

Explanation:

edg 2021

The invention of computers as a technological tool has completely changed our lives. Name any three areas to support this statement and explain how computers have made our lives better

Answers

Answer:

-They allow huge amounts of information to be stored in a small space

-They also allow a person to calculate mathematical problems with ease

-They allow people to communicate with one another through internet sites

-Finally, computers provide teachers and students the means to communicate quickly via email. Online grading systems also make it easier to view and audit a student's progress

Hope i helped!

Tell me what does WSG mean ​

Answers

Answer:

It could mean many different things but heres some things it could

With Special Guest

World Standard Group

Web Security Guard

Hope this helps!

What is media logic according to David L. Altheide?

Answers

Answer:

Media logic is discussed as a general framework for understanding the nature, impact and relevance of media and information technologies for social life, as well as its use and appropriateness for investigating political communication. (According to David L. Altheide)

Explanation:

PLS HELP IM SO DESPERATE!! 40 points


Consider how you would help your Uncle Sandro diagnose the location of the problem and offer a likely solution in the following scenario:

Uncle Sandro has a computer. It is an older model. He calls you in as his tech-savvy nephew and asks if you could help him. It seems like data that is traveling across his computer is getting corrupted, and there is not a clear source. He asks you what the problem is and how he might fix it.

Answers

You would reboot the computer install a VPN and a virus detector

Answer:

1 reboot the computer

2 install a VPN and  virus detector

Explanation:

explain types of fans & their function​

Answers

Answer: 1. Ceiling Fan: As they are suspended into the middle of the room, they transfer air in equal quantity.

2. Table Fan: Used in small purpose office room and home tables for max. 5 people.

3. Tower Fan: Take lesser space, compact and portable, used to maintain and encourage air flow.

4. Pedestal/Stand Fan: Used in rooms with larger space, make less sound, are portable and used in a single room at a time for up to 10 people.

5. Exhaust Fan: Used in bathrooms and kitchens to provide ventilation and remove any odour or smoke.

               

Explanation:

What tool do you use to fill a cell with color?
Sort
Fill Color
Bold
Function bar

Answers

to fill a cell with Color you will usethe fill Color tool

So I got a question when I ask a question some people send me a link that seems weird in their answer you can't put links in your answer so is it a grabify link to track my IP?

Answers

Answer:

dw just ignore it

Explanation:

its just stoopid kids or people just ignore it

and think positive like elmo

Answer:No I don't think so hope u have a great day

Explanation:

P16 Consider the following network. ISP B provides national backbone service to regional ISP A. ISP C provides national backbone service to regional ISP D. Each ISP consists of one AS. B and C peer with each other in two places using BGP. Consider traffic going from A to D. B would prefer to hand that traffic over to C on the West Coast (so that C would have to absorb the cost of carrying the traffic cross-country), while C would prefer to get the traffic via its East Coast peering point with B (so that B would have carried the traffic across the country). What BGP mechanism might C use, so that B would hand over A-to-D traffic at its East Coast peering point?

Answers

Solution :

Considering the following data :

[tex]$\text{ISP B}$[/tex] provides the national backbone to the regional [tex]$\text{ISP A}$[/tex].

[tex]$\text{ISP C}$[/tex] provides the national backbone to the regional [tex]$\text{ISP D}$[/tex].

Each of the ISP consists of one autonomous systems (AS).

[tex]$\text{ISP B}$[/tex] would like to hand over the traffic of C through the [tex]$\text{West}$[/tex] Coast.

The [tex]$\text{ISP C}$[/tex] would like to receive traffic from B's peering point via East Coast.

One way for [tex]$C$[/tex] to force [tex]$B$[/tex] to hand over all of [tex]$B$[/tex]’s traffic to [tex]$D$[/tex] on the east coast is for [tex]$C$[/tex] to  only advertise its route to [tex]$D$[/tex] via its east coast peering point with [tex]$C$[/tex].

what is data? why is it important to collect data ? explain the points.​

Answers

Answer:

so i dont know if u mean like science or math but like there similar. so data is the results and information you get when you do experiments. It is important to collect it so it can back up your reasons and points. It also helps us advance and become smarter.

Explanation:

What market was technology designed to appeal to?

Answers

Answer:

Explanation: Technology has transformed marketing by making campaigns more personalized and immersive for people and creating ecosystems that are more integrated and targeted for marketers. And it's not just the interface between brands and people that have been transformed.

Other Questions
What is the most important thing that the Himalayan mountains provide to the people around? Shelter Oxygen Water Sarah has decided to write a speech about her favorite animals, dogs. She narrows her topic to training dogs and decides the purpose of their speech will be "How to train your dog."Sarah brainstorms a list of questions about her topic.1. Who are some famous dog trainers?2. Are there different styles of training?3. What are the most important things to teach your dog?4. Why should you train your dog?5. How do you teach your dog to sit?6. How to teach your dog to stay?7. How to teach your dog to lay down?8. How to teach your dog walk on a leash?9. How to teach your dog to come?10. What do you need to start training?After eliminating the unnecessary questions, Sarah knows she has to combine some topics if she only wants to have 5 main points. Which questions should Sarah combine?a. 5 and 7b. 6 and 10c. 4 and 5d. 9 and 10Please select the best answer from the choices provided. The base of a rectangular prism has an area of 18.25 inches and the height of the prism is 4.5 inches. What is the volume of the prism? HELP Give the slope ofleach line. Also, state if the lines are parallel (yes or no). Erin has $52 to spend at the florist. She wants to buy a vase for $11.75 and several roses for $3.50 each. What are the possible numbers of roses Erin can buy?____+____ r__52r __ ____Erin can buy up to ___ RosesWhat properties did you use to solve the inequality? Critiquing falls within the evaluation process of thinking. In this assignment you will practice high-order thinking skills at the evaluating level by writing a movie critique. Once you have selected a movie, write a 500-word report evaluating the entertainment value you experienced for each of the movie components below. Again, this is not a professional movie critique. The goal is to evaluate and express your personal entertainment level in the following areas:StoryPlotMain CharactersPlausibilitySpecial Effects Find the mean of theses sets of numbers 2, 5, 8, 0, 5 you will get a loan from a bank for $5000. The interest rate will be 8% and the loan will be for 3 years. You will need to calculate the total amount that you would be paying back to the bank.If you were to get a 10% pay increase, write and solve an equation to show how many hours you would need to work to pay for your trip? If x = 9 units, y = 3 units, and h = 8 units, find the area of the rhombus shown above using decomposition. Help me please please How was the federal court system created? How was the position of planet Uranus predicted? It is given that yvaries directly as x. If y= 5 when x= 4 determine the constant of variation, How did the success of the American Revolution influence the FrenchRevolution?A. It allowed French military officials to seize advanced weapons andseek power.B. It resulted in the deaths of many French aristocrats who supportedthe monarchy.C. It led to a U.S. invasion of France intended to overthrow the Frenchking.D. It demonstrated that citizens could overthrow a king and establisha democracy would n-3/n+3 cancel out? 1:This diagram shows four different dishes on the kitchen shelf.tea cupIN2:bowl50 Nmug10 NplateSON3:9994:Which of these dishes has the least potential energy?bowl5:platemug6:tea cup Deku to bakugo o shinpu suru hito Find -4- 2 1/2. Model the expression on the number line by drawing an arrow I'm giving 30 points for this one If I have the coordinats (4, 3) and (2, 2) what is distance do we get The amount of heat energy needed to heat 200 g of water from 15 C to its boiling point, and boil it, is