What is meant by the term internal hardware??
explain it in your own words ,do not use goo.gle thank you!

Answers

Answer 1

Answer:

Internal hardware devices include motherboards, hard drives, and RAM. External hardware devices include monitors, keyboards, mice, printers, and scanners. The internal hardware parts of a computer are often referred to as components, while external hardware devices are usually called peripherals

Answer 2

Answer:

Internal hardware is the hardware that is inside the computer. For example, CPU, RAM, ROM BIOS, Motherboard, Graphics card.


Related Questions

What is a font? A)
a typeface on a label
B) a typeface on a poster
C) a typeface on a computer or d) a typeface on a sign

Answers

Answer:

A is most likely the answer

Explanation:

Help Please! Computer science question !!!!!!!!!!20 points!!!

Answers

Answer:

45 abc

Explanation:

I need help I have questions I need answers in coding html,css,js and python.Fast
The purpose of the sleep method is to reduce the amount of energy the program uses.
True
False
The _____ is a collection of webpages that use the internet.
pseudocode
World Wide Web
Python
server
Which of the following lines of code would correctly create a list called weapons?
weapons == [“sword”, “sling”, “knife”]
weapons = [“sword” or “sling” or “knife”]
weapons = (“sword”, “sling”, “knife”)
weapons = [“sword”, “sling”, “knife”]
Which of these lines of code would import both the random and the time modules?
import random, time
import random and time
time.import, random.import
import(random, time)
When using HTML, your text should be placed between the opening and the closing tags.
True
False

Answers

Answer:

1. True

2. World Wide Web

3. weapons = [“sword”, “sling”, “knife”]

4. import random, time

5. True.

Explanation:

For number 1  I'm not quite sure since I never personally used it, but it does reduce CPU usage when activated so it's very possible it's true.

It is a way of creating a name, symbol, color, and design to establish and differentiate a product from its prospect competitors

Answers

Answer:

Branding

Explanation:

The term that is being defined by the question is known as Branding. This is what companies do to products in order to allow customers to distinguish the product from the competitors similar products. Doing so allows a company to attract and maintain customers since a customer will see become aware of the branded product and buy it. If the purchasing experience goes well they will begin to associate the good experience with the brand and therefore with the company as well.

What should a user do to find and replace text throughout a field? Use the drop-down menus to complete the steps
1. Put the cursor in the field to search
2. In the Home tab, open the dialog box
3. On the
tab, enter the text to search for and the replacement text
4. After a few instances to make sure the text is being replaced correctly, you can then click
to
change all instances

Answers

The thing that a user should do to find and replace text throughout a field  are:

1. Put the cursor in the field to search.

2. Open the  find  dialog box.

3. On the Replace tab, enter the text to search for and the replacement text.

4. Click  Replace All  to change all instances.

How do you search for and replace text across an entire field?

The keys on the keyboard CTRL+F is often used  to find. The dialog window for Find and Replace appears. Click the Find tab in the Find and Replace dialog box to search for data. Click the Replace tab to perform a find-and-replace operation.

The operations are:

1. Click Find and Select in the Editing group on the Home tab, then select Replace from the drop-down list.

2. In the dialog box, select the objects you want to Find and Replace by clicking the Options button.

3. Press the Replace or Replace All button.

Therefore, If you want to replace all occurrences of a word or format in a document, use the Ctrl+H Find and Replace function. This is very useful for lengthy papers.

Learn more about Editing  from

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

See full question below

What are the steps to replace one piece of text with another throughout a field? Use the drop-down menus to

complete the statements.

1. Put the cursor in the field to search.

2. Open the _____

dialog box.

3. On the Replace tab, enter the text to search for and the replacement text.

4. Click -------to change all instances.

HELP PLEASE!!!!

3. Memory and Storage
The GCSE Computer Science course requires that you
understand how decimal numbers are converted into
binary, and vice versa.
Can you convert the numbers 12, 24, 48 and 96 into binary form?​

Answers

Answer:

1100 ; 11000 ; 110000 ; 1100000

Explanation:

Converting the following decimals to binary :

2__12

2__6 r 0

2__3 r 0

2__1 r 1

___0 r 1

12 = 1100 base 2

2.)

2__24

2__12 r 0

2__6 r 0

2__3 r 0

2__1 r 1

___0 r 1

24 = 11000 base 2

2__48

2__24 r 0

2__12 r 0

2__6 r 0

2__3 r 0

2__1 r 1

___0 r 1

48 = 110000 base 2

2__96

2__48 r 0

2__24 r 0

2__12 r 0

2__6 r 0

2__3 r 0

2__1 r 1

___0 r 1

96 = 1100000 base 2

Other Questions
a group of preschoolers has 31 boys and 37 girls. What is the ratio of girls to boys Emma bought a hat for $20. Emma increases the price by 25%. What is the price of the hat now? _____Ud. de compras ayer?O fuimosO fueronO fuisteisO fue NEED THIS ASAP ITS MATH If anyone could help with this I have $8$ pieces of strawberry candy (all identical) and $7$ pieces of rhubarb candy (all identical). Find the number of ways I can distribute this candy to $5$ children.This is a math question,Please Solve Correctly. The cash register program will have items. For each item, the name and cost are saved. For a transaction, it will accept any number of items (not known in advance) and any number of payments of different payment types (not known in advance). For each transaction, it calculates the total including a 7% sales tax and keeps prompting for a payment until the total has been paid. It also determines if any change is required. Thus, a transaction is responsible for calculating the amount of money that needs to be paid, accepting money, and generating a receipt. A receipt holds information about a transaction so that it can display how much each item cost, how the transaction was paid for, etc. (see example outputbelow).Payment type includes CASH, DEBIT_CARD, CREDIT_CARDandCHECK. Each payment consists of an amount and payment typeHints 1. All fields should be private. 2. The PaymentType class should be an enum class with values: CASH, DEBIT_CARD, CREDIT_CARD, CHECK 3. Payment type information should not print the enum directly 4. Use final to store the transaction for each receipt. 5. Output: A. The values for subtotal, tax, total, and payment information are all aligned. You can achieve this by using the tab character '\t' in your Strings. The item lines do not need to be aligned. B. Do not worry about only using 2 decimal places. Let Java decide how many decimal places to use. 6. Create a main class to house the main method. In the main method, create some items, a transaction, and display the receipt. A. Example outputs Example: Pay everything with one payment Transaction listing the items and asking for payment: Item 1: apple: 0.5 Item 2: pear: 0.75 Item 3: pineapple: 0.75 Total: 2.14 Please enter payment type. 1. Cash 2. Debit card 3. Credit card 4. Check 2 Enter the amount to pay with this type. 2.14 Total after payment: 0.0 Receipt printed: apple: 0.5 pear: 0.75 pineapple: 0.75---------------------------------------------------------- Subtotal: Tax: Total: Debit: Change: 2.0 0.14 2.14 2.14 0.0 Example: Paying with multiple payments and payment type Item 1: refrigerator: 800.71 Total: 856.7597000000001 Please enter payment type. 1. Cash 2. Debit card 3. Credit card 4. Check 1 Enter the amount to pay with this type. 400 Total after payment: 456.75970000000007 Please enter payment type. 1. Cash 2. Debit card 3. Credit card 4. Check 2 Enter the amount to pay with this type. 475 Total after payment: -18.240299999999934 refrigerator: 800.71 3 Subtotal: 800.71 Tax: 56.04970000000001Total: 856.7597000000001Cash: 400.0Debit: 475.0Change: 18.240299999999934 Example: Using the same payment type multiple times Item 1: apple: 0.5 Item 2: pear: 0.75 Item 3: pineapple: 0.75 Total: 2.14 Please enter payment type. 1. Cash 2. Debit card 3. Credit card 4. Check 1 Enter the amount to pay with this type. 1.25 Total after payment: 0.8900000000000001 Please enter payment type. 1. Cash 2. Debit card 3. Credit card 4. Check 1 Enter the amount to pay with this type. 10.50 Total after payment: -9.61 apple: 0.5 pear: 0.75 pineapple: 0.75 Subtotal: 2.0 Tax : 0.14 Total: 2.14 Cash: 1.25 Cash: 110.5 Change: 9.61 Help me answer this for brainliest Name 3 characteristics of each physical state of matter.Solid:Liquid:Gaseous: I dont know wich boxes to choose Is burning shale gas good for the economy? Please help will mark brainliest. How did the Tang and Song Dynasties gain and maintain power over people and territories? A backpack is sold to Target for $25. If Target marks the price of the backpack up by 40%, how much do they sell it for? Please help i will give you the brainliest please help me!! thank youu!!! acrstico con la palabra baloncesto Hamas was organized in 3 wings: ___________, ____________, and ____________. tudy Questions1. Describe the meeting between Gatsby and Daisy. Why waswas Gatsby so nervous? brainly also kick this kid out Radovanwildstarhe is sent virus to other people and stealing kick hacker out of this app Select the correct answer. Which economic term is considered a resource? A. land B. price of goods C. demand D. gross domestic product