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

Answer 1

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.


Related Questions

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

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.

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);
   }
}


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

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.

What coding scheme is used by most microcomputers?

Answers

The answer to your question is ISYS

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.

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.

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


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:

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

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

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

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

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.

Which is the largest of the four information technology pathways?

Answers

information support and services

Answer:

Information support and services

Explanation:Apex

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.

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:

When you start your computer, you will first see the ________. question 5 options:
a. start menu
b. microsoft store
c. lock screen
d. home page?

Answers

Answer:

lock screen

Explanation:

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.

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.

_____ 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.

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

Answers

parseInt()





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

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 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 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

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.

_____ 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.

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.

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
Other Questions
which colony was founded as a place where catholics could practice their religion freely Connecticut Maryland New Jersey North Carolina What were the mier and teran report? Baileys Cakes and Pastries baked a three-tiered cake for a wedding. The bottom tier is a rectangular prism that is 18 centimeters long, 12 centimeters wide, and 8 centimeters tall. The middle tier is a rectangular prism that is 12 centimeters long, 8 centimeters wide, and 6 centimeters tall. The top tier is a cube with edges of 4 centimeters each. What is the volume of each tier and of the entire cake?1,728 cubic centimeters2,368 cubic centimeters2,664 cubic centimeters64 cubic centimeters576 cubic centimeters38 cubic centimeters16 cubic centimetersPairsthe top tier the middle tier the bottom tier the entire cake Jennifer is giving a presentation about the results of her microbiology experiment. She is very confident in front of the audience. She speaks in a clear voice, and often tells a few jokes to show her personality. Jennifer is displaying great A-Self Representation skillsB- Speech SkillsC- Listening skills Based on what you have learned about determinism, why would compatibilism be referred to as soft determinism?What does compatibilism define differently?What does this site say about mans moral nature?define libertarianism, and then write 5 paragraphs comparing and contrasting it to determinism, compatibilism, and indeterminism. The measurement of how fast an object moves over a certain amount of time.A:VelocityB:SpeedC:AccelerationD:Displacement A pizza parlor sold 38 pizzas during a dinner hour. If each pizza contained 8 slices, how many slices of pizza were sold?A)46 slicesB)304 slicesC)305 slicesD)303 slices choose the answer.mood/mood/noun:mood1. a feeling or state of mind--an upset or angry state of mind2.the feeling of quality of a work of art3. a verb formadjective 4.suggestive a specific feelingwhich of the choices is an alternative meaning for the main definition of mood: a feeling or state of mind?A.the feeling of quality of a work of artB.a verb formC.an upset or angry state of mindD.suggesting a specific feeling What is the name of the compound cs (mno4)2a. Cadmium manganateB. Cadmium manganate C. Cadmium manganateD. Cadmium permangantie Daniela oy ese ruido. correct incorrect Marisa is walking from her home to her friend Sanjay's home. When she is 12 blocks away from Sanjay's home she looks at her watch. she looks again when she is 8 blocks away from Sanjay's home and finds that 6 minutes have passed? A.what do you need to assume in order to treat this as a linear situation B. identified the variables for the linear situation and identify two points on the line explain the meaning of the points in the in the context of the problem C. find the slope of the line and describe what it means in the context of the problem D. write an equation in point slope form for the situation and use it to find the number of minutes It takes to reach Sanjay's home. show your work A strong acid has a pH approaching:08514 After you read the Landlady pull 5 examples of each from the text and pull into the chart Where might Michael look to find ideas about what the teacher thinks is important information to be learned for a test? a. Vocabulary lists and flashcards c. Pretests and quizzes b. His notes d. B and C only Which of the following is a common symptom of senioritis?A. Keeping the same work ethic you built earlier in high school B. Completing high school a semester earlyC. Missing classes D. Staying on top of responsibilities Which type of plate motion is characteristic of a transform boundary? What was ended by Ferdinand and Isabellas conquest of the Kingdom of Grenada? Muslim influence in Spain Interest in world exploration Religious tolerance in Spain English influence in Grenada Which of the following helped stabilize the economy of the Virginia colony? a. Tobacco b. Indigo c. Ship building d. Cotton The french had been reluctant to support the american colonists until general horatio gates won which american victory? Evaluate 8a^3b^-2 for a=4 and b=-5 Steam Workshop Downloader