Select the correct answer.
Jeff has created a table to calculate the cost of raw materials that he purchases monthly. Cell A2 shows the fixed cost of the raw material (3). Column D lists the
quantity (number of units) that Jeff purchased each month. What formula can Jeff use in E2 to calculate the monthly cost of the raw material that he can copy to all
the rows below?
1 Monthly rate
2
3
4
5
6
7
Month
Jan
Feb
Mar
Apr
May
Jun
D
Number of units Cost
10
8
12
13
10
15
ОА.
=A2*D2
B.
=$A2 D2
ОС.
=$A$2*$D$2
D. =$A$2*D$2
E.
=A$2*D2

Select The Correct Answer.Jeff Has Created A Table To Calculate The Cost Of Raw Materials That He Purchases

Answers

Answer 1

Answer:ell A2 shows the fixed cost of the raw material (3). Column D lists the quantity (number of units) that Jeff purchased each month. What formula ..

Explanation:


Related Questions

what type of error occurred with the code below??

Answers

Answer:

ValueError

Explanation:

The string 'five' holds characters that are not numeric, meaning it will raise ValueError since the function int() does not accept arguments that are strings with characters that are not numbers/numeric.

Hope this helps :)

What is lossless compression

Answers

Answer:

Lossless compression means that as the file size is compressed, the picture quality remains the same - it does not get worse. Also, the file can be decompressed to its original quality.

Explanation:

hope this helps

please brainliest

Answer:

a class of data compression algorithms that allows the original data to be perfectly reconstructed from the compressed data.

Explanation:

some one please tell me how to change my name on here?

Answers

Answer:

I have no idea I need points though

Sierra needs to ensure that when users are entering data into a datasheet or form that they are limited in the values they can select. Which option should she use as the data type?

Lookup list
Bound value
Short-text
Date/time

Answers

Answer:

A

Explanation:

edge

Click to review the online content. Then answer the question(s) below, using complete sentences. Scroll down to view additional questions. Online Content: Site 1 When doing career research online, you always want to make sure you are viewing a reliable source, what factors about the website do you want to consider? plz help

Answers

Answer:

You should always look at what they are looking for so that way when you are being interviewed you know what they want immediately. Also, you want to look what positions they are offering.

Explanation:

When talking about careers in designing game art, the unit mentioned that a good portfolio and a clear record of experience in game design boosts your likelihood of employment. Think through all of the different skills you have been learning in this course. If you were given the option to shadow someone using these skills to develop a game, which skills are you most interested in developing right now? What kinds of creations could you add to your portfolio after shadowing someone in this field?​

Answers

Answer:

Explanation:

Many different answerd to this

I dont know what course your taking exactly but i'll do my best <3

Personnally im most interested in balancing in game rewards, balancing AI, or balancing in game currency.

Hmm... I dont really kno what you could add to your portfolio tho. Maybe some things you did that involve what youre interested in doing.

Hope this helps <3

any four features of power point​

Answers

Answer:

Edit, play PowerPoint, add new slide, delete new slide

Explanation:

Answer:

Start With a Built-in Layout. ...

Use Slide Master View to Update Designs Consistently. ...

Use Someone Else's Presentation as a Starting Point. ...

Rearrange Slides for Effectiveness. ...

Follow the Guides. ...

Set Slide Sizes.

What is information associated with a document to help describe that document called?



building blocks
encryption
metadata
templates

Answers

if i am correct, the answer should be C. metadata.

i hope i was able to help!

According to the video, what tasks do Carpenters commonly perform? Select four options. supervising Plumbers, Electricians, and Roofers forming walls and flooring out of concrete cutting, shaping, and fastening wood installing rafters, joists, windows, and subflooring operating heavy equipment setting hardwood floors building kitchen cabinets painting interior walls and cabinets

Answers

Answer:

Cutting, shaping, and fastening wood.

Installing rafters, joists, windows, and subflooring.

Setting hardwood floors.

Building kitchen cabinets.

Answer:

- Cutting, shaping, and fastening wood.

                                   -  Installing rafters, joists, windows, and sub-flooring

-  Setting hardwood floors

                                                                   - Building kitchen cabinets

___________________________________________________________

You want to receive alerts if unusual activity is detected relating to the Web servers deployed in your perimeter network. What should you do

Answers

Answer:

deploy a NIDS

Explanation:

The best thing to do in this scenario would be to deploy a NIDS which stands for network intrusion detection system. This system basically warns you when it detects any harmful data trying to bypass the perimeter network in which it has been deployed. This also refers to any form of cyber attack such as malware, DoS attacks, spyware, etc. Anything that may cause any damage or perform unwanted actions on the system are detected and raises an alarm.

What is DRAM AND SRAM

Answers

Explanation:

Dram=dynamic random access memory

SRAM=static random access memory

Answer:

dram and sram

Explanation:

To add text to a blank slide layout, _____.

Answers

..........................................................................
i think double click?

identify the type of error described

Answers

Answer:

ZeroDivisionError

ValueError

Explanation:

ZeroDivisionError occurs when you attempt to divide a number by [tex]0[/tex].

ValueError occurs when the argument passed into a function holds the wrong value. In this case, the string is not numeric which cannot be passed into the float() function.

Hope this helps :)

Select the correct answer.
What helps the project team to identify the latest software build?
A.
defect
B.
version number
C.
test plan
D.
test environment
E.
hardware

Answers

Answer:

B version number

Explanation:

What would be the best phrase to place in the blank
center circle?
O Attributes of a struggling student
O Attributes of a highly motivated student
O Attributes of an overwhelmed student
O Attributes of a highly frustrated student
This graphic organizer shows strategies related to
motivation.
Sets
goals
Adjusts
attitude, if
needed
Uses a
reward
system
Avoids
burnout

Answers

Answer:

Attributes of a highly motivated student

Explanation:

Which tool can be used to substitute one picture for another picture on a slide?
O Crop the Picture
O Reset the Picture
O Change the Picture
O Compress the Picture

Answers

Answer:

Change the picture

Explanation:

Got it right on edge ☑️

Answer:

C

Explanation:

plzz help me plzzz help me
its very important​


plzzz..........

Answers

Answer:

import java.util.Scanner;

public class Main {

 public static void main(String[] args) {

   Scanner scan = new Scanner(System.in);

   while (true) {

     System.out.print("Enter a year (0 to exit): ");

     int year = scan.nextInt();

     if (year == 0) break;

     boolean leap = false;

     if (year % 4 == 0) {

       if (year % 100 == 0) {

         leap = (year % 400 == 0);

       }

       else {

         leap = true;

       }      

     }

     System.out.printf("%d is%s a leap year.\n", year, leap ? "":" not");

   }

 }

}

PYTHON
How can I make a algorithm in python that finds how many numbers are in a row in a list?

For example:

Input:
List = [0,1,1,1,0]
num = 1

Output:
3

Answers

Answer:

This is one of the efficient ways to find the number of occurrences of a given number in a list:

def find_num(arr,n):    return len([count for count in arr if count == n])print(find_num([0,1,1,1,0],1))

If you want a simpler version, you can try this:

def find_num(arr,n):    count = 0    for i in range(len(arr)):        if arr[i]==n:            count += 1    return countprint(find_num([0,1,1,1,0],1))

This is the simplest method:

arr = [0,1,1,1,0]print(arr.count(1))

I think I gave you enough examples. This should get you started off easily.

If you need an explanation, I am happy to help you. BTW I started python 6 months back so even I am pretty new to this.

Explain how there can be different pathways in one career cluster. Use two examples from the text.

Answers

Answer:

...

Explanation:

Career Clusters identify the knowledge and skill learners need as they fellow a pathway toward their career goals. Pathways are grouped by the knowledge and skills required for the occupations in these career fields.

What are characteristics of an effective study space? Check all that apply.
good lighting
O uncomfortable seating
disorganized area
Ofree from distractions
O comfortable temperature

Answers

Answer:

Good lighting

0Free from distractions

The characteristics of an effective study space are as follows:

Good lighting.Free from distractions.Comfortable temperature.

Thus, the correct options for this question are A, D, and E.

What do you mean by Effective study space?

Effective study space may be defined as a type of study space that should have an appropriate amount of learning space for students to be able to accomplish their work. It is the place that is utmostly favorable for students in order to perform their work with their full focus.

An effective study space is only made when it has certain characteristics. It basically includes a good lighting source, free from distractions, and a comfortable temperature for the body. Characteristics like disorganized areas, uncomfortable seating, full of distractions, etc. are not favorable for an effective study space.

Thus, the correct options for this question are A, D, and E.

To learn more about An effective study space, refer to the link:

https://brainly.com/question/8821867

#SPJ6

How do you write a paragraph in a paper? Check all that apply.
- by writing a topic sentence
-by writing a concluding sentence
-by identifying the purpose the paragraph will serve
- by making certain there are sufficient supporting details
- by using transitions to link ideas
-by making certain the paragraph supports the thesis statement

Answers

Answer:

by writing a topic sentence.

Answer:

All of them

Explanation:

Question 2 If you are deploying applications in your Pods that need persistent storage, which controller type should you use

Answers

Answer:

"StatefulSet" is the right response.

Explanation:

StatefulSet seems to be an API teaching load instrument that is used to start managing stateful implementations.

Maintains or controls the integration as well as balancing of such a series of Pods but mostly generates a sort of assurance on the placing an order but rather distinctiveness of certain Pods.Like some kind of Implementation, a StatefulSet did maintain pods that have been predicated on the same type of receptacle.

Critical Thinking Questions
1. Choose a game in which something about the art style or motif reflects a culture from a different geopolitical region than the one in which the game was developed Name both the developer's culture (to the best of your knowledge) and the culture of the thing being referenced. In the global market, what would be some of the advantages and concerns of referencing cultural artifacts from outside your own culture?
2. Rate the following games from LEAST to MOST abstract Modern Warfare Pac Man Asteroid Explain how you came up with your ranking
3. Choose a 3D game and discuss the textures used in the game levels Classify at least three textures as tiled or bespoke and explain what led you to your conclusions
4. Think of a 2D game you enjoyed recently Did it use vector graphics or bitmap graphics? How do you think the developers made their decision between which style to use-beyond the consideration of scalability?
5. Consider all of the visuals you see in a typical game. What artistic task was NOT described in the unit--something some artist had to design and implement but which wasn't listed as a specific role or career option. Which kind of artist do you think performs that design task?

i need help badly ​

Answers

Answer:

Explanation:

1) Assassins Creed Valhalla. The developers (ubisoft?) is canadian i think. The culture of ACV is of the vikings. Some advantages would be many people could learn about viking culture but some concerns is since it may not be the developers culture some information could be wrong and many people could be misinformed

2) personally i would put them in the order of Asteroid, Pac Man, then modern warfare.

this is all i really know sorry

but i hope this helps <3

Answer:Assassins Creed Valhalla. The developers (ubisoft?) is canadian i think. The culture of ACV is of the vikings. Some advantages would be many people could learn about viking culture but some concerns is since it may not be the developers culture some information could be wrong and many people could be misinformed

Explanation:

Clues
Bella Finished sometime after Ace but didn't come in last.
Firelight finished right before Rodeo.
King Kong isn't the slowest runner, but he slower than Bella.
What order the horse finish the race?

Answers

Answer:

I think it goes Ace,Bella,Kingkong,Firelight,Rodeo.

Explanation:

Which is an advantage of using a flat file instead of a relational database?
O A flat file is easier to set up.
O It is easier to assign foreign keys to a flat file.
A flat file reduces storage of redundant data.
O A flat file reduces storage of irrelevant data.
Hurryyyyyy plssssss

Answers

Answer:

The answer to this question is given below is the explanation section.

Explanation:

"A flat file is easier to set up" This option is correct

The advantages we will examine is a flat file is easier to setup.A flat file system can be viewed from any number of application making is very accessible. user will also have very little difficult with understanding the data because each record contains all available about a given flight.simple queries and storing should be no problems for most flat file based systems.

Answer:

a

Explanation:

edge

Consider the following code:
C = 100
C = C + 1
C = C + 1
print (c)
What is output?

Answers

Answer:

The output of C is 102.

100 + 1 + 1 = 102

What is the scope of numC?

def usernameMaker (strFirst, strLast):
return strFirst + strLast[0]


def passwordMaker (strA, numC):
answer = dogName[0:3]
return answer + str(numC)

# the main part of your program that calls the function
username = usernameMaker ('Chris', 'Smith')
dogName = 'Sammy'
favoriteNumber = 7
password = passwordMaker (dogName,favoriteNumber)

Options
the entire program

usernameMaker

passwordMaker

# the main part of your program that calls the function

Answers

Answer:

local scope which is the entire body of the function/method that it is being used in

Explanation:

The variable numC has a local scope which is the entire body of the function/method that it is being used in, which in this scenario is the passwordMaker method. This is because the variable numC is being used as a parameter variable for that method, meaning that a piece of information is being inputted by when the method is called and saved as the variable numC which is then used by the lines of code inside the method, but cannot be accessed from outside the method thus.

Answer:

The answer is passwordMaker

Explanation:

Edge 2020.

what are the differences between online class and offline class?​

Answers

online class Direct on and compute

Offline class go to school

The main difference between online and offline learning is location. With offline learning, participants are required to travel to the training location, typically a lecture hall, college or classroom. With online learning, on the other hand, the training can be conducted from practically anywhere in the world.

Explain Bitmap graphics and Vector graphics.
Please help
FASSTTT!!!!!!!!!!!!!!!!1

Answers

A bitmap (also called "raster") graphic is created from rows of different colored pixels that together form an image. ... Rather than a grid of pixels, a vector graphic consists of shapes, curves, lines, and text which together make a picture.

JAVA

Write a program to display the first ten terms of the series:
5, 10, 17, --------------​

Answers

Answer:

class Main {  

 public static void main(String args[]) {

   int a = 5;

   int delta = 5;

   for(int i=0; i<10; i++) {

       System.out.printf("%d, ", a);

       a += delta;

       delta += 2;

   }

 }

}

Other Questions
A 1000 kg car moving at 108 km/h jams on its brakes and comes to a stop. How much work was done by friction? what are the two main organs involved in the respiratory system? Can you help me out with 3 and 4 pls When your motivation is intrinsic, the process is more important than the __________.resultweight lossmindsetBy comparing yourself to a standard of fitness, you will be able to see your natural ____________ and where there is room for improvement.hobbiesstrengthsinterestsInformation gives you the ____________ to change your body and your life.powerabilityexcitementYour ____________________ is the number of beats per minute your heart needs during a workout.resting heart ratemaximum heart ratetarget heart rateIf you want to make something official, _____________!write it downvisualize ittell a friendA state of being conscious, or aware, of something is called ________________.activationmindfulnessmotivationFlexibility is earned through regular ____________ and ____________.effort and practiceeffort and determinationhard work and new gym clothes Let X denote the total snowfall in the Twin Cities in December of a given year, measured in centimeters. The five-number summary for X is given by:Min. Q1 Median Q3 Max.0.0 8.4 17.4 30.9 85.3What is the most likely value for the mean of X?a) 15.2b) 21.9c) 53.9d) 4.9 A recipe for a loaf of bread calls for 2/3of a cup of flour. If Milo used 12 cups of flour, how many loaves of bread did he prepare? Kate where are you???? which is an example of non-renewable energy source?a. petroleumb. Solar energyc. wind energy d. geothermal energy For the president to be removed from office, the House of Representatives must begin an inquiry that may result in _____.A.Articles of ImpeachmentB.Articles of the ConfederationC.Articles of the ConstitutionD.Articles of Replacement How did communication cause the roman empire to fall What was the primary motivation for American pioneers to travel to the Southwest? 13. Contrast endothermic and exothermic reactions (Unit 1).14. _______________ are the basic unit of matter. (Unit 1)15. _________________ are pure substances made up of only one type of atom (i.e. hydrogen H) while __________________ are pure substances that are made up of two or more types of atoms in a specific ratio (i.e. carbon dioxide CO2). (Unit 1)16. When a _______________ change occurs, the resulting substances have new/different properties. (Unit 1)17. Contrast erosion and weathering. (Unit 2)IF YOU DON'T HAVE THE ANSWER DON'T ANSWER also answer all if you can PLZ HELP!!!!!!Read the excerpt from Esperanza Rising.Mama reached up and stroked the back of her head. She seemed embarrassed. "I . . . I figured out that I can't wear a hat with my hair on top of my head. And this makes more sense, does it not? After all, I am going to work today, not to a fiesta."What phrase does the author use to describe Mamas feelings?A. I cant wear a hat with my hair on top of my head.B. She seemed embarrassed.C. Mama reached up and stroked the back of her head.D. I am going to work today, In The Deserted Village the poet emphasizes the loss of the village by saying that _____. Review this timeline of Foot Binding in China. Which statement below best illustrates continuity and change over time regarding the practice of Chinese Foot Binding.Before 500 AD Chinese foot binding was not common practice500 AD A Tang Emperor was infatuated with a dancer in the court and her small feet; foot binding became the rage among women of the court960-1269 Foot binding became more popular in the court and among ladies of the upper class1368-1644 Foot binding reached its height during the Ming dynasty; its popularity spread to the lower classes except for peasant women who had to work1644-1911 An early Qing Emperor outlawed foot binding, but his decision was unpopular & revoked by another Qing Emperor1911 Foot binding was officially banned in China, but many girls in rural areas still had their feet bound for decades after the ban was issuedWhich statement best illustrates continuity and change over time regarding the practice of Chinese foot binding?A.It started about 2000 years ago, it was recently outlawed, and it is no longer practiced today.B.It became popular during the Tang dynasty, but the practice declined during Ming times and was outlawed in 1911.C.It started in the Ming dynasty and ended in the Qing dynasty, only a few Chinese women were affected by the practice.D.It started during the Tang dynasty, reached its height in the Ming dynasty when many Chinese women except for the lowest classes endured the practice. It was outlawed in 1911, but still practiced in rural areas for decades. the process of which cells make proteins is called protein what? this is a fill in the blank! HELLLLPPPPPP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!Identify the direct object in each of the following sentences: A. He saved his money. B. ... even recess was an inconvenient part of his school day ... What slope would make the lines perpendicular? y = 4x + 2 y = -x + 2 Enter the number that belongs in the green box. What enables us to capture data from human and natural systems? PLEASE HELP!!!!!!!!!!!!!!!!!!!P.S. put 5 options hhhhhhhhhhhhhhhhhhhhhhhhhhhhheeeeeeeeeeeeeeellllllllllllpppppppppppppppppp Steam Workshop Downloader