Which examples demonstrate common education and qualifications for Manufacturing Production Process Development careers? Check all that apply. Answer: A. Hugo uses CAD software to create a product design. D. Latisha is a Mechanical Engineer with a bachelor's degree. E. Oliver carefully calculates the dimensions of a product.

Answers

Answer 1

Answer:

A D E

Explanation:

I got it right on Edge.

Answer 2

Answer:

A D E

Explanation:

just did the work

:)))))


Related Questions

how do you take a picture on an apple computers

Answers

Answer:

You go to the launcher, then find Photo Booth. Photo Booth allows you to take photos. You can only take photos on the side where the screen is, since there isn't a camera on the back. I recommend taking a picture with a phone instead. For a screenshot, press command-shift-3.

Hope this helps!

anybody wanna be friends?

Answers

i wouldn't mind......

yes Avacado?????????????????????

Users of a _____ database have access through their personal computers linked to local or wide area networks

Answers

Answer:

Company

Explanation:

A company database is a database of a firm or organization that contains the information about the firm's employees, their products, services, and as well their client's and customers' details.

This is often kept on the main database server and arranged and organized by a database administrator.

Hence, Users of a COMPANY database have access through their personal computers linked to local or wide area networks

Why would it be useful to split up the coding for creating an app between multiple programmers? Select 2 options.

greater innovation

greater control over the code.

faster development.

greater consistency between sections of code.

Answers

Answer: c

Explanation:

Answer:

I'd be willing to wager it is A and D but not 100% sure.

Explanation:


8.10 Code Practice Question 1

Write code that takes in two words from user input and stores them in the variables x and y respectively. Then, the programs the values in x and y, and print x and y).

Note: The variable names x and y are required for this question

Answers

x = input("Enter a word: ")

y = input("Enter a word: ")

x,y = y, x

print(x)

print(y)

I hope this helps

Since we need to perform some coding functions such as:

Asking for the input of a numberStoring them as individual variablesPrinting/Displaying the values independently.

First thing we need to do is to declare the unknown variables as x and y

Next would be to write the input this way:

x= input ("Put a word:")

y= input ("Put a second word:")

x,y = y, x

Print(x0

Print(Y)

Read more about programming here:

https://brainly.com/question/18900609

Categorize each memory card as based on new or old technology. PLEASE HELP.

Answers

Answer:

SD Cards and XDQ Cards are new XD Cards and CF Cards are old.

Explanation:

Hope this helps.

Which tab in MS Word would you select to insert a shape into a document? Question 6 options: Insert Review View File

Answers

Answer:

Insert

Explanation:

Under the insert tab, shapes will be an option to put in under the illustrations category.

Answer:

um insert?

Explanation:

im assuming its insert bc you said "to insert a shape into a document" so yh

i hope this helped?

The type of medium used to hide data in steganography is referred to as __________. This may be a photo, video, sound file, or Voice over IP, for example.

Answers

Answer:

:L

Explanation:

Answer:

symmetric cryptography

Explanation:

What are the two negative impacts of computer technology to the society?​

Answers

One negative is that people are getting very impatient. This is because people are getting used to things instantly coming up onto their screens. Another negative is that people are being manipulated more easily. Nowadays anyone can be an expert if they sound smart enough. Then they can spread their lies quickly to millions of people.

can some one please help

Answers

Answer: It probably will cost a lot of money

Explanation:

A student who might find digital learning challenging.

Answers

Digital learning exists mostly online, while traditional learning takes place in a classroom building.

Answer: it is "A"

|Likes meeting other students.|

Which of these purchases is most likely to be paid for with a credit card
A. Soda
B. Lotto ticket
C. Parking fee
D. Plane ticket

Answers

Answer:

plane ticket?

Explanation:

Can you please help me with the AP Computer Science Fill in the blank. What goes on number 5 8 and 18. I don’t understand this I need help programming.

Answers

Answer:

you can probably just delete them. what programming language is this?

What kinds of circumstances would lead you to writing a function versus using a loop? please explain in simple terms

Answers

Answer:

1. You want to use parameters

2. You don't want your program to run multiple times

3. You want to call that snippet of code throughout your program

hope this helped :D

Define watcher block

Answers

Answer:

Happens when you are watching a series / film / drama / etc. but can not retain the attention span to watch for long periods of time. As well as the shortened viewing time, the ability to retain what has been viewed is impaired.

Explanation:

The Block Watcher puts the power of a microprocessor to work analyzing the current feed to the rails. This detector has been designed to eliminate many of the installation problems associated with the installation of signal systems. ... Then connect the detector output switch to your signal system.

hey plz help, and thanks

Answers

Answer:D im pretty sure

Explanation:im sorry if get it wrong So sorry ok just sorry

D maybe??? Sorry if it’s wrong

is it just me or do people delete other peoples questions and it shows up in my inbox staying its mine

Answers

Answer:

yessss same bru.h

Explanation:

Answer:

ive had that happen before i dont know why it happens

Write 5-7 sentences about your own personal observations in which you have been part of a "filter". You might have experienced this is in your Twitter feed, specific advertisements, or your search engine results. Be specific.

Answers

Answer:

Answered below.

Explanation:

I made a search for a product on an online grocery store. The search results came in and I bought the product. On subsequent visits to the grocery store website or on browsing other sites, I had special advertisements pop up. These advertisements were suggesting products to me similar to the one I bought on the grocery store. It was a targeted advertisement that had been sent based on my recent searches and purchases on the site. So I knew that was a filter.

what class are you in?
can you help me in connection?

Answers

Answer:personal computer:)

Explanation:

plzz help me with this question.........

Write a program to input a number find the sum of digits and the number of digits. Display the output also.......

sample input - 7359
sample digits - 24
number of digits - 4​

Answers

Answer:

please mark as brainliest!!

Explanation:

public class SumOfDigits{ public static void main(String args[]) { Scanner sc = new Scanner(System.in); System.out.println("Please enter a number to calculate sum of digits"); int number = sc.nextInt(); // Remember number/10 reduces one digit from number // and number%10 gives you last digit int sum = 0; int input = number; while (input != 0) { int lastdigit = input % 10; sum += lastdigit; input /= 10; } System.out.printf("Sum of digits of number %d is %d", number, sum); // closing Scanner to prevent resource leak sc.close(); } }

help plz (will give brainliest)

Answers

Answer:

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

Explanation:

This is the python program in the question that is:

def sum(n1,n2):

n=n1+n2

return n

The question is: write a function CALL that displays the return value on the screen.

So, the correct program is written below:

*********************************************************************  

def sum(n1,n2):# it is function that define sum

 n=n1+n2 # variable n that store the result of n1 and n2

 return n # return the result

print(sum(3,5))# call the sum function with parameter 3 and 5 , it will print 8

print(sum(4,101))

# call the sum function with parameter 4 and 101 it will print 105

********************************************************************************

you can also store the sum result into another variable, because this function return the sum. So, you can store that return value into another vairable and using the print function, to print the value of this variable such as:

*****************************************************************************

def sum(n1,n2):# it is function that define sum

n=n1+n2 # variable n that store the result of n1 and n2

return n # return the result

result= sum(6,9) # store the sum result into another variable i.e result

print(result)# print the result variable value

*****************************************************************************

What tool can you use to discover vulnerabilities or dangerous misconfigurations on your systems and network

Answers

Answer: vulnerability scanners

Explanation:

The tool tool that can be used to discover vulnerabilities or dangerous misconfigurations on ones systems and network is referred to as the vulnerability scanner.

Vulnerability scanners are simply referred to as automated tools that is used by companies to know whether their systems or networks have weaknesses that could be taken advantage of by cyber thieves or other people and can expose such companies to attack.

Choose the term that completes the sentence.
A bubble (sort/function/search) starts by comparing the first item in the list to the rest of the items.

If the first one is greater than a later item, the items are swapped.

Answers

Answer: BUBBLE SORT

I hope I've been helpful to you.

Answer:

Sort

Explanation:

I Answered this in Edge.nuity and it was correct

Website designers work on the code and programming of a website, not the style or layout of the site.

Answers

Answer:

False

Explanation:

Website designers design how the site looks not works

HELP PLZZ Which statement is true? Select 3 options.


A. A function must have a return value.

B. A function can use variables as parameters.

C. The definition of a function must come before where the function is used.

D. The definition of a function can come before or after it is used.

E. A function can have more than one parameter.

Answers

Answer:

B. C. E.

hope this helps :D

Answer:

The definition of a function must come before where the function is used.

A function can have more than one parameter.

A function can use variables as parameters.

Explanation:

The data type of 17.3 should be ________________.

int
float
str
list
Please answer quick.​

Answers

Answer:

float

Explanation:

Answer:

17.3 should be a float

Explanation:

Float type is a data that is contain a decimal number

Which statements are true? Select 4 options.

A class variable can be a different type of class.

A class variable can be a list of instances of a different class.

An instance of a class cannot be changed after it is created.

Functions defined in a class are called methods.

Variables defined in the constructor of a class can be accessed by the main program that uses instances of the class.

Answers

Answer: All of the answers are correct EXCEPT "An instance of a class cannot be changed after it is created.

Explanation: I've done the problem. Also, if you have an instance of a class, you can no longer change it. It is frozen in time as that one instance. If had a class defining pets and you made an instance dogA where the pet was a brown medium sized dog, dogA would always be a brown medium sized dog. I think, at least.

Answer: A class variable can be a different type of class.

A class variable can be a list of instances of a different class.

Functions defined in a class are called methods.

Variables defined in the constructor of a class can be accessed by the main program that uses instances of the class.

Explanation:

got it right on edgen

What are specific and relevant terms that will help you locate information using an internet search engine?

A: Keywords

B: Search Words

C: Smart Words

D: Unusual Words

please help me!!​

Answers

I would say A:keywords

Hope this helps

I’m sorry if this is wrong

Have a great day/night

Answer:

keyword

Explanation:

i got it right

Assume that x and y are boolean variables and have been properly initialized. !(x || y) || (x || y) The result of evaluating the expression above is best described as:

Answers

Answer:

The answer is "Always true "

Explanation:

Following are the program to this question:

#include <iostream>//header file

using namespace std;

int main()//main method

{

bool x=true;//defining bool variable x and assign value

bool y=false;//defining bool variable y and assign value

if(!(x || y) || (x || y))//use given condition with if block

{

   cout<<"True";//print true message

}

else//defining else block

{

   cout<<"false";//print false message

}

   return 0;

}

In the above code two bool variable is declared, that hold ture and false, and used in the given expression with the condition statement, that checks the given value. In the code the logical gate OR gate that always print the true value.

What is the answer to 4.9 Code Practice: Question 2

Answers

Answer:

sum = 0

for i in range(20, 100, 10):

sum = sum + i

Print(sum)

Explanation:

The answer to 4.9 Code Practice: Question 2 is 200  of the total output.

What is the output?

An output record that a laptop sends. Computers best paintings with virtual information. Any entry that a laptop gets have to be digitised. Often records must be transformed and returned to an analogue layout whilst it is output, as an instance the sound from a laptop's speakers.

The answer to 4.9 Code Practice: Question 2 is 200 output of all the total outputs this is the answer.

Read more about the Code :

https://brainly.com/question/3653791

#SPJ2

Other Questions
Which best describes the importance of carbohydrates to organisms?A. Carbohydrates provide an additional source for amino acids. B.Carbohydrates provide an immediate energy source C. Carbohydrates provide permanent storage for genetic information. D.Carbohydrates provide storage for water molecules Which contemporary artist uses computer programs such as Maya to create 2-D and 3-D digital art?A. Brian McSweenyB. Frank O. GehryC. Judy Pfaff Erica earn money by tutoring and babysitting. She always tutors for 5 hours each week and the amount she babysits changes from week to week. let x be the hours that arica babysitters. Write an expression to show the total numbers of hours erica works each week.Numbers That you have to use to solve this problem: +,-, . , =, ( , ), x, 5, 8, 13 Bob needs to read 3 novels each month. Let N be the number of novels Bob needs to read in M months, Write an equation relating N to M. Then use this equation to find the number of novels Bob needs to read in 17 months. The first wars of religion took place in which country?A. GermanyB. SpainC. EnglandD. France Asha walks 15 m west, then 20 m north, then 15 m east. Calculate the distancecovered by Asha.(a) (Numbering problem)_ Think about the experiences you've had with dramatic texts, including seeing live performances or film adaptations. How does the era in which a play was written affect your ability to enjoy it or understand it? How is it different to read or see a play written more than two millennia ago (such as tragedies and comedies from ancient Greece) compared to a few centuries ago (for example, Shakespeare or others from the Renaissance) or one produced in the last 100 years?Is there something like a modern sensibility to more recently written dramatic works that helps you connect better to them than to works from past centuries? Are there traits in older forms of drama that engage you because they are NOT modern? Describe the traits of drama that keep you engaged as well as characteristics that make it challenging to do so. Which phrase completes this list? federalists favored: a strong central government giving the federal government the power to tax No bill of rights a. Outlawing slavery b. The constitution as written c. States having the most power d. Not allowing new states to be added to the union PART A: Which of the following identifies the central idea of the text?A. The Civil Rights Act of 1964 was notable for being the first major government action taken to address discrimination on the basis of race.B. While state governments were overwhelmingly supportive of the Civil Rights Act of 1964, the federal government continued to obstruct the progress of any legislation.C. The Civil Rights Act of 1964 successfully ended racial discrimination, but people continued to experience discrimination based on other identifying traits.D. The important protections promised by Civil Rights Act of 1964 were the result of significant activism by advocates, as well as the leadership of elected officials.Commonlit: The Civil Rights Act of 1964 Scrooge refuses to give his servants money at Christmas time. What does this reveal about his priorities? A. He really does care about them. He is planning a surprise vacation for them.B. Deep down he cares about them, but he is saving his money for retirement.C. He cares little about treating them fairly or trying to win their affection. He cares only about hoarding his own money.D. He wants them to work extra time if they want extra money.PLEASE HELP Matthew is a farmer. Recently he purchased hybrid high yielding seeds from a local seed shop in his village. However, later he realized that the shop owner had used false labelling to promote his sale. Which Act can protect Mathew in this situation?A. the Compensation and Liability ActsB. OSHAC. Federal Seed ActD. Fair Labor Standards ActE. Occupational Safety and Health Act 20 POINTS please im soo stressed right now. easy problem 2+28/4 = _ / _ What caused space technology to improve so quickly? Suppose that a bond has a face value of 100,000 and its maturity date is 10 years from now. The coupon rate is 5% payable semi-annually. Find the price of the bond, assuming that the required yield is 4%. You have measured the systolic blood pressure of a random sample of 25 employees of a company located near you. A 95% confidence interval for the menu systolic blood pressure for the employees of this company is (122, 138). Which of the following statements gives a valid interpretation of the confidence level?a. 95% of the sample of employees have a systolic blood pressure between 122 and 138.b. 95% of tire population of employees have a systolic blood pressure between 122 and 138c. If the procedure were repeated many times, 95% of the resulting confidence intervals would contain the population means systolic blood pressure.d. The probability that the population mean blood pressure is between 122 and 138 is .95 Un automvil se mueve a velocidad constante v = 60 [km/h]. Si el tiempo de reaccin del conductor al ver la luz roja de una interseccin es de 0.5 [s], y este desacelera a razn de 40 [m/s2 ] Qu distancia recorre el automvil desde el instante en que el conductor nota la senal hasta detenerse por completo? Entindase por tiempo de reaccin, el intervalo de tiempo transcurrido entre el instante en que se percibe la seal y el instante en que se lleva a cabo la accin (instante en que el conductor activa el sistema de frenado). ASAP:)What is your impression about the picture and statement below? Write your reflection about Llene los espacios en blanco con la forma correca del futuro (going to /Will ) 1. Next summer I ____buy a new house. 2. I am quite tired; I____ go to bed now. 3. I believe Laura ____like her brand new car. 4. Look at those guys! They ____rob the bank. 5. I promise, I _____do it again. 6. I think she ____crash my dad's car. 7. I talked to John yesterday; we_____ visit you tomorrow. 8. I am sorry dad; I____ drink and drive again. 9. Watch out! That man____ punch you. 10. It is really hot in here; I___ the window. Diamond and Turf Inc. is considering an investment in one of two machines. The sewing machine will increase productivity from sewing 130 baseballs per hour to sewing 234 per hour. The contribution margin per unit is $0.48 per baseball. Assume that any increased production of baseballs can be sold. The second machine is an automatic packing machine for the golf ball line. The packing machine will reduce packing labor cost. The labor cost saved is equivalent to $26 per hour. The sewing machine will cost $305,500, have an eight-year life, and will operate for 1,400 hours per year. The packing machine will cost $131,800, have an eight-year life, and will operate for 1,200 hours per year. Diamond and Turf seeks a minimum rate of return of 12% on its investments.Present Value of an Annuity of $1 at Compound InterestYear 6% 10% 12% 15% 20%1 0.943 0.909 0.893 0.870 0.8332 1.833 1.736 1.690 1.626 1.5283 2.673 2.487 2.402 2.283 2.1064 3.465 3.170 3.037 2.855 2.5895 4.212 3.791 3.605 3.353 2.9916 4.917 4.355 4.111 3.785 3.3267 5.582 4.868 4.564 4.160 3.6058 6.210 5.335 4.968 4.487 3.8379 6.802 5.759 5.328 4.772 4.03110 7.360 6.145 5.650 5.019 4.192A. Determine the net present value for the two machines. Use the table of present values of an annuity of $1 above.B. Determine the present value index for the two machines.C. If Diamond and Turf has sufficient funds for only one of the machines and qualitative factors are equal between the two machines, in which machine should it invest? Find the angle of NWill give branialist