What software allows you to define vms and manage resource allocation and sharing among vms on a host computer?

Answers

Answer 1

Software that creates and manages virtual machines is called a hypervisor, also referred to as a virtual machine monitor or VMM (VMs). By virtually sharing its resources, such as memory and processing, a hypervisor enables a single host computer to support numerous guest virtual machines (VMs).

Using a hypervisor that supports numerous virtual machines has several advantages:

Speed: Quick creation of virtual machines is made possible by hypervisors.Efficiency: One physical server can be used more effectively when multiple virtual machines are running on one physical machine's resources thanks to hypervisors.Flexibility: Operating systems and the applications that go with them can run on a variety of hardware thanks to bare-metal hypervisors. Portability: Multiple operating systems may coexist on the same physical server thanks to hypervisors (host machine)

Learn more about hypervisor https://brainly.com/question/20892566

#SPJ4


Related Questions

A) Identify and describe your computer or laptop’s hardware, software, and operating system. B) Describe the installation process for printers and scanners. Identify possible malfunctions relating to this installation process. C) Research and describe how you would ensure computer and Internet safety. Describe how you would use ergonomics to minimize the detrimental effects of excess computer usage on your body.

Answers

My computer hardware is Lenovo Ideapad3; to install a printer we must connect it and follow the steps of the automatic software; protection on the pc is guaranteed by using an antivirus; injuries are prevented by taking active breaks and using ergonomic tools.

What is the hardware, software and operating system of my computer?

To know the specific data of our computer we must follow the following steps (Windows):

Hit the WIN+R keys on your computer to open RunA window will open at the bottom left of your monitorType Dxdiag in that windowPress Enter or OK to run it

The first thing that Windows will do is ask us if we want to go ahead and tell us that our computer may be connected to the Internet. Afterwards, it will take a few seconds to scan everything on it. After those seconds, we will be shown a window with the diagnostic tool in which we find a lot of information organized by tabs. In my case the hardware of my computer is:

Lenovo Ideapad 3.

How to install printers and scanners?

To install printers and scanners to our computer we can use different methods, one of them is to insert the CD that comes with our printer; the other process is to connect the device via cable or bluetooth and follow the steps in the automatic installation.

In general, this process is easy and usually has no errors. However, when it has errors and does not work correctly, we must uninstall and reinstall the software.

How to ensure safety when using the computer?

To prevent the security of our computer from being circumvented by a hacker, we must have an updated antivirus and periodically scan our computer to avoid malicious programs or files that harm our security.

How to avoid damage from overuse?

To avoid diseases, injuries or damage to our body due to excessive use of the computer, we must carry out the following actions:

Use filter lenses to protect our eyes.Use an ergonomic mouse and keyboard.Take active breaks during our work on the computer.Have a correct position while using our computer.

Learn more about computers in: https://brainly.com/question/21080395

#SPJ1

operating systems are the programs that allow you to edit documents, make presentations and create spreadsheets.

Answers

An operating systems are the programs that allow you to edit documents, make presentations and create spreadsheets is a false statement.

What are operating systems?

An operating system is known to be one of the most vital software that runs on a computer and it is one that helps you  manages the computer's memory as well as processes.

Note therefore, An operating systems are the programs that allow you to edit documents, make presentations and create spreadsheets is a false statement because the Word processing software does that work.

Learn more about operating systems  from

https://brainly.com/question/22811693

#SPJ1

operating systems are the programs that allow you to edit documents, make presentations and create spreadsheets.True or false

two routers, r1 and r2, connect using an ethernet over mpls service. the service provides point-to-point service between these two routers only, as a layer 2 ethernet service. which of the following are the most likely to be true about this wan? (choose two answers.)

Answers

a. R1 will connect to a physical Ethernet link, with the other end of the cable connected to R2.

b. R1 will connect to a physical Ethernet link, with the other end of the cable connected to a device at the WAN service provider point of presence.

c. R1 will forward data link frames to R2 using an HDLC header/trailer.

d. R1 will forward data link frames to R2 using an Ethernet header/trailer.

B (R1 will link to a physical Ethernet link, with the other end of the cable attached to a device at the WAN service provider point of presence.) and D (R1 will transmit Ethernet header/trailer-encoded data link frames to R2 for transmission).

Each router connects to an SP device in an SP facility known as a point of presence using a physical Ethernet link in the physical installation (POP).

Each customer's device is not connected through an Ethernet link. Both routers employ the same Ethernet standard header and trailer used on LANs from a data link standpoint; HDLC is irrelevant on these Ethernet WAN links.

Learn more on routers here:

https://brainly.com/question/9490122

#SPJ4

Which of the following is a responsibility of the hardware? (1 point)
O processing
O runtime prioritization
O memory allocation
O managing hardware

Answers

The option that is a responsibility of the hardware is option a: processing​.

What is a hardware in a computer?

Hardware is known to be a term that is seen as  the computer's tangible parts or its delivery systems.

It is one that helps in processing as well as saves or store and run the written instructions that is known to be given  by the software.

Therefore, based on the above, The option that is a responsibility of the hardware is option a: processing​.

Learn more about hardware  from

https://brainly.com/question/24370161

#SPJ1

your colleague has 15 years of log files full of performance data. the data needs to be sorted, but the file siz

Answers

Given that your colleague has 15 years of log files full of performance data. the data needs to be sorted, using a merge sort to divide the data into smaller chunks, sort them recursively, then merge results to produce the final sorted file with all data is given below:

The Merge Sort

import java.util.*;

public class Main {

public static void merge(String data)

{

String arr[]=data.split(";");

if(arr[0]==null||arr[1]==null) {

System.out.println(data);

return ;

}

String sorted_result=""; // to store the sorted alhanumeric character separated by comma

String pair=""; // to store the comparision pair

int i=0,j=0;

while(i<arr[0].length()&&j<arr[1].length())

{

char a=arr[0].charAt(i);

char b=arr[1].charAt(j);

if(a<b) // if the character of first array is smaller than second

{

sorted_result+=a+",";

pair+="("+a+","+b+") ";

i=i+2;

}

else

{

sorted_result+=b+",";

pair+="("+b+","+a+") ";

j=j+2;

}

}

while(i<arr[0].length())

{

char a=arr[0].charAt(i);

sorted_result+=a+",";

i+=2;

}

while(j<arr[0].length())

{

char b=arr[0].charAt(j);

sorted_result+=b+",";

j=j+2;

}

sorted_result=sorted_result.substring(0, sorted_result.length()-1);

System.out.println(sorted_result);

System.out.println(pair);

}

public static void main(String[] args) {

String input1="1,4,7,8;2,3,5,6";

merge(input1);

System.out.println();

String input2="H,L,M,P,P,R,S,b,d,i,n,o,o,p,s;1,5,5,6,7,8,C,U,V,V,W,f,h,r,s";

merge(input2);

System.out.println();

String input3="B,E,E,F,J,N,O,P,U,W,D;G,J,L,N,R,S,V,X,Y";

merge(input3);

}

}

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

what are some websites you commonly use​

Answers

Answer:

boredpanda.com

Explanation:

it has fun collections of tweets, stories, photos etc.

the name of the windows utility (part of the operating system that works as a tool to help you complete tasks) that allows you locate and see the contents of folders on your computer

Answers

Answer:

FILE EXPORER

Explanation:

in this clip, the filmmakers connect each shot using a technique called – . these editing choices are intended to maintain cinematic – and hide the edit.

Answers

The filmmakers connect each shot using a technique called Cutting on action.

These editing choices are intended to maintain cinematic hides the shift from one shot to the next and hide the edit.

What is meant by cutting on action?

Cutting on Action is known to be a term that is said to be used by editor and it is one that implies the  cuts in the middle of a given action to another shot that tends to matches the first shot's  said action.

Note that it is seen as a common editing method that tends to hides the shift from one shot angle  to another shot angle and this is often done  by stopping the first shot in the middle of another continuing action and then beginning the next shot at some distance along in the similar action.

Therefore,  The filmmakers connect each shot using a technique called Cutting on action. These editing choices are intended to maintain cinematic hides the shift from one shot to the next and hide the edit.

Learn more about filmmakers from

https://brainly.com/question/28110104
#SPJ1

__________ software aids architects, engineers, and many others who need to create a digital model of an object.

Answers

CAD software aids architects, engineers, and many others who need to create a digital model of an object.

What is CAD software used for?

CAD design is  known to be a kind of a software that is often used by architects, construction managers, as well as engineers and it is one that has said to have taken over manual drafting.

Note that it is said to be a tool that helps its users to be able to make designs in 2D as well as in 3D form.

Therefore, CAD software aids architects, engineers, and many others who need to create a digital model of an object.

Learn more about CAD software from

https://brainly.com/question/14350050

#SPJ1

Which property of a plaintext password is most effective at defeating a brute-force attack?

Answers

The property of a plaintext password is most effective at defeating a brute-force attack is The length of the password.

Which property of a plaintext password is used for defeating a brute-force attack?

The length of the password is known to be very vital in this type of an attack.

Note that when the password is one that do not have any kind of complexity that is of it is just simple dictionary words, it is one that can make a system to  be still be vulnerable but if it is seen as a long password, the system may still be in a vulnerable state but when the output space is small it makes it hard and difficult.

Therefore, The property of a plaintext password is most effective at defeating a brute-force attack is The length of the password.

Learn more about brute-force attack from

https://brainly.com/question/17277433

#SPJ1

What comparison operator is used to test whether an expression does not equal another expression?

Answers

A comparison operator which is used to test whether an expression does not equal another expression is: !=

What is programming?

Programming can be defined as a process through which software developer and computer programmers write a set of instructions (codes) that instructs a software on how to perform a specific task on a computer system.

In Computer technology, a comparison operator can be defined as a type of binary operator that is used for comparing the data values in a field (expression) to either the data values in another field (expression) or a constant.

In conclusion, a comparison operator which can be used to test whether an expression does not equal another expression is the != operator.

Read more on comparison operator here: https://brainly.com/question/2647100

#SPJ1

freddy wants to take up a few platform-specific courses for his new job. which courses can he take? to be able to perform for programming languages specific to a certain platform, freddy can take courses such as and .

Answers

Freddy can enrol in classes in HTML5 and CSS3 to learn how to function for programming languages particular to a particular platform.

The term "CSS 3" refers to Cascading Style Sheets revision 3, which is a style sheet programming language created for describing and enhancing the presentation of a webpage (document) expressed in a markup language like:

XMLHTML

What is it HTML 5?

The term HTML 5, which stands for hypertext markup language revision 5, can be referred to as a standard computer language used for creating and presenting websites or webpages.

Freddy can attend classes in HTML5 and CSS3 to learn how to use platform-specific programming languages to do a number of things.

Learn more about programming languages:

https://brainly.com/question/27905377

#SPJ4

A file path is a complete address that describes the exact location of a file. true false

Answers

It is true that a complete address that specifies a file's precise location is known as a file path. That question is related to file system.

A file system stores and arranges files on some type of storage device—typically one or more hard drives—in a way that makes it simple to access and retrieve them. The majority of current file systems store the files in a tree-like (or hierarchical) form.

One or more root nodes can be found at the top of the tree. There are directories and files beneath the root node (folders in Microsoft Windows). Each directory has the ability to hold files and subdirectories, which in turn have the ability to hold files and subdirectories, and so on, potentially indefinitely.

The sample directory tree with a single root node is depicted in the accompanying diagram. Multiple root nodes are supported by Microsoft Windows. Each root node corresponds to a volume, like C: or D: The root node that the Solaris OS supports is identified by the slash (/).

Learn more about file system https://brainly.com/question/11994563

#SPJ4

define a function calcpyramidvolume with double data type parameters baselength, basewidth, and pyramidheight, that returns as a double the volume of a pyramid with a rectangular base. relevant geometry equations: volume

Answers

The defined function is given below:

The C++ Code

#include <iostream>

using namespace std;

/*

Define a function PyramidVolume with double parameters baseLength, baseWidth, and pyramidHeight, that returns as a double the volume of a pyramid with a rectangular base. Relevant geometry equations:

 Volume = base area x height x 1/3

 Base area = base length x base width.

 (Watch out for integer division).

*/

/* Your solution goes here  */

double PyramidVolume(double baseLength, double baseWidth, double pyramidHeight){

double baseArea = baseLength * baseWidth;

double vol = ((baseArea * pyramidHeight) * 1/3);

return vol;

}

int main() {

 cout << "Volume for 1.0, 1.0, 1.0 is: " << PyramidVolume(1.0, 1.0, 1.0) << endl;

  return 0;

}

Read more about C++ programming here:

https://brainly.com/question/15411348

#SPJ1

you work as the it administrator for a small corporate network. to accommodate specific network communication needs for an upcoming project, you need to upgrade the network connection's speed for the windows workstation located in the executive office.

Answers

We need to upgrade the network connection's speed for the windows workstation located in the executive office for that we will Install the network interface card and configure the Ethernet cable connection between the computer and the LAN network.

The connecting and communication of computer equipment is the function of the computer networking system. An adapter known as a network interface card allows the computer to connect to a network (NIC). The NIC's operations are managed by the operating system.

The speed and port state of the NIC are configured, and it is linked to the LAN using a straight through cable.

To check for LAN network connectivity on the PC, use the ipconfig/all and netstat commands. Another option is to use the ping command.

Launch Start. To open the console, perform a search for "Command Prompt," then select the top result. To check the connection speeds of all the Ethernet and Wi-Fi adapters, use the command after typing it: where netEnabled=true in wmic nic get name and speed.

Learn more about workstation:

https://brainly.com/question/17121112

#SPJ4

A/an _______________ may be required for a position such as information technology consultant, information systems manager, or information security analyst.

Answers

A certification may be required for a position such as information technology consultant, information systems manager, or information security analyst.

What is certification?

Certification can be defined as a process which describes the formal recognition that is given to a graduate student for the successful completion of an academic programme, course of study such as:

FinanceEducationInformation technology consultant.Information systems manager.Information security analyst.Engineering

In this context, we can reasonably infer and logically deduce that a certification may be required for a position such as information technology consultant, information systems manager, or information security analyst.

Read more on certification here: https://brainly.com/question/13412233

#SPJ1

What will be stored in the variable age after this code snippet executes? public static void main(string[] args) { int age = 16; age ; age--; age ; }

Answers

The age that will be stored in the variable age after this code snippet executes is 17.

What is code snippet?

Code snippets are known to be little blocks of codes that are known to be reusable and they are also said to be codes that can be placed inside of a code file through the use of a right-click menu (context menu) command or  one can be able to make use of a combination of hotkeys.

Note that they are the ones that has the commonly used code blocks and in the case above, the age is push forward by one.

Therefore, The age that will be stored in the variable age after this code snippet executes is 17.

Learn more about code snippet from

https://brainly.com/question/24080680

#SPJ1

What will be stored in the variable age after this code snippet executes?

public static void main(String[] args)

{

int age = 16;

age++;

age--;

age++;

}

which of the following should go in the place of /* missing line */ to get this input from the user and store it in the variable favoritemeal?

Answers

favoriteMeal = scan.nextLine(); should be used to get an input from the user and store it in the variable favoriteMeal.

What is a variable?

A variable can be defined as a specific name which refers to a location in computer memory and it is typically used for storing a value such as an integer.

This ultimately implies that, a variable refers to a named location that is used to store data in the memory of a computer. Also, it is helpful to think of variables as a container which holds data that can be changed in the future.

In Computer technology, there are two main methods for passing variables to functions and these include the following:

Pass-by-value.Pass-by-reference.

Based on the given lines of code, favoriteMeal = scan.nextLine(); should be used to get an input from the user and store it in the variable favoriteMeal.

Read more on variable here: brainly.com/question/12978415

#SPJ1

Complete Question:

The following code is to be used to get the favorite meal from the user.

Scanner scan = new Scanner(System.in);

String favoriteMeal;

System.out.println("Enter favorite meal");

/ missing line /

Which of the following should go in the place of /* missing line */ to get this input from the user and store it in the variable favoriteMeal?

Linux a user typed in the command pwd and saw the output: /home/jim/sales/pending. how could that user navigate to the /home/jim directory?

Answers

Linux a user typed in the command pwd and saw the output: /home/jim/sales/pending. the way in which that user can navigate to the /home/jim directory? is cd ../..

What is a Directory?

This refers to the special type of file that has only the information needed to access files.

Hence, we can see that Linux a user typed in the command pwd and saw the output: /home/jim/sales/pending. the way in which that user can navigate to the /home/jim directory? is cd ../..

This would take him back to the root directory which is home in the Jim directory and he can start viewing the files in their parent-child order.

Read more about directories here:

https://brainly.com/question/28391587

#SPJ1

Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat. _________________________

Answers

Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat is a true statement.

What is compromised system in networking?

A network or system that is known to be compromised is one when  there has been a breach in regards to confidentiality, as well as integrity or presence of its infrastructure or components in any type.

Therefore, based on the above, one can say that Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat is a true statement.

Learn more about compromised system from

https://brainly.com/question/28482553

#SPJ1

Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat. true or false.

During which phase of the development of the internet was the domain name system (dns) introduced?

Answers

Institutional phase of the development of the internet was the domain name system (DNS) introduced.  Thus, option B is correct.

What is a domain name system?

Web addresses are converted to email accounts via the Domain Name System (DNS), what computers utilize to view online articles.

In the institutional phase of the development, the major changes are happening in this the DNS or the domain name system is being introduced which helps in connecting the internet address to the IP of the customer or the person who is being accounted for. Therefore, option B is the correct option.

Learn more about the domain name system, here:

https://brainly.com/question/28145453

#SPJ1

The question is incomplete, the complete question will be:

A) Commercialization phase

B) Institutional phase

C) Innovation phase

D) Consolidation phase

in which domain of a typical it infrastructure is the first layer of defense for a layered security strategy?

Answers

The domain of a typical IT infrastructure that is the first layer of defense for a layered security strategy is the firewall.

What is a Firewall?

This refers to the set of protection that determines what external network traffic(internet) should or should not be allowed to pass the internal network.

Hence, we can see that The domain of a typical IT infrastructure that is the first layer of defense for a layered security strategy is the firewall and this is because it protects and filters incoming network.

This firewall helps to act as the first layer of defense for a layered security strategy as it allows or prevents network access.

Read more about firewalls here:

https://brainly.com/question/13693641

#SPJ1

____ work to prevent an attack by blocking viruses, malformed packets, and other threats from getting into the company network.

Answers

Intrusion prevention systems work to prevent an attack by blocking viruses, malformed packets, and other threats from getting into the company network.

An intrusion prevention system abbreviated as IPS is a tool that plays a major role in the network security of an organization. This system continuously scans for any activity or viruses that may harm the company network and provides measures to prevent such types of activity.

It is more useful compared to the intrusion detection system as it performs the function of both detecting and blocking the threat to the network while the intrusion detection system can only disclose the threat.

Mostly, the intrusion prevention system works by detecting the threat and reports to the administrator to prevent any harmful activity or automatically blocks the source of threatful activity, or transforms the firewall to stop such further attacks hereafter.

To learn more about intrusion prevention systems, click here:

https://brainly.com/question/18883163

#SPJ4

A computer can be a flexible and powerful tool by using what type of software?

Answers

A computer can be a flexible and powerful tool by using an application software.

What is an application software?

Application software is known to be a type of computer program that is known to often carry out a particular task such as personal, educational, as well as  business function.

Note that all application is set up so that they can be able to assist end-users in carrying out a lot of tasks that are linked to productivity, creativity, etc.

Therefore, A computer can be a flexible and powerful tool by using an application software.

Learn more about application software from

https://brainly.com/question/26954052

#SPJ1

1. Why is it important to learn about cybersecurity?
2. What are you most excited to learn more about in the world of
cybersecurity?

Answers

1. To protect your device from getting bugged.

in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack.

Answers

in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack is a False statement.

What is a rack and what is its purpose?

A rack is known to be a term that is used in computing as well as in an IT (information technology).

The term is known to be one that connote the act that is acting as a supporting framework that tends to holds hardware modules.

In the above context, racks are seen as a kind of  contain servers, hard disk drives as well as  other forms of computing equipment.

The Racks are known to be tools that make it possible to place in a lot of equipment in a little physical footprint without  the need for shelving.

Therefore, in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack is a False statement.

Learn more about consoles  from

https://brainly.com/question/27031409

#SPJ1

in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack. True or False. .

Why is John Von Neumann a remarkable name in the history of the computer?​

Answers

Answer:

John Von Neumann is one of the most famous people in the history of computers because of the fact that he came up with the concept of speedy computers with data, "the storage program technique". He introduced idea to help out with high speed digital data

One of his important contributions in this field was the development of a logical design for computers that paid attention to such concerns as data storage and the processing of instructions. This design, called “von Neumann architecture,” became the basic concept of most computers

Explanation:

Answer: John Von Neumann is one of the most famous people in the history of computers because of the fact that he came up with the concept of speedy computers with data. "the storage program technique".

Explanation:

an attack that takes place before the security community and/or software developers become aware of and fix a security vulnerability is called a zero-day attack.

Answers

An attack that takes place before the security community and/or software developers become aware of and fix a security vulnerability is called a zero-day attack is a true statement.

What is security?

Security can be defined as the way where a secure environment or the surrounding are being present, this is basically of danger or threat place. It reduces or a lot of insecurities as well as provides safety to the people are an individual group

A zero-day attack is what happens when a hacker successfully exploits a weakness while software engineers can identify a remedy.

Due to their capacity to present as any type of more general software weakness, zero-day bugs can start taking on nearly any shape which may result in great damage and loss.

Learn more about security, here:

https://brainly.com/question/28070333

#SPJ1

write the header file (.h file) of a class acc2 containing: a data member named sum of type int. a constructor accepting no parameters. a function named getsum that accepts no parameters and returns an int.

Answers

// acc2.h

// c++ class header for acc2
class acc2
{
public:

// getsum()
int getsum()
{
return sum_;
}

// Default constructor
acc2()
{
sum_ = 0;
}

private:
int sum_;
}

What were two weaknesses of the First New Deal?

A. It failed to end massive unemployment.
B. It created a huge national deficit.
C. It created tension within labor unions.
D. It failed to properly regulate the banks.
E. It caused people to distrust the banks.

Answers

Answer:B. It created a huge national deficit.

Explanation:

B.The New Deal failed because Roosevelt created uncertainty through experimentation, protectionism, regulation, and raising taxes.

The New Deal failed because the NRA, by fixing prices, damaged American business. Folsom explains that the traditional free market system, where businesses compete and innovate to sell products of varying price and quality to choosy customers was overthrown

D. It failed to properly regulate the banks.

.The next day, Roosevelt declared a four-day bank holiday to stop people from withdrawing their money from shaky banks. On March 9, Congress passed Roosevelt’s Emergency Banking Act, which reorganized the banks and closed the ones that were insolvent.

The Great Depression: Causes and Early Events: Mastery Test

-

Hope this helps :)

Other Questions
1. Brittney Vargas undergoes 2 displacements while playing field hockey. First, she goes26.5 m, West. She then turns and goes 18.7 m, South. What is Brittney's resultantdisplacement? (Magnitude and direction!!!) Cul es un nmero primo divisor de 30?A.5B.10C.6D.15 An integral part of the managerial process of crafting and executing strategy includes? Is Mary Coopers Diary a reliable source? And is it Primary or secondary? On which object will Earths gravity act with the greatest magnitude?(1 point)a bananaa bananaa televisiona televisiona toastera toastera piano in an arcade game, nick can earn up to 10 tickets depending on which slot his coin goes through. if he plays the tournament six times what is the most significant number of tickets nick earn hich of the following pieces of physical evidence was discovered as a mark of identification during the 1800s? fingerprinting fingerprinting eye-witness ids eye-witness ids dna testing dna testing lie-detector test lie-detector test you are caring for a patient in her hospital room when you notice a problem with the electrical cord on the television in her room. you should: Solve equation. 27-6 d=7+4 d When preparing for an informational interview, what is one of the key "external preparations" you should check?. Would a reaction occur if a piece of metallic Sn were placed in distilled water with a piece ofmetallic Zn? A country that __________ presents a favorable benefit-cost-risk trade-off scenario for foreign expansion. continued use of anabolic steroids is linked to pressure regarding our what Which portion of the digestive system secretes acid, stores food, and performs mechanical digestion? Summarize the effects of the Hundred Year's War on England and France. (Write in paragraph form at least 5 sentences) The inference is made after understanding the Neuroimaging studies show that patients with schizophrenia often have enlarged ________. hypothalamus hypothalamus ventricles ventricles thalamus thalamus temporal lobes temporal lobes Why should I probably get my first credit card from the same institution that has my checking and/or savings account?Because building a relationship with a financial institution makes good OA sense You should not. You should get your first card at one of those really cool OB. student websites. A better idea is to pick your credit card company based on which gift I like Oc the best. OD Because local institutions offer better gifts a horizontal directed force of 252 n is needed to keep a 555-n box sliding on a level wooden floor at a constant speed. what is the coefficient of sliding friction ? Convert 6000 meters into miles. Round your answer to the nearest hundredth