Which of the following is true of computer-aided manufacturing? a. It shares information with the design computer. b. It is the science and technology of construction of robots. c. It simulates performance without the use of prototypes. d. It is equivalent to computer-aided design.

Answers

Answer 1

Answer:

Option C is correct.

Explanation:

Computer Aid Manufacturing, or CAM, implies the use of software and specialized machinery to automate the manufacturing process.

It needs 3 fundamental parts:

Software capable of instructing machinery in the process of creation.Machinery capable of turning raw material into the desired model.Post-processing, to transform the instruction given from software to a language the machine can understand.

Once a company has a design, it will load it into the software to test any possible geometry errors that could impact the manufacturing process. This allows measuring performance without the need for prototypes, as the model can be represented inside a computer environment.


Related Questions

Which of the following are the dimensions of feasibility? Group of answer choices cost, schedule, technical, and organizational feasibility schedule, process, technical, and competitive feasibility technical, process, procedural, and operational feasibility operational, strategic, technical, and tactical feasibility planning, process, technical, and schedule feasibility.

Answers

Answer:

"cost, schedule, technical, and organizational feasibility schedule" is the correct option.

Explanation:

A technical feasibility is the study of the concerned about the specifying software and tools which satisfy the users' need. It is also the process of thinking for which business technologies are important to bring labours, transportation, and materials.

An organizational feasibility is the study of the information of the professional background and about the skills which are necessary for the contribution in the business.

Final answer:

The dimensions of feasibility are cost, schedule, technical, and organizational feasibility, critical for assessing whether a project is viable regarding finances, time, technology, and alignment with organizational goals.

Explanation:

The dimensions of feasibility include cost, schedule, technical, and organizational feasibility. These dimensions are crucial for evaluating whether a project should proceed. Cost feasibility involves analyzing whether the financial resources available can cover the project expenses, while schedule feasibility assesses if the project can be completed within the desired timeframe. Technical feasibility examines whether the necessary technology and expertise are available to meet the project's requirements. Finally, organizational feasibility evaluates if the project aligns with the organization's strategic goals and capabilities.

____________ is group of commands that enable s you to bring data from an access database, from the web, from a text file, from an xml file, and from many other sources, into excel in a manner that lets you transform.

Answers

Answer:

Get External Data

Explanation:

Power Query is a group of commands that enable s you to bring data from an access database, from the web, from a text file, from an XML file, and from many other sources, into Excel in a manner that lets you transform.

The group of commands that enables you to bring data from various sources, such as an Access database, the web, a text file, an XML file, and many others, into Excel in a way that allows you to transform it is called "Power Query".

Power Query is a powerful tool that helps you extract, transform, and load data into Excel, making it easier to work with and analyze.

With Power Query, you can perform tasks like combining multiple data sources, cleaning and shaping data, and creating custom data transformations.

To learn more about database visit:

https://brainly.com/question/6447559

#SPJ4

5.Consider the following code snippet:ArrayList arrList = new ArrayList();for (int i = 0; i < arrList.size(); i++){ arrList.add(i + 3);}What value is stored in the element of the array list at index 0? Think carefully about this.A. 0B. 3C. 6D. None

Answers

Answer:

The answer to this question is the option "D".

Explanation:

In the given question code we use the array list that does not store any value in the index 0, because for adding elements in the list, we use add function. In this function parameter, we pass the value that is "i+3". Which means the value of i is increased by 3. In option A, B and C we do not assign any value in the add function. so, it not correct.  

That's why the correct answer to this question is the option "D".  

Network access control authenticates users logging into the network and determines what data they can access and actions they can perform.
A. True.
B. False

Answers

Answer:

The answer is letter A

Explanation:

The statement is TRUE

The general syntax for the function prototype to overload the assignment operator = for a class is ____.a. friend className& operator=(const className&);b. const className& operator=(const className&);c. className& operator=(className&);d. string className& operator=(className&);

Answers

Answer:

Option (B) is the correct answer to the following question.

Explanation:

Here, in the code "const" is the constant keyword which is used when we need that the value stored in that variable will never change.

The following option is correct because the assignment operator are those operator which initialize the value in the variable and overloading of the assignment operator would be as we use the other operators and also we could use them by creating the objects as we use in the copy constructor.

So, that's why the following option is correct.

This method is employed in order to rapidly change the locations of the website in order to ensure that no one site us used long enough to be isolated and shut down.
a. Fast-flux
b. Three-card monte
c. Bait n'switch
d. Botnet

Answers

Answer:

Fast-flux

Explanation:

The techniques that is used to shift the network without shutdown of website.

Which type of view is created from the following SQL statement? CREATE VIEW balancedue AS SELECT customer#, order#, SUM(quantity*retail) amtdue FROM customers NATURAL JOIN orders NATURAL JOIN orderitems NATURAL JOIN books GROUP BY customer#, order#;

Answers

Answer:

The correct answer to the following statement is a complex view.

Explanation:

Because complex view is the part of the view in which view can be created by one or more tables and in the following statement they are using the CREATE VIEW command for creating view and next to it they are using SELECT and Join command for the multiple views.

So, that's why the following statement is the complex view.

What is a group of statements that exists within a program for the purpose of performing a specific task?"

Answers

Answer:

This is called a "Function"

Explanation:

The following code accomplishes which of the tasks written below? Assume list is an int array that stores positive int values only.int foo = list[0];for (int j =1 ; j < list.length; j++) if (list[j] > foo) foo = list[j];

Answers

Answer:

The code mention in question will find "Largest Number in list"

Explanation:

In first line of code

first element of array will be move in "foo" variable

then loop will start from 2nd value and ends at last value of array

in next step

2nd value of array compares with 1st value

If 2nd value is greater than 1st then greater value move into "foo" variable.

This process continues till the end of array.

after completion largest element of array will be present in "foo".

During side show mode, hitting the B key will do which one of these?

A) End the presentation
B) Blank the screen with black screen
C)Move one page back
D) Move to the first page of your presentation

Answers

Answer:

B) Blank the screen with black screen

Explanation:

The answer is letter B. During the slideshow, if you press B in your keyboard, it will display a black screen. When you press W, it will display white screen while when you press B again, you will be directed to a last display slide on the presentation.

Given the following method definitions: void mystery(double a) { System.out.print("double! "); } void mystery(int a) { System.out.print("int! "); } What will be the output of the following code? mystery(1); mystery(1.0); Select one:
a. It is impossible to predict
b. int! double!
c. Duplicate function names results in a compiler error.
d. double! int!

Answers

Answer:

The correct answer to the following question is option "b".  

Explanation:

The method having the same name but the arguments have different so it is called method overloading. It is a part of the object-oriented programming language (oops).  

In the given code we define same method two times that is "mystery()". but in this method, we pass two different parameters. For the first time, we pass a double variable that is "a" as a parameter. In the second time, we pass an integer variable that is "a" as a parameter and in both functions, we write some codes. In the calling time, we call function two times. In first time calling we pass an integer value that is "1" and second time calling we pass double value that is "1.0". So the output of this code is "int! double!".  

That's why the option "b" is correct.

What is the formula to find the sum of cells a1 a2 and a3

Answers

Answer:

=sum(a1,a2,a3)

Explanation:

starting with the equality sign, followed by the sum function for adding the cells, and then the cells containing the data.

To implement virtualization, a special type of management software known as a _____ must be installed. It manages access to the CPU, storage devices, network interfaces, and RAM for all VMs running on that system

Answers

Answer:

Vmware

Explanation:

Routers: operate at the application layer operate only at the physical layer cannot connect two or more networks that use the same type of cable may also be called TCP/IP gateways operate only at the data link layer.

Answers

Answer:

The correct option to the following question is option (D) may also be called TCP/IP gateways.

Explanation:

Commonly, Internet Protocol routers are referred to as the internet gateways because between the networks the routers use an IP address for routing the packets.

In the TCP/IP structure, the router works at several layers and also the router can select their path for the flow of the data because they know where is the other routers.

What would be the results of the following code?final int SIZE = 25;int[] array1 = new int[SIZE];... // Code that will put values in array1int value = 0;for (int a = 0; a < array1.length; a++){value += array1[a];}a.value contains the highest value in array1b.value contains the lowest value in array1c.value contains the sum of all the values in array1d.This would cause the program to crash

Answers

Answer:

The correct option to this code is "a".

Explanation:

The given code contains the highest value in array1 because code will use variable value that adds all value of array1. and other options are not correct that can be described as:

In option, b The value variable, we add a number that's why it can not contain the lowest value.In option, c The value variable use for loop for add all array element not sum of values.In option, d There will no crash in program.

You are developing a Website using a GUI editor. You are curious as to whether your pages will look or function any differently after you publish them to the Web. Which of the following is true?This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A) Most GUI editors make it easy to preview your pages using built-in code validators or validation sites.
B) The WYSIWYG environment displays pages exactly as they will appear and work on the Web.
C) You can proof your pages after you publish them to the Web, make any changes, then republish them.
D) Most GUI editors allow you to easily preview and test your pages in the browser(s) of your choice.

Answers

Answer:

D) Most GUI editors allow you to easily preview and test your pages in the browser(s) of your choice.

Explanation:

A) You would need an additional tool for test with built-in code validators or validation sites.

B) WYSIWYG allows content to be edited in a form that resembles its appearance, not exactly as they will appear and work on the Web

C) It is not convenient to publish pages to the Web,then make change and republish them.

Ajax Inc. is one of the customers of a well-known linen manufacturing company. Ajax has not ordered linen in some time, but when it did order in the past it ordered frequenly, and its orders were of the highest monetary value. Under the given circumstances, Ajax's RFM score is most likely
A) 155
B) 511
C) 555
D) 151

Answers

Answer:

The answer is letter B

Explanation:

Under the given's circumstances, Ajax's RFM score is most likely 511.

__________ are the technically qualified individuals tasked to configure firewalls, deploy IDSs, implement security software, diagnose and troubleshoot problems, and coordinate with systems and network administrators to ensure that an organization's security technology is properly implemented.

Answers

Answer:

Security technician

Explanation:

A security technician is a person who takes care of the security of the network of the organization. Security technician makes sure that there are no vulnerabilities in the systems or organization network.

They also troubleshoot the problem causing any security threat to the system and provides information by collecting data and maintain computer security by filing the security forms.

Given this method comment, fill in the blank in the method implementation. /* Deposits money into the bank account amount: the amount to deposit */ public _____ deposit(double amount) { balance = balance + amount; }

Answers

Answer:

"void" is the correct answer for the given question.

Explanation:

In the function body the value of balance variable is not return that means we use void return type .The void return type is used when the function does not return any value .

If the function are  int return type that means it return "integer value ".

if the function are  double return type that means it return the "double value" .

The complete implementation of this method is

public void deposit(double amount) // function definition  

{

balance = balance + amount; // statement

}

You need to design a backup strategy. You need to ensure that all servers are backed up every Friday night and a complete copy of all data is available with a single set of media. However, it should take minimal time to restore data. Which of the following would be the ____

Answers

Answer:

Full

Explanation:

You need to design a backup strategy. You need to ensure that all servers are backed up every Friday night and a complete copy of all data is available with a single set of media. However, it should take minimal time to restore data. Which of the following would be the Full .

_____ states the principles and core values that are essential to a set of people and that, therefore, govern these people's behavior.

Answers

Answer:

The anwer is Code of Ethics

Explanation:

Code of Ethics states the principles and core values that are essential to a set of people and that, therefore, govern these people's behavior.

Answer:

Code of ethics

Explanation:

A code of ethic is a group of rules that establish the way in which people should behave according to the values, principles and standards that they think are important. These rules determine the way in which a person will behave as this person will evaluate a course of action in terms of the principles that he/she considers that are right. Because of that, the answer is code of ethics.

This morning you modified five large data files in your home folder in Linux, and now you want to find and delete the files because you no longer need them. Which of the following commands can you use to list and sort files based on the time they were modified

Answers

Answer:

ls -t

Explanation:

"ls" command in Linux is used very often. It lists the directory contents. The "ls" utility is part of the core utilities and installed in all Linux distributions.

When ls command is used with "-t" , "ls -t" sorts files/directories list by date created or modified.

More advanced version is "ls -lt", where it sorts by date and shows info about directory, size, modified date and time, file or folder name and owner of file and its permission.

Given a char variable c that has already been declared, write some code that repeatedly reads a value from standard input into c until at last a 'Y' or 'y' or 'N' or 'n' has been entered.

Answers

Answer:  

The code to this question as follows:  

Code:  

do{ //do-while loop  

cin >> c; //input value from user.  

}while (!(c == 'Y' || c == 'y' || c=='N' || c == 'n')); //check condition.  

Explanation:  

The description of the code as follows:  

In this code, we use a do-while loop. It is an exit control loop. In the loop, we use the char variable that is "c" this variable is used for user input. End of the loop we define the condition that is variable c value is not equal to "y", "Y", "n" and "N".  In the loop, we use OR operator that means if any of the above conditions is match it will terminate the loop.  

Final answer:

A while loop can be used to repeatedly read a char variable from standard input until 'Y', 'y', 'N', or 'n' is entered, utilizing a do-while loop to check the condition after each input.

Explanation:

To repeatedly read a value into a char variable c until 'Y', 'y', 'N', or 'n' is entered, one could use a while loop in the following way:

#include
using namespace std;

do {
   cin >> c;
} while (c != 'Y' && c != 'y' && c != 'N' && c != 'n');

This code snippet uses a do-while loop to ensure that the body is executed at least once before checking the condition. If the character entered is not 'Y', 'y', 'N', or 'n', it repeats the prompt, continuing to read the next standard input into variable c. When one of these specific characters is entered, the loop terminates.

Which of the following JavaScript methods is used to define an object collection based on a CSS (Cascading Style Sheets) selector? ​ a. object.style.property = ""value(selector)"" b. object.property = ""value(selector)"" c. document.getElementbyId(selector) d. document.querySelectorAll(selector)

Answers

Answer:

The answer is option d.

Explanation:

The 'querySelectorAll' function enables you to extract the list of items that fit the CSS selector you choose. It's just a way to find JavaScript components. It is very adaptable and enables you to search for tags, classes, IDs, combinations of parent/child, attributes, etc.  

In other words, we can say that the querySelectorAll() method returns all the matches. and other options are not correct that can be described as follows:

In option a and b, the object is a collection of unordered properties, that can be changed in adding, deleting and read-only. The option a is an attribute, that is used in CSS and option b is used in JavaScript for the property name. In option c, It reverts the element with the fixed value, that has the ID attribute.

Developers work together with customers and useras to define requirements and specify what the proposed system will do. If once it is built, the system works according to specification but harms someone physicall or financially, who is responsible?

Answers

Financially would be responsible

As a Web designer, you want to ensure that HTML elements will not overlap or lay against one another when users render your Web pages in a browser. Which of the following can you use to help you configure the space around each HTML element?

Answers

Answer:

The answer is "The concept of the CSS Box model ".

Explanation:

Cascading Style Sheets (CSS) is used for web design and formatting, the term box template or model is used. The CSS box model works as a container that covers all the HTML elements inside.  

It includes many features, sides, margins, lining, and materials. The design and development of web pages is provided by the CSS box model. The framework can be used to modify and design various items.

A hardware compatibility list recommends striping with double parity as storage for an application. In a test environment, a technician realized that a different RAID level can be used to compensate for a limited number of available disks. Which of the following is the closest RAID level the technician should deploy while minimizing the number of disks and maintaining fault tolerance.

Answers

Answer:

RAID level 5 can be used to compensate a limited number of available disks.

Explanation:

There are two type of RAID

Software RAIDHardware RAID

Software RAID

deliver services form the host.

Hardware RAID

provides hardware services.

RAID has levels

0, 1, 5, 6, and 10

RAID 0, 1, and 5 work on both HDD and SSD media,

4 and 6 also work on both media.

RAID 0 :Striping

In this level minimum of two disks,RAID 0 split the file strip the data.Multiple hard drive are used to split the data.

RAID 1 : Mirroring

In this level Minimum two disk require and provide data tendency.

RAID 5 :Stripping with parity

Parity is a binary data.RAID system calculate the value which system used to recover the data.

Most RAID system with parity function store parity blocks.

RAID 5 combines the performance of RAID 0 with redundancy of RAID 1.

RAID 5 level should minimize the fault tolerance.

The introduction of new information technology has a: A. dampening effect on the discourse of business ethics. B. waterfall effect in raising ever more complex ethical issues. C. beneficial effect for society as a whole, while raising dilemmas for consumers. D. ripple effect raising new ethical, social, and political issues.

Answers

Answer:

The answer is Letter D.

Explanation:

The introduction of new information technology has a ripple effect raising new ethical, social, and political issues. There are five main moral dimensions that tie together ethical, social, and political issues in an information society.

The process of making changes to an information system to evolve its functionality, to accommodate changing business needs, or to migrate it to a different operating environment is known as ________ maintenance. A. adaptive B. perfective C. preventive D. corrective E. predictive

Answers

Answer:

Option A is correct.

The process of making changes to an information system to evolve its functionality, to accommodate changing business needs, or to migrate it to a different operating environment is known as adaptive maintenance.

Explanation:

"Adaptive Maintenance" as obvious from the name are the changes or modifications that are implemented whenever the system is affected by any kind of  change.

Whenever a process adapts itself to the change in outer system, in order to perform in a better way, this is termed as adaptive maintenance .

This can be of great value as the working of the whole system depends on the maintenance so that it may becomes better than better.

i hope it will help you!

What is the output of the following code? var x = ["a", "b", "c"]; x.push("d", "e"); x.pop(); x.pop(); a. ​x = ["a", "b", "d", "e"] b. ​x = ["d", "e"] c. ​x = ["a", "b", "c"] d. ​x = ["c", "d", "e"]

Answers

Answer:

The answer to this question is option "C".

Explanation:

The stack is part of the data structure. In this stack perform two operations that are "push and pop". The push function is used to push(insert) and pop function is used to pop(delete) elements on the stack. It follows the LIFO process that stands for last in first out.

In this code, firstly we insert three elements on the stack that is "a, b and c". Then, we insert two elements on the stack that is "d and e", in this element store in the upper part of the stack and then we call pop function two times. In first time, the call will remove elements e and the second time it will remove element d.

That's why the answer is option "C".

Other Questions
Question 12 Multiple Choice Worth 4 points)(03.08 MC)Andrea works in an office where frequent outbreaks of colds and viruses occur. However, Andrea stays healthy most of the time and rarely misses work. Which isthe most likely explanation for Andrea's health in this environment?She probably exercises more frequently than her co-workers.She probably takes antibiotics on a regular basis.She probably washes her hands frequently and avoids touching her nose or mouthShe has probably already had all the strains of colds and viruses in her office.Question 13 Multiple Choice Worth 4 points)Previous QuestionQuestion 1 (Answered)Next Question How would I find the area given these 4 points? Is there a formula that I just don't know In vendor-managed inventory systems,A. corporations send information to retail customers, bypassing wholesalers and retailers.B. companies send information to cooperatives.C. customers send information to retailers.D. manufacturers send sales information to the retailer.E. retailers send sales information to the manufacturer. what was the original number if after 40% it became 420 which of the following materials has the lowest resistance copper wood plastic A copper ring and a wooden ring of the same dimensions are placed in magnetic fields so that there is the same change in magnetic flux through them. Compare the induced EMFs and currents in the rings. Examples of abortive in a sentence Enter the word you received when you completed the Andrew Jackson and Modern Political Parties activity. The political club that was most influential in passing the decree to condemn louis xvi ________ are a vital part of the public health assessment function and are used to identify special risk groups, to detect new health threats, to plan public health programs and evaluate their successes, and to prepare government budgets. 5. In a psychology class debate on the humanistic perspective, you need to take the opposing view and rebut its positive aspects. Which of the following is a criticism of the humanistic perspective?A.Its concepts are too precise and specific. B.The descriptions of self-actualizing people reflect Maslow's personal values. C.It emphasizes collectivism too heavily. D.It emphasizes unconscious motivations too heavily. A student walks one fourth mile from her home to the store on her way to a friends house. If the store is one third of the way to her friends house, how far is her friends house from her way home ? Ali works for Citrus Squeeze, a company that makes orange juice. Sales of their calcium-enhanced OJ have been poor, and the product was cancelled. His factory still had three cases of cartons, and Ali was told he could take them if he wanted them. With the cartons, Ali made several birdfeeders for his backyard and also planted tree seedlings in some of them; he used the remaining ones to build a "fort" for his four-year-old son. Alis use of the cartons represent____________. What is 56% of 71? A sample containing 2.50 mol of an ideal gas at 298 K is expanded from an initial volume of 10.0 L to a final volume of 50.0 L. Calculate G and A for this process for: (a) an isothermal reversible path and (b) an isothermal expansion against a constant external pressure of 0.750 bar. Explain why G and A do or do not differ from one another. What steps occur during interphase that prepare a cell for division? Tia owns a fruit shop and is selling a fresh lot of apples and oranges. She wants the ratio of apples to oranges sold to be 3 to 2. Tia wants to sell a total of 50 apples and oranges. How many apples should she sell? Special Right Triangles: Decimal Answer. Can someone help me find A and D (round to the nearest tenth) ?Thank You! Lowery has extreme feelings of failure and worthlessness and believes he is the most sinful person on earth and deserves to die. He has eaten little and rarely left his bed in the last several days. Lowery would be diagnosed with a __________ disorder. Let f and g be differentiable functions such that f(1) = 2, f'(1) = 3, f'(2) = -4, g(1) = 2, g'(1) = -3, g'(2) = 5. If h(x) = f (g(x)) , then h'(1) =