A customer seeks to buy a new computer for a private use at home.The customer primarily needs the computer to use the Microsoft PowerPoint application for the purpose of practice presentation skills.As a sales person what size hard disc would you recommend and why?

Answers

Answer 1

Answer:

The most common size for desktop hard drives is 3.5 inches,  they tend to be faster and more reliable, and have more capacity. But they also make more noise.

Explanation:

If you are continually deleting and installing programs or creating content, the disc must have good reliability.

Keep in mind that larger hard drives are also a little slower, so it is preferable to opt for two smaller ones. Large hard drives are partitioned so there is no problem gettin

chbdg good performance, but if you put everything on one big disk and it breaks, you will lose everything.

If you buy 2 small disks, check that the motherboard does not limit the speed of a second hard disk.


Related Questions


Describing How to Change the Order of Slides
Isabela realizes her presentation is not flowing well. She decides to sort the slides in a new way. Which view would
be most helpful to complete this task?


Answers

Answer:

the answer is B. Outline view

Answer:

b

Explanation:

Which composer below was not part of the classical period?
A. Beethoven B. Bach
C. Mozart

Answers

Explanation:

B. Bach

Thanks for your point


If a homozygous dominant parent is crossed with a homozygous recessive parent, the offspring will be:




Answers

Answer:

it will be heterozygous.

Explanation:

The required if a homozygous dominant parent is crossed with a homozygous recessive parent, the offspring will be heterozygous.

What is a homozygous dominant parent?

A homozygous dominant parent is an individual who possesses two copies of the same dominant allele for a particular trait. In genetics, an allele is a variant form of a gene. A dominant allele masks the expression of a recessive allele when both are present in a heterozygous individual.

Here,

If a homozygous dominant parent (having two dominant alleles, such as "AA") is crossed with a homozygous recessive parent (having two recessive alleles, such as "aa"), all of their offspring will be heterozygous (having one dominant and one recessive allele, such as "Aa"). The phenotype (appearance) of the offspring in this case will reflect the dominant trait.

Thus, the required if a homozygous dominant parent is crossed with a homozygous recessive parent, the offspring will be heterozygous.

Learn more about homozygous dominant parent here:
https://brainly.com/question/1084870
#SPJ6

Once a business determines that change needs to occur, what ahould the
business create?
A. Business operation
B. Business analysis
C. Business model
D. Business strategy

Answers

Answer:

D. Business strategy

Explanation:

Kono Dio Da!!

These statements describe a network server.

assigns MACs
manages network resources
provides network security
translates data sent between networks

Answers

Answer:

The statement that describes a network server is:

manages network resources

Explanation:

A server is a computer built and programmed to fulfill network needs. They might be able to perform regular computer tasks, but they are designed specially to connect several computers, create a space those computers can share, provide connectivity management to them and be able to receive, send, create, and copy data inside that network. In other words, it creates a space of interaction, allows interaction, and transfer data from this network to other networks and from other networks for its managed network.

Fill in each blank with the correct answer/output.

int[] vals = {7,5,3,9,0,37,93,16,68,6,99};

System.out.println(vals[vals[1]+vals[4]]);

Answers

Answer:

37

Explanation:

Given int[] vals = {7,5,3,9,0,37,93,16,68,6,99};

In programming, the position of each value in the list are known as index. The first value is always assigned index of 0 not 1, the second value is assigned index of 1 and so on. For example;

val[0] = 7 i.e value with index 0

val[1] = 5

val[4] = 0

In order to print out this value

System.out.println(vals[vals[1]+vals[4]]);

Substituting the index value val[1] and val[4] into the argument given

vals[vals[1]+vals[4]]

= vals[5+0]

= vals[5]

= 37 (value at the 5th index)

System.out.println(vals[vals[1]+vals[4]]);

= 37

This means that the system will print out 37 to the console

What does a photovoltaic cell do

Answers

Answer: Photovoltaic simply means they convert sunlight into electricity.

Explanation:

Answer:

Photovoltaic cells have the basic commitment to convert the sun’s energy into usable electricity.

Explanation:

Trust me it’s right

Any material that comes into contact with the body must be __________.

Answers

Answer:

]Disinfect using a fresh bleach solution or other disinfectant. ... If you have been exposed to blood or potentially infectious materials at work, what actions ... How should you dispose of contaminated sharps, such as glass or needles that ... ( )Body openings - infected material comes into contact with your eyes, nose or mouth.

Explanation:

Company B is setting up commercial printing services on their network. Which of these are advantages of centrally managed commercial printers? Check all that apply.

Answers

Answer:

Centralized management of printing activities, allowing administrators to manage all print devices using a network.

Explanation:

The advantages of centrally managed commercial printers are:

Printers can be easily created and deployed in virtual sessions such as Citrix or VMwareCentralized management of printing activities, allowing administrators to manage all print devices using a network.Reduces the number of printer related issues thereby increasing productivity.It provides a way of keeping record those who are printing and what have been printerAll print related jobs can be easily managed from a central controlled network.Increased security as a print server allows you to total control over who can print what and where High availability and redundancy due to pooling of printers Easily customize printer profile

The different between a compiler and a translaror

Answers

Answer:

Compiler converts the program from one computer language to another computer language that is translating from a higher level language to a lower level language. A translator usually has a fixed body of code that is required to translate the program.

Answer:

Answer: Compiler converts the program from one computer language to another computer language that is translating from a higher level language to a lower level language. ... A translator usually has a fixed body of code that is required to translate the program.

Explanation:

Explain in detail how we could collect solar energy from space and get it to earth

Answers

Answer: Reflectors or inflatable mirrors spread over a vast swath of space, directing solar radiation onto solar panels. These panels convert solar power into either a microwave or a laser, and beam uninterrupted power down to Earth. On Earth, power-receiving stations collect the beam and add it to the electric grid.

Hoped This Helped!!!!

Answer: Reflectors or inflatable mirrors spread over a vast swath of space, directing solar radiation onto solar panels. These panels convert solar power into either a microwave or a laser, and beam uninterrupted power down to Earth. On Earth, power-receiving stations collect the beam and add it to the electric grid.

Explanation:

Def sum_divisors(n): sum =1 # Return the sum of all divisors of n, not including n x=int(n**0.5) for i in range(2,(x//1)+1): if n%i==0: sum=sum+i if n%i==0 and n/i!=i: sum=sum+(n/i) return sum print(sum_divisors(0)) # 0 print(sum_divisors(3)) # Should sum of 1 # 1 print(sum_divisors(36)) # Should sum of 1+2+3+4+6+9+12+18 # 55 print(sum_divisors(102)) # Should be sum of 2+3+6+17+34+51 # 114

Answers

Answer:

This is a python program that counts the number of divisors of a given number and calculates the sum of the divisors.

Explanation:

The first line defines a function "sum_divisors" with an argument "n". The square root of the argument is converted to integer and assigned to the variable "x", then a for loop is used to iterate through the range 2 to the calculated nth number of divisors in the argument.The return keyword returns the sum value.

The function is called with several arguments and printed with the print function.

The Principal of a school requires to store the information about the students of his school.
Which application software should he use to create a database? (Do it as homework)

Answers

Answer:

Microsoft office access would be a good application to create a database......it has various advantages such as storage and retrival of data, etc.

Explanation:

By Ms Excel the school principle write everything and to create students profile principle sir or headmaster use Microsoft so that students id cards will be created.

Write the corresponding Python expression of the following mathematical expression.

Answers

Answer:

The code:

# Import math Library

import math

# Print the value of 2pi

print (math.pi * 2) ## output would be: 6.28318530718

Explanation:

Have you ever seen a Magic 8 ball? You ask it a yes-no question and then shake it to get a random response like “Signs point to yes!”, “Very doubtful”, etc. If you’ve never seen a Magic 8 ball, check out this video.

We encourage you to work in pairs for this challenge. Come up with 8 responses to yes-no questions. Write a program below that chooses a random number from 1 to 8 and then uses if statements to test the number and print out the associated random response from 1-8. If you need help with random numbers, see lesson 2.9.

public class Magic8Ball
{
public static void main(String[] args)
{
// Get a random number from 1 to 8

// Use if statements to print out 1 of 8 responses


}
}
1
public class Magic8Ball
2
{
3
public static void main(String[] args)
4
{
5
// Get a random number from 1 to 8
6

7
// Use if statements to print out 1 of 8 responses
8

9

10
}
11
}

Answers

Answer:

ok ok ok

]ok

ok

okm

ok

Explanation:

Other Questions
You will use a filter funnel in this experiment toA )measure pHB) collect pieces of cabbage C) dry pieces of cabbage D) separate cabbage from liquid Triad 1930 Piet Mondrian What is the color scheme demonstrated in this painting? What perspective is demonstrated? MULTIPLE ALLELES INHERITANCE-BLOOD TYPESIs it possible for a mom who is IaIa and a Dad who is IbIb have a child who is type B ? What type of tumors is called cancer? Benign Malignant Neoplasm All of the above How were women affected by the new republic?O A. They had to work outside the home.O B. They were able to run for office.O c. They were given the right to vote.O D. They did not gain political power. How to determine the function with the graph? Points A, B, and C lie on circle M such thatmABC = 262 . Find the measure of ABC .PLEASE HELPPPP This painting is by Pablo Picasso, entitled The Blind Mans Meal. What type of color scheme did Picasso use and its definition?a.He used a analogous color scheme, which occurs when the hues used are directly opposite one another on the color wheel.b.He used a monochromatic color scheme, which occurs when one color predominates,shades of black, tints of white, values of a hue.c.He used a analogous color scheme, which occurs when the hues used are next to one another on the color wheel.d.He used a monochromatic color scheme, which occurs when the hues used are created by combining equal parts of two primary colors. Based on what you have learned and the information in the graph, which of the following conclusions can you draw about the stock market trend?Stock prices reflect the poor economic conditions of the 1920s.Stock prices indicate that the 1920s were a great time of prosperity forbusinesses.Stock prices indicate that most Americans enjoyed a high standard of living in the 1920s. Current liabilities are obligations that are reasonably expected to be paid from Existing Creation of Other Current Assets Current Liabilities a. No No b. Yes Yes c. Yes No d. No Yes Which of the following best explains why the New York State Court of Appeals rejected the Sugary Drinks Portion Cap Rule? Which statement best describes the difference between Preconventional reasoning and Postconventional reasoning? find the value of y squared when y is -9 Jacobs pizza parlor sells pizza for $10 each, with a $20 delivery fee. Ashley's pizza parlor has a $12 delivery fee and sells pizza for $12 dollars each. At what point do the pizza parlors cost the same to deliver pizza? Find the volume of the cylinder. Round your answer to the nearest tenth.Please help! If Quadrilateral JKLM is a square, where points J(0, 5), K(4, 7), L(?, ?) and M(2, 1) are known. Find the coordinates of point LGroup of answer choices(7, 2)(6, 3)(5, 4)(4, 4) the histages were finally reales afther What was one effect of the Chinese Cultural Revolution? HELPPP PLSS WILL MARK AS BRAINIEST! David&dan share a lottery win of 9900 in the ratio 3:2 David then shares his part between himself,his wife and their son how much more does his wife get over their son What are the three types of sea ice and why is each important?