you are planning to deploy a new windows 10 image to 100 client computers that are identically configured. you want to use windows sim to configure a variety of installation options. you need to set up partitioning and formatting of the hard disk and apply a product key during the deployment of windows 10. which component will you need to configure?

Answers

Answer 1

A manual answer file can be written by anyone. In order to make the process of creating the file for Windows 10's unattended installation simpler, Microsoft provides the Windows System Image Manager (SIM) console, which is accessible via the Windows Assessment and Deployment Kit (ADK).

What application would you employ to produce or amend the response files required for unattended installations?

Windows Server 2016's Windows System Image Manager (SIM) is used to produce unattended response files. The most popular settings that are utilized within an answer file are configured and set up using a GUI-based interface.

Which of the aforementioned tools would you employ to set up the WDS server to respond to client requests?

The WDS server can be configured using the command-line tool WDSUTIL. The WDS server needs a number of additional configuration settings, which can be made using WDSUTIL.

To know more about SIM visit;

https://brainly.com/question/14100139

#SPJ4


Related Questions

What does it mean when someone says "do not contact me with unsolicited services"?

Answers

Unsolicited refers to the sending or provision of products or services to a person without that person's prior request or authorization.

Unsolicited services are those that are given to you when neither you nor anyone else has requested them. An example of this would be if someone mowed your lawn or pulled weeds in your garden without your permission.

Unsolicited gifts have been given without being requested and may not have been desired. Relatives that are constantly offering you unasked advice should be ignored.

In reality, it means: "Please leave. We oppose your sale. The phrase "do not contact me" is code for "leave." Unsolicited refers to something that was not requested or invited.

To know more about Unsolicited services, click the below link

https://brainly.com/question/29022312

#SPJ4

Given that a program consists of ten different operations, which are normally processed sequentially by a single CPU. To increase throughput, a pipeline is built with a hardware element for each operation. These elements are clocked at the same rate as the CPU in the original system. If the system is given seven sets of data to process, determine the speedup factor.

Answers

Main answer: The speedup factor achieved by implementing a pipeline with a hardware element for each operation is 10.

By introducing a pipeline with a hardware element for each operation, the system can effectively process multiple sets of data simultaneously, thereby increasing throughput. In the original sequential processing system, each operation had to wait for the completion of the previous operation before it could start. However, in the pipelined system, while the first set of data is being processed by the first operation, the second set of data can already be processed by the second operation, and so on. This overlapping of operations allows for a significant reduction in the overall processing time.

In this case, since the program consists of ten different operations, the pipeline can process ten sets of data concurrently. Therefore, the speedup factor is equal to the number of operations, which is ten. This means that the pipelined system can achieve a throughput ten times higher than the original sequential processing system.

By utilizing the pipeline, the CPU and the hardware elements can work in parallel, effectively utilizing the available resources and reducing idle time. However, it's important to note that achieving the theoretical maximum speedup factor of ten assumes that all operations take the same amount of time to complete. In practice, variations in operation durations or dependencies between operations may lead to a slightly lower speedup factor.

Learn more about speedup factor

brainly.com/question/31176774

#SPJ11

Which of the following are properties of a constructor?
A) A constructor must have the same name as the class.
B) A constructor is called using the new operator.
C) Constructors may be overloaded.

Answers

A constructor is called using the new operator. Constructors are called using the new operator and are invoked during the creation of an object. When an object is created, the JVM allocates memory for the object and then invokes the constructor to initialize its fields. Option B.

The following are properties of a constructor: The class name must also be used for the constructor. b) The new operator is used to invoke a constructor. c) Constructors may be overloaded. There are some important properties that constructors have and they are crucial to understand in Java programming. In fact, the constructor is the most important part of a class in Java programming. Below are the properties of a constructor:1. A constructor must have the same name as the class. The constructor's name must correspond to the name of the class where it is declared.  If the constructor's name is not the same as the class name, it is not considered a constructor but a method.2. A constructor is called using the new operator.

Constructors are called using the new operator and are invoked during the creation of an object. When an object is created, the JVM allocates memory for the object and then invokes the constructor to initialize its fields.3. Constructors may be overloaded. Like other methods in Java programming, constructors can be overloaded. In order to overload a class, multiple methods with the same name but different parameters are defined.

To know more about constructor refer for:

https://brainly.com/question/33185398

#SPJ11

Tasha grew up helping her uncle work on cars in his auto repair shop and developed into an excellent auto technician. Because of stereotypes regarding women in this field, she is interested in finding a shop that minimizes gender discrimination and gender role inequalities. Tasha wants to work for a company that highly values gender egalitarianism.
A. True
B. False

Answers

Answer A. True

Explanation:

write a program to calculate sum of first ten natural numbers​

Answers

Answer:

Explanation:

total = 0

i = 0

while i<=10:

   total = i +total

print(total)

this is really a question about what this means. My friend is trying to code speed racer the video game and he doesn't know what this means. Before you ask yes the devs know about this and don't care. but here is this code 03 D0 5F 3A.

what does these codes mean?

this is really a question about what this means. My friend is trying to code speed racer the video game

Answers

It appears that the code "03 D0 5F 3A" is a hexadecimal representation of a series of bytes. Without more context, it is difficult to determine with certainty what this collection of bytes implies.

How is hexadecimal converted to bytes?

You must first obtain the length of the supplied text and include it when constructing a new byte array in order to convert a hex string to a byte array. new byte[] val = str. length() / 2 new byte; Take a for loop now up till the byte array's length.

How can a byte array be converted to a hex byte array?

Using a loop to go through each byte in the array and the String format() function, we can convert a byte array to a hex value. To print Hexadecimal (X) with two places (02), use%02X.

To know more about bytes visit:-

https://brainly.com/question/31318972

#SPJ1

Sean wants to build a robot. What part of the robot will he need to include that enables the robot to process sensory information?

Answers

To enable a robot to process sensory information, Sean will need to include a sensor system as part of the robot. The sensor system will provide input to the robot's central processing unit (CPU) or microcontroller, allowing it to perceive and respond to its environment. The specific sensors needed will depend on the robot's intended function and the type of sensory information it needs to process. Common sensors used in robots include cameras, microphones, touch sensors, and proximity sensors.

#SPJ1

Write a program to enter a number and test if it is greater than 45.6. If the number entered is greater than 45.6, the program needs to output the phrase Greater than 45.6.

Sample Run
Enter a number: 90
Sample Output
Greater than 45.6

Answers

Answer:

float inp =0;

cin>>inp;

if(inp > 45.6)

    cout<<"Greater than 45.6";

Explanation:

the first line will initialize an float for the input you gonna give the program.

second line will get the input from the user.

third line checks if the given input is greater than 45.6 .if so , it will print "greater than 45.6"

also for your future questions , please note which language your program should be in.

in a sql union statement, when the _________ keyword is left out, the database system automatically eliminates any duplicate rows.

Answers

In a SQL union statement, when the `DISTINCT` keyword is left out, the database system automatically eliminates any duplicate rows.

What is a SQL union statement?

A SQL union statement is used to combine the results of two or more SELECT statements into a single result set. The results of each SELECT statement in the SQL union statement must have the same number of columns and the same data type for each column.

SQL UNION SyntaxSELECT column_name(s) FROM table1UNIONSELECT column_name(s) FROM table2;The UNION operator combines the result of two or more SELECT statements into a single result set. It removes duplicate rows between the various SELECT statements. The columns in the SELECT statements must have the same data type, which does not have to be the same name.

Learn more about SQL union statement here: https://brainly.com/question/29849842

#SPJ11

I cant get this for the life of me, I dont understand what im doing wrong, help?
def main():

numGuesses = 0
userGuess = 15
secretNum = 5

name = input("Hello! What is your name?")


userGuess = print ("Guess a number between 1 and 20:")

numGuesses = numGuesses + 1

if (userGuess < secretNum):
print("You guessed " + str(userGuess) + ". Too low.")

if (userGuess > secretNum):
print("You guessed " + str(userGuess) + ". Too high.")

if (userGuess = secretNum):
print9"Congrats! you are correct.")
main()

Answers

Answer:

what problems are you facing with this code?

Answer:

Your print statement has a 9 on it.

When running code, select the example that would most likely result in an exception.
A) Dividing by zero
B) Missing parentheses
C) Missing quotes
D) Opening a file

Answers

When running code, select the example that would most likely result in an exception is: "Dividing by zero" (Option A)

What is an exception in Code?

An exception is an occurrence that happens during program execution that disturbs the usual flow of the program's instructions. When a method encounters an error, the method produces an object and passes it to the runtime system.

Alternatively, an exception is an occurrence that occurs during the execution of a program that disturbs the usual flow of instructions. For instance, public static void Main ().

There are three kinds of exceptions:

checked exceptions, errors, and runtime exceptions.

An exception is an object that signals a problem. The exception object should give a way to fix the problem or at the very least identify what went wrong.

In most cases, the exception object will include a "stack trace," which will allow you to backtrack through your application and hopefully pinpoint the precise point where things went wrong.

Learn more about Exceptions;
https://brainly.com/question/29352347
#SPJ1

Which of these should be included in a program's comments?

a. code to set the parameters of a shape

b. a description of what the program does

c. a description of how long it took to write the code

d. code for inserting a background

Answers

Answer:

B

Explanation:

Comments in code are primarily used to describe what the program does, and how chunks of the code running the program help relate to what the program does. Comments in code are not primarily used for answers d & a, which is more code, since if you comment, the compiler doesn't notice the code, so it doesn't work. Comments in code are not used for c either, since it's not really needed to write that in the comments.

Henry wants to use handheld computers to take customers' orders in her restaurant. He is thinking of using custom written, open source software. Describe what is meant by custom written software.

Answers

Answer: See explanation

Explanation:

Custom written software refers to the software that's developed for some particular organization or users. It's crates in order to meet the unique requirements of a business.

Since Henry is thinking of using custom written, open source software, then a custom written software will be used. Examples of custom written software will be automated invoicing, bug tracking software, E-commerce software solutions etc.

true or false.


The format of a document to refers to the way all elements of document?​

Answers

Answer:

true Yan Po Ang sagot

Explanation:

Yan na Sana makayulong

Can someone show me how to do these in excel?
Project X has an initial cost of $19,800 and a cash inflow of
$25,000 in Year 3. Project Y costs $40,700 and has cash flows of
$12,000, $25,000, and $10,0

Answers

In Excel, create a spreadsheet with columns for projects, initial costs, and cash inflows. Use the SUM function to calculate net cash flows for each project in specific years.

What are the steps?

1. Open Microsoft   Excel and create a new spreadsheet.

2. In column A, enter the headings   "Project" and list the projects as "X" and "Y" in thesubsequent cells.

3. In column B, enter the heading "Initial Cost" and enter the values $19,800 and $40,700 in   the corresponding cells.

4. In column Center   the heading "Cash Inflows" and enter the values $0, $0, $25,000 for Project X and $12,000, $25,000,$10,000 for Project Y.

5. To calculate the net   cash flow for each project in a specific year, you can use the SUM function. For example,in cell D2, you can enter the formula "=SUM(C2:C3)" to   calculate the net cash flow for Project X in Year 3.

6. Repeat the SUM functionfor the remaining years and projects to calculate their respective net cash flows.

Learn more about Excel at:

https://brainly.com/question/29985287

#SPJ4

what is the predefined business logic within a blockchain called?

Answers

Smart contracts: With so much being said and published about blockchain, it appears that the technology may be misunderstood by the general public. They see it as a one-man band that can do everything, including enabling bitcoin, safeguard data, brew coffee, and more, rather than a technology.

Blockchain is a distributed, immutable database that simplifies the tracking of assets and the recording of transactions inside a business network. An asset may be tangible (such a home, automobile, sum of money, or plot of land) or intangible (intellectual property, patents, copyrights, branding). A blockchain network allows for the recording and trading of practically everything of value, lowering risk and increasing efficiency for all parties. Business depends heavily on information, which is why blockchain technology is significant. It is preferable if it is received promptly and accurately.Because it provides real-time, shareable, and fully transparent data that is recorded on an immutable ledger and only available to users of a permissioned network, blockchain is the perfect technology for delivering such information.

To learn more about " database " Click on below link brainly.com/question/28391263

#SPJ4

now that you have determined the entities, you can select appropriate attributes from your discussions with the users. which attributes should your database include?

Answers

Attributes that should be included in the database depend on user requirements and discussions.

What are some considerations for selecting attributes to include in a database?

When selecting attributes for a database, it is important to consider the requirements and needs of the users.

This can be achieved through discussions with the users to understand their specific needs.

The attributes to include in the database should be relevant and necessary for capturing and organizing the required information.

These attributes can vary depending on the specific domain or application of the database.

Some common attributes to consider may include unique identifiers, descriptive characteristics, numerical values, dates, and any other relevant data elements that are essential for meeting the database's objectives and supporting the intended functionalities.

The goal is to identify and include attributes that effectively represent and store the desired data, ensuring the database can efficiently fulfill its purpose and provide valuable information to the users.

Learn more about database depend

brainly.com/question/32326776

#SPJ11

Which feature is incorrect about stack Programmer can allocate space from the Stack and is responsible for deallocating it. The Stack grows from high address to low address. Data stored in the Stack should be first in last out. The Stack stores the value for local variables and the arguments passed through functions.

Answers

Programmer can allocate space from the Stack and is responsible for deallocating it.

A linear data structure called a stack is used to store data. It is an Abstract Data Type (ADT) in which data is added to and removed from the top of the stack at a single end. It adheres to the Last in, First out (LIFO) principle, meaning that the data that was added to the stack most recently will be removed first. Moreover, the data is added to or removed from the stack top. The function TopElement/Peek in the stack is used to extract the element that is at the top of the stack.

An efficient method for organising, storing, and accessing data is defined by a data structure, coupled with the operations (processing) that can be carried out on it.the information. The data structure known as a string, for instance, is composed of a series of characters as its individual pieces. Comparatively, a list is a sequence data structure in which each entry may be of a different type.

Learn more about Stack here:

brainly.com/question/19585076

#SPJ4

how to 5.4.4 on codehs?

Answers

The program is an illustration of the square function.

The square function takes a number, and returns the square of the number; i.e. the product of the number twice.

So, the square function in Python, where comments are used to explain each line is as follows:

#This defines the square function

def square(num):

   #This returns the square of the argument

   return num**2

   

#This gets input for the number

num = int(input("Number: "))

#This calculates the square of the number

x = square(num)

#This prints the square

print("Square:",x)

Read more about Python functions at:

https://brainly.com/question/25120954

What will the Document search option search through?

Answers

Answer:

hi

Explanation:

nynttnynybynynynumkol0

The AND operator is a disjunction and the OR operator is a conjunction.

True
or
False

Answers

Answer:

True but it might be false but i think is true

What are good components to preorder a PC with that are cheep? It would be my first PC by the way.

Answers

Answer:

Good Components

.CPU AMD Threadripper 3960X Amazon

.CPU cooler NZXT Kraken X63 (280mm AIO liquid cooler) Overclockers

.GPU Zotac Gaming GeForce GTX 1660 6GB CCLonline

.Memory 32GB Corsair Dominator Platinum RGB 3200MHz Scan

Explanation:

Would you want a prebuilt? I know a very good prebuilt and custom build company called NZXT. They have very good parts and very good ratings. I know prebuilts are shamed on, but I promise you, one of the NZXT prebuilts are great.

Your job is to create a request for change (RFC) to move the services to new infrastructure. In your RFC, address all the 7 R’s of change management. Assume that you are going to present it to change advisory board (CAB) and they are going to ask you these questions

Answers

The request for change (RFC) aims to move the services to new infrastructure, addressing the 7 R's of change management: reason, return, risk, resources, responsibilities, relationships, and readiness. The RFC outlines the rationale for the change, the expected benefits, the potential risks, the required resources, the assigned responsibilities, the impact on relationships with stakeholders, and the preparedness for the transition.

The reason for the change is to enhance the performance and scalability of the existing services by leveraging advanced infrastructure technologies. The new infrastructure offers improved reliability, increased processing power, and enhanced security measures. The return on investment is anticipated through reduced downtime, improved customer satisfaction, and optimized operational efficiency.

Regarding risks, the RFC acknowledges the potential disruptions during the migration process, such as temporary service unavailability and data transfer challenges. Mitigation strategies are proposed, including comprehensive testing, backup plans, and effective communication with stakeholders to minimize impact and ensure a smooth transition.

The resources required for the migration, including hardware, software, and human resources, are detailed in the RFC. The responsibilities of each team and individual involved in the change are clearly defined to ensure accountability and a coordinated effort.

The RFC also addresses the relationships with stakeholders, outlining the communication plan to keep them informed about the change, address any concerns, and maintain trust and collaboration throughout the process.

Lastly, the RFC emphasizes readiness by highlighting the thorough planning, testing, and training activities undertaken prior to the migration. This ensures that the necessary preparations are in place to minimize potential issues and ensure a successful transition to the new infrastructure.

learn more about request for change (RFC) here:
https://brainly.com/question/32157428

#SPJ11

#Given:
manyLists=[[2,1,3,1,3,2],[3,4,5,6,7],[9,4,2,7,8,6,3,1,9],[12,3,2,1,2]]
moreLists = [[5,4,6],[2,1,3,9],[6,7,5,8,4]]
moreListsB = [[5,5,4,6,5,6], [6,7,5,8,4],[2,1,3,9,8]]
"""
Problem 3. Write a function aListOfListsDupes(aListOfLists)
that takes a list of lists as a parameter and returns a list
of lists parallel to the parameter that shows one occurrence
of any duplicated values within within each original list.
>>> aListOfListsDupes(manyLists)
[[2, 1, 3], [], [9], [2]]
>>> aListOfListsDupes(moreLists)
[[], [], []]
>>> aListOfListsDupes(moreListsB)
[[5,6],[],[]]
"""
def aListOfListsDupes(LOL):
newLOL=[]
#your code here
return newLOL
////

Answers

We used the count() method to count the number of occurrences of the element in the sublist L. If the count is greater than 1, we know that this element is repeated at least once. So, we append it to the duplicates list and then break out of the inner loop as we only need one duplicated element from each sublist.

The requested function will check every list in the parameter list of lists for duplicates and if any duplicate element exists in a list, it will return that list else it will return an empty list. The provided code for the function is given below:def a List Of Lists Dupes(LOL):    

newLOL=[]    for L in LOL:      

duplicates = []        for element in L:          

 if L.count(element) > 1:              

 duplicates.append(element)              

 break        newLOL.append(duplicates)    

return new LOL print(aListOf Lists Dupes

([[2,1,3,1,3,2],[3,4,5,6,7],

[9,4,2,7,8,6,3,1,9],[12,3,2,1,2]]))

The expected output is: `[[2, 1, 3], [], [9], [2]]`

In the same way, you can pass other lists as arguments to this function to get their duplicate elements. In the above function, we are iterating over all the sublists of LOL and checking for duplicate values. We used the count() method to count the number of occurrences of the element in the sublist L. If the count is greater than 1, we know that this element is repeated at least once. So, we append it to the duplicates list and then break out of the inner loop as we only need one duplicated element from each sublist.

To know more about inner loop visit:

https://brainly.com/question/29094848

#SPJ11

Hey Yo, i need some help, Whats 2+2?

Answers

Answer:

4

Explanation:

The answer to the question is four.

write an expression using the conditional operator (? :) that compares the values of the variables x and y and results in the larger of the two.

Answers

The conditional operator (?:) can be used to compare the values of two variables, x, and y, and return the larger of the two. The expression would look like this: x > y ? x : y.

The "?" in this expression denotes a condition, so the condition being evaluated is whether x is greater than y. If x is indeed greater than y, then the expression returns x; if not, then it returns y. For example, if x is equal to 8 and y is equal to 4, the expression evaluates to 8 (x > y ? x : y = 8). This is because 8 is greater than 4, and so the expression returns x, which is 8.

The syntax for this expression is very important and should be followed correctly. Otherwise, the expression won't work and may lead to unexpected results. It is also important to remember that the conditional operator only works with primitive data types, such as integers and booleans. It cannot be used to compare objects.

In conclusion, the conditional operator (?:) can be used to compare the values of two variables, x, and y, and return the larger of the two.

You can learn more about operant conditioning at: brainly.com/question/28179397

#SPJ11

Why are peripherals added to computers?
to limit their applications
to change their purpose
to expand their capabilities
to specify their functions

Answers

Answer:

To expand their capabilities

Explanation:

They allow users to do more with computers

Do all careers or professions need computer science? Why or why not?

Answers

Answer:

Most careers or professions need computer science

Explanation:

As humanity is improving technological wise most jobs will be replaced and other jobs would come into play and in order for individuals to become employed in jobs that will be available in the future to come they will have to have a degree in computer science or know how to operate computers.

Answer:

No not all careers and professions require computer science

Explanation:

There are so many careers, many in which you may not sit in front of a computer. If you become a farmer, janitor, teacher or more you may not need computer science skills.

hiiiiiiiiihwdawdfgthnythgrfergthyjuhgfd

Answers

Answer:

Your answer would be gas.

Explanation:

Steam is just water just evaporated.

no i will not marry u

Only length-1 arrays can be converted to python scalars.
a. True
b. False

Answers

Only length-1 arrays can be converted to python scalars.This statement is False.

What is python scalars?

In Python, a scalar is a single value, such as an integer, floating-point number, or Boolean value. Scalars are used to represent quantities that are not collections or arrays of values. They are often used in mathematical calculations, comparisons, and logical operations.

This statement is False, with some caveats.

In Python, a scalar is a single value, such as an integer, floating-point number, or Boolean value. An array is a collection of values, so it is not a scalar. However, NumPy, a popular numerical computing library in Python, provides an ndarray data type that can be used to represent arrays of values.

When using NumPy, there are several ways to convert an array to a scalar, but only if the array has a length of 1. For example, you can use the item() method to extract the single value in the array:

import numpy as np

a = np.array([1])

scalar = a.item()  # scalar is now 1

imilarly, you can use indexing to extract the single value:

import numpy as np

a = np.array([1])

scalar = a[0]  # scalar is now 1

However, if the array has a length greater than 1, you cannot convert it to a scalar using these methods. For example:

import numpy as np

a = np.array([1, 2])

scalar = a.item()  # raises ValueError: can only convert an array of size 1 to a Python scalar

In summary, the statement "only length-1 arrays can be converted to Python scalars" is mostly true, but it depends on the context and the specific library or method being used. In general, if you have an array with a length greater than 1, you should use array-specific operations and methods to manipulate the array rather than trying to convert it to a scalar.

Learn more about python scalars click here:

https://brainly.com/question/30634107

#SPJ4

Other Questions
2. Oil brought great ______ to the region A. Tourism B. Religion C. Growth D. Decline For each pair of points, think about the line that joins them. For which pair(s) is the line parallel to the x-axis? Select all correct answers. Question 29 (1 point)GNE PPPPer CapitaCountyPercent ofPercentUrbanLifeExpectancy(US DollPopulationof Age 65India00145442807812Australia31.5098113Nigeria1.05044According to the chart, which country has people living mostly in rural areas?IndiaUnited StatesAustraliaNigeria What biological molecule that is used for energy is represented by the structure below? Suppose a simple linear regression analysis provides the following results:b0 = 5.000, b1 = 1.875, sb0 = 0.750,sb1 = 0.500, se = 1.364and n = 24. Use this information to solve the following problems.(a) Test the hypotheses below. Use a 5% level of significance.H0: 1 = 0Ha: 1 01.State the decision rule.A.Reject H0 if p > 0.025.Do not reject H0 if p 0.025.B.Reject H0 if p > 0.05.Do not reject H0 if p 0.05.C.Reject H0 if p < 0.05.Do not reject H0 if p 0.05.D.Reject H0 if p < 0.025.Do not reject H0 if p 0.025. PLEASE HELP ASAP Translate the sentence into an equation.The sum of 5 times a number and 3 is 4.Use the variable c for the unknown number. Match the disease with the description. a. addison's disease b. cushing's disease c. graves' disease d. paget's disease hyperthyroidism What is a claim? (Please check all that apply)An answer to a question that's asked.A fact you're asserting is true.Data from graphs and observations.An explanation. a student left the camphor solution in the water bath for a long time to make sure that all the solvent was removed, when he came back, he did not find any product in the flask. explain. Can you check my answer for solving x and rounding to nearest tenth 10 points and brainliest if answered :D! Which area on the map would be MOST likely to have the most oil exploration in since the start of the 21st century? What are 5 things to identify a burn? Find the value of x as a fraction when the slope of the tangent is equal to zero for the curve:y = -x2 + 5x 1 1. The sum of two numbers is 81. The differenceis 13. Find the two numbers. Which example from early american history best illustrates the market economy of the british colonies? x^2 + 3x^2 + 4 - 3 help How do regulations keep the public safe? What was a result of the Battle of Gettysburg?O A. The South asked for help from Great Britain and Mexico.O B. The Confederate army ran out of supplies.O C. General Lee surrendered to General Grant.O D. The Confederate army never went north again.HELP PLZZ!! what are 12.95 mins 15.98