Which component, located on the motherboard, carries out all the instructions provided by computer programs? ram?

Answers

Answer 1
The Chipset is the component located on the motherboard, this carries out all the instructions provided by computer programs. It is the integrated circuit that manages all the data flow between processor and memory. It usually works with microprocessors and plays a crucial role in determining system performance.

Related Questions

A right turn should be from the right lane into the right lane of the roadway entered. True or false. A. True B. False

Answers

it depends if it's America or another continent but assuming it's America I would say A.True

After a worksheet has been displayed in page layout view, page breaks are indicated by ________ in normal view.

Answers

After a worksheet has been displayed in page layout view, page breaks are indicated by dotted lines in normal view. Typical view for used for creating and viewing presentation slides is called normal view and is also known as slide view. Which offers a full size view of a slide, making it easier to create a slide.

When you tell a computer what to do, you are providing input?

Answers

True: Input is the command which we give it to the computer to perform a certain task.

In other words, A computer is an electronic machine that processes information, it takes in raw information (or data) at one end, stores it until it's ready to work on it, chews and crunches it for a bit, then spits out the results at the other end. All these processes have a name. Taking in information is called input, storing information is better known as memory (or storage), chewing information is also known as processing, and spitting out results is called output

What would happen if computers only had input peripherals and a CPU?

A. Computers would process and display data.
B. Computers would receive signals and display data.
C. Computers would receive signals and process data.
D. Computers would receive signals, process, and print data.

Answers

Assuming it has all the correct inputs and a CPU it would only be able to receive signals via the input and process that data. There are no display outputs or printer so the answer is probably C.

What would happen if computers only had input peripherals and a CPU is that: C. Computers would receive signals and process data.

A computer can be defined as an electronic device that is designed and developed to receive data in raw form as an input and then processes these data into an information (output) that could be used by an end user.

Basically, the main part of a computer include the following;

Central processing unit (CPU): this is the brain of a computer and it does all the processing and logical control.Input devices (peripherals): keyboard, mouse, scanner, etc.Output devices (peripherals): printer, monitor, speaker, etc..Motherboard.Memory and storage device: random access memory (RAM) and read only memory (ROM).

Hence, if a computer only has input peripherals and a central processing unit (CPU) it would receive signals and process data respectively.

Find more information: https://brainly.com/question/17402566

import static java.lang.System.*;
import java.util.Scanner;

public class Sales{

//you haven't learned about "static" yet but take it on faith that it is needed
//we'll discuss in future classes what it actually means and why you need it
//create a private static variable for price
//create a private static variable for discountRate - it's an integer
//create a private static variable for tax


// the sale method takes in no parameters
// there are 3 print satements and the method returns the final sale price
public static double sale(){

//write your code here. Use the Word doc example as a guide to what the print statements
//should look like. Don't forget the "return" statement.

}

/*
*The main method is what is executed when the "run" button is clicked.
*It is necessary, in this case, for the program to be tested.
*Actually study this code and trace through it to see how the Scanner is used to assign
* values to the variables. Also pay attention to the use of print, println and \n to cause the
* output to be formatted the way it is in the example.
*/

public static void main(String[] args){
Scanner kb = new Scanner(System.in);
System.out.print("Please enter a price: ");
price = kb.nextDouble();
System.out.println(price + "\n");
System.out.print("What is the tax rate? ");
tax = kb.nextDouble();
System.out.println(tax);
discountRate = (int)(Math.random() * 40);
System.out.println("Result returned is " + sale());
}
}




Can anyone help with this

Answers

First you add the three static variables as instructed:

    private static double price;
    private static int discountRate;
    private static double tax;

Then you implement the sale() method:

public static double sale(){
    System.out.printf("Price before discount: %.2f\n", price);

    double sale = price * (1-(double)discountRate/100.0);
    System.out.printf("Price after discounting %d%% but before tax: %.2f\n", discountRate, sale);

    sale *= (1+tax/100.0);
    System.out.printf("Discounted price with %.1f%% tax added: %.2f\n", tax, sale);

    return sale;
}

I kind of took a stab at how to calculate the sale. Not sure if the tax has to be added before or after the discount. But I'm sure you can fix that if needed.

Richard works in a café for six hours a day and is paid $6 per hour for any extra time worked. If Richard worked 6.5 hours on Monday, 6 and a half hours on Tuesday, 6 hours on Wednesday, 6 hours on Thursday, and 6 hours and 30 minutes on Friday, how much extra money will Richard earn that week?

Answers

assuming he works 6 hours a day,
Richard would be paid $6 extra that week

If a computer is having trouble navigating to a website when you enter the url into the browserâs address box, but is able to access the site when you enter the web serverâs ip address, which server available to your network should you make sure is functioning correctly?

Answers

"DNS" domain name server. It's like a phone book. Say you typed in " Facebook.com" it goes to the DNS. The dns server looks up the up address for you. So you don't have to remember IP address.

In spreadsheet software, use ____ to create meaningful data summaries to analyze worksheets containing large volumes of data.

Answers

In spreadsheet software, use pivot tables to create meaningful data summaries to analyze worksheets containing large volumes of data.

Attacks that take place against web based services are considered to be what type of attack?

Answers

cyber attack is correct

What is jpeg? what considerations have to be kept in mind with jpeg?

Answers

Joint Photographic Experts Group

Proprietary file types are easily displayed in Word documents, Web pages, etc.
Question 15 options:

True


False

Answers

it should be true :)

Answer:

It is true

Explanation:

I took the test

1. How should a cover letter begin?
A. With an informal greeting like "Hey, there!"
B. With the hiring manager's name
C. With the name of the position
D. With "To Whom it May Concern"

2. If an occupation is projected to neither grow nor decline over the next 10 years, how would you rate the job outlook?
A. Advancing
B. Steady
C. Strong
D. Weak

Answers

I am not sure about 1 but on number 2, the answer would be B because the occupation is staying the same, or steady
A cover letter began with the hiring manager's name. Thus, option (B) is correct. When the job  is projected to neither grow nor decline over the next 10 years, then it is inferred as Steady. Thus, option (B) is correct.

What is a Cover Letter?

A cover letter refers to the document attached with the resume  that provides additional information about skills and experiences related to the job which the applicant is applying for. It is also known as application letter.

It is written in the paragraph form which includes about candidate's skills  experience and achievements in relation to the position. Furthermore, it is begun with the hiring manager's name.

If over the next ten years, an occupation neither increase nor contract, is shows that it that stable situation.

Therefore, It can be concluded that  option (B) is correct for first question and option (B) is correct for second question.

Learn more about cover letter here:

https://brainly.com/question/14204316

#SPJ2

Hard disk storage technology can be classified as ____ storage.

Answers

Persistent (between boots) or permanent.

What is the difference between a syntax error and a logical error?

Answers

A syntax error can be a simple mistake as a typo or an extra space. A logical error has to do with the code structure, and if it makes sense.

Hope this helps!

List three considerations when you choose memory.

Answers

1)How many memory cards (how many can you computer hold)
2)Company (some companies run better than others)
3)Amount of memory (xGb)

Which are types of online resources that students can use for help? Check all that apply.

Answers

What are the choices ?

Answer:

A, B,E.

have a great day

To get a sense of your digital footprint, you should: Question 2 options: Google yourself regularly, and monitor what your friends post, in case they've posted something about you Google yourself once a year Google yourself every five years Delete all of your accounts and start fresh

Answers

Let us examine the given answers.

a) Google yourself regularly, and monitor what your friends post.
  Verdict: This answer is correct, but it is also necessary to look for yourself on other search engines.

b) Google yourself once a year
  Verdict: Once a year is better than doing nothing, but more than once a year is preferable.

c) Google yourself every five years.
  Verdict: The time interval is too long. Your reputation could easily be damaged, or your identity could be stolen in less than 5 years.

d) Delete all your accounts and start fresh.
   Verdict: This will not solve the problem of having your reputation damaged, or having your identity stolen. Information on the web is preserved ins storage vaults for long periods of time.

Answer: 
Google yourself regularly, and monitor what your friends post. Also, search for your name on other search engines.

What information would be included in the data portion of an ethernet frame on an ip network?

Answers

I hope this is a trick question. The header portion of a packet has the networking stuff. The data portion has, the data.

_____ does not allow changing service or bandwidth because a website allows illegal media sharing

Answers

Final answer:

Net Neutrality does not allow changing service or bandwidth because a website allows illegal media sharing.

Explanation:

Net Neutrality ensures that internet service providers treat all online data equally, prohibiting discrimination or favoritism. It doesn't permit altering service or bandwidth based on the content of websites, including those facilitating illegal media sharing. Upholding Net Neutrality principles means ISPs can't selectively throttle or block access to specific sites or services.

Instead, they must provide consistent and nondiscriminatory access to all online content. This ensures fair and open access to information and services for users, regardless of the nature of the content they access. Thus, Net Neutrality safeguards against arbitrary restrictions based on the legality or illegality of online activities.

Spreadsheet software creates a ____, composed of a grid of columns and rows

Answers

Spreadsheet software creates a worksheet, composed of a grid of columns and rows.

To research scholarly information for her history project, Lucy should most likely visit a

a .com website.
b .edu website.
c .gov website.
d .org website.

Answers

Answer: The correct answer is choice b, a .edu website.

Explanation: In order to research scholarly information for her history project, Lucy should most likely visit a .edu website. Websites that end in .edu are normally educational institutions, which which be the most likely to contain scholarly articles.

To research scholarly information for her history project, Lucy should most likely visit a .edu website. The correct option is b.

What is a website?

A web page (or webpage) is a World Wide Web hypertext document. A web server serves up web pages to the user, which are then displayed in a web browser.

A website is made up of several web pages that are linked together by a common domain name.

The world wide web is made up of all of the websites put together. The website can be of various types, such as an e-commerce website, a social media website, or a blog website, and each website serves a different purpose, but they all have several linked web pages in common.

When choosing a domain name, one of the top-level domain names that can be used is "edu." It generally refers to the domain name's owner as a four-year college or similar educational institution.

Thus, the correct option is b.

For more details regarding a website, visit:

https://brainly.com/question/19459381

#SPJ6

To connect multiple usb devices to a single usb port, a ____ can be used.

Answers

USB hubs can be used in this situation. These hubs typically have four to six USB ports, and can thereby allow the connection of more devices than the typical one-to-one connection that a standard USB port will give. This allows the user to expand the number of devices that the computer can read at any one time.

Name two purposes of creating a microsoft account for use in visual studio 2015

Answers

Creating a Microsoft account for use in Visual Studio 2015 means that you will get a better and optimized user experience, with several benefits.
Some of the purposes why you should create an account are:
1. free software, training and support from Visual Studio and broad range of benefits
2. synchronized Visual Studio Settings, which means that you will have for example the same layout, window and color theme, or whatever you select in the settings, every time you log in with your account


What type of file system is used by sdxc memory cards?

Answers

Answer:

ExFAT

Explanation:

A: Required: Create and delete file of the programs are a. process control b. file management ... question_answer Q: 350. __________ is used to shift processes so they are contiguous

Which of the following definitions describes a receptacle ground fault circuit interrupter (GFCI)? A. Includes an extension cord B. Protects a worker by increasing the duration of an electrical shock C. Protects users from ground faults when someone connects electrical equipment to a GFCI protected outlet D. Replaces a circuit breaker on the main circuit board Suspend Assessment

Answers

C. Protects users from ground faults when someone connects electrical equipment to a GFCI protected outlet

A web application server that is compromised in a cross-site scripting attack is said to be

Answers

Cross-site scripting attack ( XSS ) occurs when malicious script are injected into web sites. An attacker uses web application to send malicious code.
Answer:
A web application server that is comprised in a cross-site scripting attack is said to be B. injected.     

Which device provides access to wireless/mobile devices within a local area network?

Answers

A wireless router is the main source of wireless network access (or WiFi), providing devices such as phones, tablets and laptops with connection to the network.

What is the proper course of action for the following scenario? You want to expand a computer’s capability to play and process video. Which of the following must you do?
Install a video card into a socket on the motherboard
Install a video card into a slot on the motherboard
Install a video card into a port on the motherboard
Install a video card into a chipset on the motherboard

Answers

Install a video card into a slot on the motherboard Since you're wanting to install a new video card in your computer, let's look at the provided options and see what makes sense. Install a video card into a socket on the motherboard * Most motherboards have sockets that you can use to replace the processor or increase the amount of RAM they have. So plugging a video card into a socket doesn't make sense in this context. Install a video card into a slot on the motherboard * Most motherboards have expansion slots that you can plug in new devices and cards such as video cards, audio cards, etc. This makes sense in the context of you adding a new video card to your computer and is the correct choice. Install a video card into a port on the motherboard * Ports are generally used to attach external devices for the computer to communicate with. Some examples would be serial ports, or USB ports. The video card you're adding will likely have some video ports such as HDMI, DVI, or other types to connect to the monitor, but as mentioned, ports are generally used to communicate with devices EXTERNAL to the computer. So this is a bad choice. Install a video card into a chipset on the motherboard * The chipset on a motherboard is the set of support chips to provide the processor with access to the bus controlling data traffic on the motherboard between expansion slots, I/O devices, RAM, etc. Motherboards are generally designed around a chipset and you can not replace the chipset to upgrade the motherboard. So this is the wrong answer.

Answer:

Install a video card into a slot on the motherboard

Explanation:

David’s gross pay is $450, and his total deductions were $49. What is his net pay?

Answers

the net pay is the gross pay after deductions so his net pay would be 401 dollars
His net pay would be $401. 
This is the answer because $49 was the amount of the total deductions from his gross pay. 
$450 - $49 = $401.
So $401 is the correct answer.

in order to reduce the file size of an image in word the user should use

Answers

To reduce the file size of an image in Word, the user should compress the image. This action can be done through the Picture Tools in Word by selecting the image, then choosing the Compress Pictures option, which allows the user to reduce the image resolution and delete cropped areas.

Reducing the file size of images can make documents easier to share and quicker to open, especially important when dealing with large files or limited storage capacity. In Word, this is typically achieved through the in-built Compress Pictures feature, found in the Picture Tools format tab. This feature helps the user adjust the image properties to minimize its file size while attempting to maintain an acceptable level of image quality. Another option includes saving the image with a lower resolution or using a more efficient image format before inserting it into the Word document.

Other Questions
Explain the contrast in elenas feelings toward her own home and eugenes house. cite descriptive details that reflect these feelings. What is Annie tone in the pages line 121-149 What establishes major government institutions and gives them the power to govern? What is the angular velocity of a 6-foot pendulum that takes 3 seconds to complete an arc of 14.13 feet? Use 3.14 for pi How do I solve a liner equation in the form a(x-b)=cx? I have no idea plz help Which factor contributed most directly to the Battle of Little Bighorn? A.) Lakota treaty violations D.) over-hunting of the buffalo C.) the passage of the Dawes Act D.) the start of the Dakota gold rush Steps to divide 125.00 by 7.75 Jenny has been saving quarters in a piggy bank since she was born. She currently has 192 quarters in her piggy bank. She wants to save $75 to buy a new Ipod, so she decides to add 2 quarters every day. She sets up and solves the equation shown. What does her solution mean?y = 192(.25) + .25x75 = 192(.25) + .25x27 = .25xx = 108Question 1 options:She needs to save an additional $108.She needs to save 216 more quarters.She needs to save for 108 more days.She needs to save an additional 108 quarters. Solve 2x - 5 = 2x + 4x - 12 plz :) A(n) _________ allows users to communicate and share information between computers What describes the federal governments response to racial violence in the south in the late 1800s When gregg first started drinking alcohol, he needed only one or two beers to feel "buzzed"; now he needs at least four or five beers before he feels anything. what process describes gregg's need for more alcohol before feeling its effects? Subtract (enter answer is standard form)(-2x^4-2x^3+8x^2+2)-(x^4-5x^3+2x+7)Which graph represents the inequality? (has picture)2x-3y6Multiply8y^4(2y^4-3y^3+5y)Solve for x0=7x^2+x+5Harold and Helen both spend 3 hours reading a novel. Helen reads 30 more pages than Harold. Helen reads at least 40 pages in 1 hour, but no more than 70 pages in 1 hour.Which statement correctly describes the range of pages Harold reads?Harold reads more than 90 pages, but less than 180 pages.Harold reads at least 90 pages, but no more than 180 pages.Harold reads more than 150 pages, but less than 240 pages.Harold reads at least 150 pages, but no more than 240 pages.PB&P sells peanut butter and pickle sandwiches. The Standard special sells for $2 and the Deluxe special sells for $4.50. When all related business expenses are included, the Standard special costs $0.50 to prepare and the Deluxe special costs $1.25 to prepare.Last Monday, PB&P sold at least $200 worth of Standard and Deluxe peanut butter and pickle sandwich specials and its expenses were no more than $100. At least 30 Standard special were sold.Let x be the number of Standard Specials sold last Monday and y be the number of Deluxe specials sold last Monday.Which ordered pairs representing a combination of Standard specials and Deluxe specials could have been sold last Monday and make sense in the context of the situation?Select each correct answer.(30,68)(30,68)(80,40.5)(80,40.5)(60,70)(60,70)(40,60)(40,60)(50.5,40)Effie is selling candles to raise money for new soccer league equipment. A small candle sells for $8 and a large candle sells for $12. The number of large candles Effie sells must be greater than or equal to 2 times the number of small candles she sells. She has at most 48 candles to sell.The number of small candles sold is represented by x and the number of large candles sold is represented by y.What is the maximum revenue she can make?$448$512$576$588What is the product of 45i and 2+3i?Enter your answer, in standard form, in the box. Carolina breeds dachshunds and is an active participant in dog shows. although her fellow dog enthusiasts hold the values of mainstream society, they also have strong beliefs about the importance of animals and believe animals are as important as humans in society. carolina is the member of a: What is value of the digit 5 in the number 75 All of the following are common pests found in food service establishments except Evaluate the function for x = m/4f(x) = 8x^2 - 4xA. 2m^2 - mB. m^2 - mC. m^2/2 - 4mD. m^2/2 - m the use of words stout and brave suggests that our hearts are Which of these is the best way to deal with cyberbullying? A.Throw away the evidence. B.Report any threats of harm to the police. C.Respond to the cyberbully. D.Delete all of the person's messages to you. Light from the sun reaches earth in 8.3 min. how far is the earth from the sun? the velocity of light is 3 108 m/s. answer in units of m. Steam Workshop Downloader