Random access memory (ram) is also sometimes called _____ storage.

Answers

Answer 1
It is also sometimes called Volatile storage

Related Questions

What coding scheme is used by most microcomputers?

Answers

The answer to your question is ISYS

Some keys on a keyboard, like the caps lock and number lock keys, are ____ keys, which are pressed once to turn the feature on and again to turn the feature off.

Answers

Caps Lock keys 
Hope this helps you

Write a program that will take an integer and add up each of the number’s digits, count the number of digits in the number, and then average the digits. You must use a while loop and % to access each of the individual digits. Use / to reduce the number so that you can average all of the digits.
Example: num = 123 can be taken apart with tempNum = 123 % 10 (which will pull off the 3), then tempNum = tempNum / 10 (will result in 12). Do this in a loop while the number is > 0.

Sample Data :
234
10000
111
9005
84645
8547
123456789


 Be sure to include print statements that will format the output as below.

Sample Output :
234 has a digit average of 3.0

10000 has a digit average of 0.2

111 has a digit average of 1.0

9005 has a digit average of 3.5

84645 has a digit average of 5.4

8547 has a digit average of 6.0

123456789 has a digit average of 5.0

Answers

For count digits, you could just convert it to a String and check the length
Sum digits, convert to string then seperate each character with charAt then convert it to numbers in the return statement.
Average digits you can convert it to a String and then convert them back after taking them apart.
Here is my solution:

import java.lang.System.*;

public class DigiMath {   

private static int countDigits(int number)
{
       int sum = 0;
       while(number > 0)
       {
           sum ++;
           number /= 10;
       }       return sum;   
}

private static int sumDigits(int number)   
{       
      int sum = 0;       
      while(number > 0) {
           sum += number % 10;
           number /= 10;
       }
       return sum;
}
   
   public static double averageDigits( int number )
   {
       int count = countDigits(number);
       if (count > 0) {
           return (double)sumDigits(number) / (double)count;      
       } else { 
            return 0; 
       } 
   }
   
   public static void PrintDigitAverage(int number)
   {
       System.out.printf("%d has a digit average of %1.1f\n", number, averageDigits(number));
   }
   
   public static void main(String[] args) 
   {
       // Method tests (run with java -ea)
       assert countDigits(12345) == 5 : "countDigits returns wrong count";
       assert sumDigits(12345) == 15 : "sumDigits returns wrong sum";
       assert averageDigits(12345) == 3.0: "averageDigits returns wrong average";

        PrintDigitAverage(234);
        PrintDigitAverage(10000); 
        PrintDigitAverage(111); 
        PrintDigitAverage(9005); 
        PrintDigitAverage(84645); 
        PrintDigitAverage(8547); 
        PrintDigitAverage(123456789);
   }
}


Which is the largest of the four information technology pathways?

Answers

information support and services

Answer:

Information support and services

Explanation:Apex

List and briefly explain five activities for which a purchasing department normally has responsibility

Answers

Five activities for which a purchasing department normally has responsibility include: issuing their own purchase orders, meeting with different sales representatives, maintaining their own purchase records in accordance with state and federal law, administering contracts with sellers, and coming to a resolution regarding any purchasing problems that might arise.

In a Standard manufacturing firm, department often divided into Marketing department, Sales department, Purchase department, Accounting department etc.

The Purchasing department have the responsibility of carrying out affairs which relates to buying of raw materials, tools, machines, supplies etc into the company.

Below are the brief function of Purchasing department:

The department major aim is to issue purchase orders in the companyThey are responsible for meeting with sales representativesProper report of purchases activities in accordance to business regulations.The department facilitate contracts with sellers.They get involved in resolution to solve problems as regards purchasing activities.

Read more about this here

brainly.com/question/6318132

If using the md5 hashing algorithm, what is the length to which each message is padded?
a. 32 bits
b. 64 bits
c. 128 bits
d. 512 bits

Answers

If using the MD5 hashing algorithm, the length to which each message is padded 512 bits.

Answer: (d.) 512 bits.

MD5 stands for Message Digest 5. It is a hashing algorithm that is case sensitive.  It is a cryptographic hash values.

Lara sees her colleague taking a bribe from a customer. What should she do?

Answers

She should report it to the superviser

She should gather evidence and tell a trusted supervisor.

Which type of cable is described as a central conductor wire that is surrounded by insulating materials and placed inside a braided metal shield?

Answers

Which type of cable is described as a central conductor wire that is surrounded by insulating materials and placed inside a braided metal shield? A coaxial cable.

Final answer:

A coaxial cable is described, featuring a center core surrounded by an insulating spacer and a braided metal shield to reduce electronic noise, commonly used in audiovisual connections.

Explanation:

The type of cable described is known as a coaxial cable. It consists of a center core inner conductor typically made of copper, which is surrounded by a dielectric insulating spacer material. This assembly is then protected by a braided metal shield or outer conductor, which can help guard against electromagnetic interference (EMI). The entire cable is often encased in an insulating jacket. Coaxial cables, such as the RG-59, are popular in applications requiring the reduction of electronic noise like cable TV or audiovisual connections in homes and businesses.

variables make it easier to do what? (select best answer.)

A.) format your code

B.) add comments in your code

C.) figure out what data type a value has

D.) make changes to your code

Answers

D, since variable allow you to change (or vary) its value, thus allowing the user to change the code

Answer:

make changes to your code ( D )

Explanation:

Variables helps in making it easier to make/effect changes to a code already written. variables are like containers in computing because they are the storage tanks for information that will be referenced or liable to be changed in the future, they help in storing data with a unique name which can be queried when needed to effect changes on the data ( codes ) contained in them.

without Variables data storage would have be difficult to practice because each code after been written and executed will have no backup i.e will be lost and not been able to be modified in future as a reason might arise for that which is either as an error or fr referencing purpose.

Which tool captures the passwords that pass through a network adapter, displays them on the screen instantly, and is used to recover lost web/ftp/e-mail passwords?

Answers

Asterisk Logger would be one of the tools

Computer programs can be opened from _____.

the Start menu
the desktop
the All Programs submenu
all of the above
none of the above

Answers

Computer programs can be opened from _____.

All of above

Computer programs can be opened from the Start menu, desktop, and all programs submenu.

What do you mean by programs?

Programs refer to the series of coded software instructions to control the operations of a computer.

Computer programs can be opened from the Start menu, desktop, or all programs submenu.

Therefore, D is the correct option.

Learn more about Programs here:

https://brainly.com/question/3224396

#SPJ2

The android operating system is used by many popular tablet computers. which tablet does not use the android operating system

Answers

Apple Ipad and Microsoft Tablets.

The ____ are the devices that allow a computer system to communicate and interact with the outside world as well as store information.

Answers

Those are your good ol' peripherals.

The input/output units are the devices that allow a computer system to communicate and interact with the outside world, as well as store information.

What are input-output units?

Equipment that inserts data into or extracts data from communication, computer, automatic data processing, information, or control systems, such as a terminal, channel, port, computer, storage unit, buffer, communications network, front-end processor, link, or loop.

The devices that enable a computer system to interface and communicate with the outside world as well as permanently retain information are known as input/output (i/o) units.

A computer input unit is a piece of hardware used to deliver control and data signals to a data processing system, which may include a computer or other information device.

Therefore, the equipment that enables a computer system to interface and communicates with the outside world, as well as store data, are known as input/output units.

To learn more about input-output units, refer to the link:

https://brainly.com/question/3033646

#SPJ5


You have a new web app and the host for it is going to provide storage for your data on their server. what is this called

Answers

The answer is Cloud storage. When a host provides storage space for your data on their servers it is called Cloud storage. Cloud storage is known as a cloud computing model wherein thousands of data is stored on different remote servers, which can be accessed from the internet itself.

A ____ is a large screen computer either built into a table or designed to be used on a table and that allows multi-touch input from multiple users.

Answers

The answer in the space provided is table PC. It is because the table pc has the built of having to have a large screen computer because they are implanted or placed on a table that made a large screen to be essential. They are also a computer in which they have a feature of multi touch input.

Which does an icon on the desktop signify?

A.a program

B.a file

C.a folder

D.all of these

Answers

I believe that the answer is D. 
On a desktop the icons for files, programs and folders can all be present.

_____ rows indicate that there is different formatting for odd and even rows.

Answers

Banded rows indicate that there are different formatting for odd and even rows.

The default dfs namespace mode is windows server 2008, which supports up to 50,000 folders. how many folders does using non-windows server 2008 provide?

Answers

35 millions folders windows servers

HELP ASAP which of these is an indication that a chemical reaction has occurred?
A.melting of a substance
B. boiling of a substance
C. formation of a precipitate
D.freezing of a subtance

Answers

A chemical reaction would be something like a paper burning, a match lighting, etc. A physical reaction is just a change in the appearance. At least partially.

A, B and D are all physical changes. The substance is still that substance and it hasn't changed chemically. The change of state of matter is only a physical change because the substance is still the same as it was in the previous state.

So the answer would be C.

Which of the following lines of distribution best describes the diagram?

A: retail distribution
B: direct distribution
C: distribution by agents or brokers
D: wholesale distribution

Answers

A) retail distribution.

Answer

retail distribution

Explanation

Retail distribution is the process or path that a manufactured good takes to reach its intended consumer. Manufacturers employ different retail distribution strategies for the purposes of interacting with customers.Sometimes the distribution channel is direct, such as when a consumer purchases a product directly from company without involving any intermediary.

How to change the indent of the list item "regular" on slide 2 to .5 inches in powerpoint?

Answers

Final answer:

To change the indent of a list item in PowerPoint, select the item, go to the Paragraph section under the Home tab, open the Paragraph settings, and adjust the indentation to 0.5 inches.

Explanation:

To change the indent of the list item "regular" on slide 2 to .5 inches in PowerPoint, follow these steps:

Navigate to slide 2 in your PowerPoint presentation.Click on the text box containing the list item "regular".Select the list item or items you want to change.Under the Home tab, find the Paragraph group.Click on the dialog box launcher (small arrow in the bottom-right corner) in the Paragraph group to open the Paragraph settings.In the Indentation section, find the 'Left' or 'Before text' option.Enter 0.5 inches in the field or use the up and down arrows to adjust the setting.If you want a hanging indent (where the first line starts at the left margin and subsequent lines are indented), under 'Special', select 'Hanging' and ensure the setting is 0.5 inches.Click 'OK' to apply the changes.

This will set the indent of the list item "regular" to 0.5 inches from the left margin on the selected slide.

Final answer:

To change the indent of a list item to 0.5 inches in PowerPoint, select the desired list item, use the ruler to drag the indent marker or access the paragraph settings to manually adjust the left indentation.

Explanation:

To change the indent of a list item to 0.5 inches in PowerPoint on slide 2, go to the slide where your list is located. Select the list item labeled "regular" that you want to change. Then, on the ruler at the top of the slide, drag the appropriate indent marker to the 0.5-inch mark on the ruler. If the ruler is not visible, you can enable it through the 'View' tab by clicking on 'Ruler'. Alternatively, you can right-click on the selected list item, choose 'Paragraph' from the context menu, and then adjust the indentation settings in the dialog box that appears by setting the 'Left' indentation to 0.5 inches.

which type of website would a business selling merchandise on the internet use? A person B information C commercial D social

Answers

I think it's C, commercial.

The ____________ method can be used to convert a string to an int.

Answers

parseInt()





----------------------------

Simon is trying to figure out how much it will cost to buy 30 cases of water for a school picnic. How much will Simon pay for 30 cases of water?

Answers

it depends on price, brand, number of bottles per case, and number of fluid ounces per bottle.

(price per bottle x number of bottles per case) x 30

Answer:

answer is d

Explanation:

If a business wanted to play an artist’s song in the background of their website, it must first consider the _____ of the music to ensure no laws are being broken.

Answers

no copyright laws being broken. the answer is copy right.

Answer:

copyright

Explanation:

Copyright is the set of national and international legal principles and norms that protect the creation of intellectual works by human beings.

There are two traditional legal conceptions of intellectual property: disseminated in the area of ​​influence of Anglo-American law and copyright, prevailing in the area of ​​influence of Latin law. In addition, there is now another conception, of a universal nature, free licenses, which some call "copyleft". And there is also the public domain. The first two have their origin in the monopolies that the monarchs granted to the authors to stimulate intellectual creation, and coincide in protecting the rights of the authors by granting them the power to exclude all other people from the use of the works, except the simple and individual reading, visualization, listening.

If your role model is from the same neighborhood as you or has the same ethnic background, _____.

Answers

your role model probably faced some of the same challenges as you will face
during your career

_____ memory uses the hard drive to substitute for ram.

Answers

Virtual memory uses...

Answer:

Virtual memory

Explanation:

The RAM is the main/primary memory of the computer because its data is easily accessible when needed by the computer while the hard drive/hard disk is the secondary memory/permanent memory of the system.

The Virtual memory is a memory management capability of a system that allows the transfer of data from the main memory which is the Ram to a secondary memory like the hard drive. this is mostly done when the Ram is running low on space and probably slowing the system down.

Blurring in a photograph can be due to _____ or ______.

Answers

Do you have options? In my personal opinion, however, blur could be caused by motion blur, or focusing on the wrong thing, Hope this helps any!
Blurring in a photograph can be due to movement while using slow shutter speed or a long exposure  

hope this helps

Which of the following best describes a situation where software should be upgraded or replaced ?

Answers

It should be a 6-year computer that needs a new cPU to run latest video software.  Usually when software can't run, the computer needs an upgrade.  The other three options would be replace.  The first obviously needs to be replaced.  The second would cost too much to upgrade, and would be more logical to replace if you're only needing an extra 25% cost for a brand new computer than an upgrade. The last one needs more RAM upgraded, but it's not a software issue or a software upgrade.  It would be a RAM upgrade

Shoutout to @Dogmama89 

Have an amazing day!

Answer:

d

Explanation:

What is the name of a coding scheme that assigns a specific numeric code to each character on your keyboard?

Answers

python is the answer to your question
Other Questions
What is the value of n in the numerical sentence below?16 4 = 4n = ? A squirrel helps carry out a plants reproduction. Arrange the steps in the correct order, starting with successful pollination. PLEASE HELP!!! 50 POINTS!!!!!!!!!!!!What is one way Latin Americans have adapted to their environment?You may choose to focus on either an ancient civilization or modern Latin Americans. Do the following: 1. Identify which group you are going to focus on (be specific - give the name of the people group and say where they live) 2. Describe an environmental difficult that needed to be overcome2. Explain how the people adapted to their environment if phrase begin with to hasten or to infer it is a what phrase The truman doctrine was the first and clearest exercise of the policy of __________. Which of the following most directly influenced Serbian culture? Select all that apply.Orthodox ChristianityRoman CatholicismGreek cultureByzantine cultureselect ALL that apply If a mutation occurs such that photosystem ii no longer functions as efficiently as it should, what might be most directly affected? what are some of the resources that Canada uses with other countries What is the first step to amending the constitution ? The law of _____explains how alleles separate during gamete formation. crivez la bonne forme du verbe partager pour complter la phrase.Nous ____ un appartement.I know usually -ons is added but I just need to make sure! About 0.3% of human live births are trisomic. in contrast, only 0.02% of human live births are monosomic. select the best explanation for why the occurrence of monosomics is less than that of trisomics. Choose the biconditional that is equivalent to the definition, "A skyscraper is a very tall building." Which topic best completes the idea web? Value of volunteering When to volunteer Places for volunteer opportunities Types of volunteer opportunities Brandon steals Franks watch. Brandon is caught by the police. What kind of court will this matter be tried in? a. Civil court b. Criminal court c. Appellate court d. Kangaroo court Danielle can spend up to $600 buying small and large jackets for her employees. Small jackets cost $20 each and large jackets cost $25 each. To get a special discount, she needs the number of large jackets to be no more than twice the number of small jackets. Also, she needs to order at least 6 small jackets and 10 large jackets. The graph shows the feasible region, where x represents the number of small jackets and y represents the number of large jackets. Which ordered pairs meet all the constraints and make sense in context of the situation? Select each correct answer. (13,11) (15,11) (8,9) (7,15) (10,13) Barton has no choice but to jettison marilyn because Which chemical equation is balanced?2PCl5 + 2H2O 2HCl + H3PO4PCl5 + H2O HCl + H3PO4PCl5 + 3H2O 5HCl + H3PO4PCl5 + 4H2O 5HCl + H3PO4 In a bumper car arena, two cars of equal mass are heading straight toward each other. The orange one is traveling at a speed of 5 meters per second. The green one is traveling at a speed of 2 meters per second. Which of the forces most affects the motion of the bumper cars after they collide? What is ability of organisms to survive and reproduce on the range of our men to circumstances? Steam Workshop Downloader