Select the items below that are a computer
Pocket Watch
Server
Calculator
Piano
Laptop
Tablet

Answers

Answer 1

Answer:

Laptop is the answer.. .....


Related Questions

what two QuickBooks Online payroll subscription levels include QuickBooks time

Answers

The two QuickBooks Online payroll subscription levels include QuickBooks time are:

Online Payroll Premium Elite subscription

What is this about?

QuickBooks Time mobile access is known to be commonly made up of one's QuickBooks Online Payroll Premium and also one's QuickBooks  Elite subscription that is said to be given at no additional cost.

Therefore, The two QuickBooks Online payroll subscription levels include QuickBooks time are:

Online Payroll Premium Elite subscription

Learn more about QuickBooks from

https://brainly.com/question/24441347

#SPJ1

Why should we apply print preview before printing the document.​

Answers

to helps them to see how the final printed material will appear. 

(please help) What do you do if Brainly keeps saying your blocked?

Answers

You could probably make a new account if it’s just the account blocked

Why do we need to connect computers"​

Answers

Answer:

batteries cant last connected to nothing forever probably

Use pseudocode to write a function or procedure that will find the maximum of three numbers a, b, and c.

Answers

Answer:

Check if a > b

   if true -> check if a > c

        if true -> a has the maximum value

        if false -> c has the maximum value

   if false -> check if b > c

        if true -> b is the maximum

         if false -> c is the maximum

Explanation:

To find the maximum, you need to find the largest number.

This can be done by making multiple nested if-statements, comparing 2 variables and finding which one is larger.

A square QR code contains 40×40 tiny squares (pixels) where each tiny square represents a 0 or a 1. Calculate how many bytes of data can be stored on the QR code​

Answers

Answer:

Explanation:

QR Codes are made of multiple rows and columns. The combination of these rows and columns makes a grid of modules (squares). There can be a maximum of 177 rows and 177 columns which means the maximum possible number of modules is 31,329. With the eye, these are just small squares and mean very little, but the exact arrangement of those modules allows the QR Code to encode its data. This means that, unlike traditional barcodes which are 1 dimensional and use 1 row of lines, QR Codes use 2 dimensions which allows them to store a lot more data in the same area of space.

prove that A + ĀB = A + B using 1) boolean basic laws and 2) truth table​

Answers

Answer:

projects of sums or POS Boolean expectation may also be generated from two tables quite easy divide determining which rows of the table have and output of zero writing on some term for each row and final multiplying all the some terms this creates a bowler expression representing the truth table as whole

Explanation:

helpful

The commented line states that I have assigned a 2D array to a pointer but I want array of such pointers which could store numbers of 2D Array.

Answers

It is impossible to store numbers or contents of 2D array to a pointer array.

How to store pointers in 2D Arrays?

Arrays and pointers are different data structure elements, and there is a limit to the operations that can be performed on both.

Having said that, it is impossible to store numbers or contents of 2D array to a pointer array.

The closest you can do, is to use the following declaration:

int *p[] = {(array-type [][number of columns]) {Array-content}}

Read more about arrays and pointers at:

https://brainly.com/question/17355709

#SPJ1

Answer:

Get the element => *( (int *)aiData + offset ); calculate offset => offset = (1 * coloumb_number)+ 2); Add offset in array base address => (int *)aiData + offset; //here typecast with int pointer because aiData is an array of integer Get the element => *( (int *)aiData + offset );

Explain how cache (SRAM) can support CPU pipelining.

Answers

Answer:

The Pipeline Burst Cache is basically a storage area for a processor that is designed to be read from or written to in a pipelined succession of four data transfers. As the name suggests 'pipelining', the transfers after the first transfer happen before the first transfer has arrived at the processor.

compare the results of both the RATS and Skipfish reports.

Answers

Answer:

The results of both reports RATS is known nas mouse and skipfish is known as one type of fish

Where can you get help to create citations for ProQuest articles?

Select one:

a.

By checking the USP handbook

b.

All of the above

c.

By using ProQuest's "CITE" button

d.

By checking your writing textbook

Answers

B is the correct answer , check under citations in the index .

The Electronics Communications Privacy Act allows the government to have access to....?

Answers

Personal information like who the person is, what they do, and where they go are the information that can be accessed by the government under the Electronics Communications Privacy Act.

What is Electronics Communications Privacy Act?

Electronic Communications Privacy Act allows the government to have the authority to the suspicious activity that takes place at social sites or through the use of electronic devices.

The unlawful acts and issues are overseen so that any violent circumstances do not arise. The data is provided through networking sites, cell phone providers, etc.,

The suspicious and unlawful activities are tracked through the electronic device that allows the government to keep track of the activities that can be a threat to them and the country.

Therefore, the act allows the government to track personal information which is unlawful and unauthorized.

Learn more about Electronics Communications Privacy Act here:

https://brainly.com/question/3773028

#SPJ1

which is an example of analog d


evice​

Answers

Answer:

crt (cathode ray tube) vcr (video cassette recorder)

Explanation:

What are three benefits of sharing on social media?

Answers

Answer:

reach more organization

get viral to whole entire nation

it also enhance to people's knowledge and quatable understandment


2. Which one of the following is the purpose of relating tables in a database?
A. To permit external data only to be viewed.
B. To allow data to be sorted before printing to a report.
C. To enable mathematical calculations to be carried out more efficiently.
D. To avoid duplication of data.

Answers

Answer:

D. To avoid duplication of data.

codehs 8.2.5 spell it out pls help

Answers

The answer is not here, so you should look down↓:

Explanation:

The programming question requires that we write a function that takes a string and returns every character in it but the first character.

The function in Python, where comments are used to explain each line.

This defines the function too.

This returns every character in the string except the first one.

E. Write an algorithm to show 'How to prepare a cucumber sandwich?". ​

Answers

Answer:

Place slices of bread on plate, side by side...

Postcondition: Sandwich is ready to eat.

Step 1: Start with the number 1.

Step 2: find another person and form a pair.

Step 3: add your numbers together.

Step 4: one person from the pair sits down.

Step 5: the other person goes back to step 2.

4.24 LAB: Exact change
Write a program with total change amount as an integer input, and output the change using the fewest coins, one coin type per line. The coin types are Dollars, Quarters, Dimes, Nickels, and Pennies. Use singular and plural coin names as appropriate, like 1 Penny vs. 2 Pennies.

Ex: If the input is:

0
or less than 0, the output is:

No change
Ex: If the input is:

45
the output is:

1 Quarter
2 Dimes

Answers

The Exact change program is an illustration of conditional statements;

Conditional statements are used to make decisions

The Exact change program

The Exact change program written in java programming language, where comments explain each action purposes

import java.util.*;

public class Money{

public static void main(String [] args){

Scanner input = new Scanner(System.in);

// Declare Variables

int amount, dollar, quarter, dime, nickel, penny;

// Prompt user for input

System.out.print("Amount: ");

amount = input.nextInt();

// Check if input is less than 1

if(amount<=0)  {

  System.out.print("No Change");  }

else  {

  // Convert amount to various coins

  dollar = amount/100;   amount = amount%100;

  quarter = amount/25;   amount = amount%25;

  dime = amount/10;   amount = amount%10;

  nickel = amount/5;   penny = amount%5;

  // Print results

  if(dollar>=1)    {

    if(dollar == 1) { System.out.print(dollar+" dollar\n");}

  else { System.out.print(dollar+" dollars\n"); }

}

if(quarter>=1){

if(quarter== 1){System.out.print(quarter+" quarter\n");}

else{System.out.print(quarter+" quarters\n");}

}

if(dime>=1){

if(dime == 1){System.out.print(dime+" dime\n");}

else{System.out.print(dime+" dimes\n");} }

if(nickel>=1){

if(nickel == 1){System.out.print(nickel+" nickel\n");}

else{System.out.print(nickel+" nickels\n");}}

if(penny>=1){

if(penny == 1) {System.out.print(penny+" penny\n");}

else { System.out.print(penny+" pennies\n"); }}}}}

Read more about conditional statements at:

https://brainly.com/question/11073037

#SPJ1

importance of software in computer​

Answers

Answer:

It allows accomplishing functions using the computer. The software is the instruction we want the computer to process for us.

Explanation:

I want to type a letter. I need a software that can interpret my letters in the keyboard and the program can print what I am typing.

How are charts useful in Excel worksheets? Name three types of charts available in Excel and describe with an example how each might be used. What are some things you can do with a chart to make the information clearer to a reader? What are some things you can do with a chart to make it more visually appealing?

Answers

Answer:

Spread sheets

Explanation:

Charts are employed to display series of numeric data in a graphical format to help people understand large amounts of data and the relationships between them.

What is a worksheet?

A worksheet is a sheet that is used as a guide in doing some work to make preliminary plans, supplementary computations, notes, or comments.

Charts are used to display a series of numeric data in a graphical format in order to help people understand large amounts of data and their relationships.

Good graphs allow for precise estimation of the quantities represented. The reader must understand the scale used to represent quantity on the graph in order to estimate quantities.

Create your graph with as few elements as possible. Color can help distinguish data sets in a graph, but avoid glaring color combinations (such as chartreuse and violet), as these can be distracting.

Vertical bars are used to describe information in column charts. They can work with a wide range of data, but they are most commonly used for information comparison. Line charts are excellent for displaying trends.

Thus, by using some things like this, one can make charts clearer.

For more details regarding worksheets, visit:

https://brainly.com/question/13129393

#SPJ2

I want a loyal girlfri,end​

Answers

Answer:

go to dating app

Explanation:

what are differences between Ram and Rom?​

Answers

Answer:

RAM, which stands for random access memory, and ROM, which stands for read-only memory, are both present in your computer. RAM is volatile memory that temporarily stores the files you are working on. ROM is non-volatile memory that permanently stores instructions for your computer.

Explanation:

Answer:

RAM is random access memory - we can have it even after we shut down the computer. it is volatile .it stores temporarily.

ROM - Read only memory. it is non volatile memory. we can only have it until computer is turn on. after that it's gone.it stores memory permanently

Write a program to print each item in the list of your favourite ice cream. please give proper answers. ​

Answers

Answer:

Python

Explanation:

#List Favorite ice-cream

ice_cream = ["Pistachio", "Cookies and cream", "Chocolate", "Banana split" , "Vanilla"]

for flavor in ice_cream:

print(flavor)

Can someone please tell me how to do this step by step?

ASAP

Answers

The steps that are required to customize elements of a Word document and its formatting to be consistent with other magazine articles are listed below.

How to customize elements and format a document?

In Microsoft Word 2019, the steps that are required to customize elements of a Word document and its formatting to be consistent with other magazine articles include the following:

You should apply a style set.You should change the color of an underline.You should use the Thesaurus.You should change the character spacing, change the font color and update a style.You should apply a character style.You should change the font case.You should insert a Quick Part.You should insert a table of contents.You should change the table of content (TOC) level.You should apply a style.You should update the table of contents.

In conclusion, the end user should update the table of contents as the last step, so as to reflect the change to his or her Word document.

Read more on Microsoft Word here: https://brainly.com/question/25813601

#SPJ1

Complete Question:

As the owner of On Board, a small business that provides orientation services to international students, you are writing an article about starting a business that will be published in an online magazine for recent college graduates. You need to customize elements of the document and its formatting to be consistent with other magazine articles. What are the steps?

program that initialises a vector with the following string values: “what” “book” “is” “that” “you” “are” “reading”.

Answers

A program that initializes a vector with the following string values: “what” “book” “is” “that” “you” “are” “reading” are the usage of namespace std;int main().

What is a vector software program?

Vector images software program permits customers to layout and manages pc photos the usage of geometric and mathematical commands, instead of clicks and strokes as utilized in drawing software program. Vector photos created the usage of those applications may be scaled indefinitely with out dropping quality.

#include #include #include the usage of namespace std;int main(); vector::iterator it; for (it = vs.begin(); it != vs.end(); it++) string tmp; while (cin.get()!='n') for (it = vs.begin(); it != vs.end(); it++) }

Read more about the vector :

https://brainly.com/question/25705666

#SPJ1

A date for creation or revision
is mandatory for all web pages?

Answers

Answer:

I do believe so

Explanation:

Most websites have this, as far as I know

The layer of ISO/OSI that enables someone to access network is

Options:
(a) application
(b) data-link
(c) physical
(d) session

Answers

Answer:

The network layer essentially enables a user to connect to the internet or any available network. From what I understand, the session layer should be the answer since it primarily means establising a connection with a server which only takes place over a network.

Explanation:

What is software engineering? What are the objectives of software engineering?

Answers

Answer:

The basic objective of software engineering is to develop methods and procedures for software development that can scale up for large systems and that can be used consistently to produce high-quality software at low cost and with a small cycle of time.

Explanation:

An array called numbers contains 35 valid integer numbers. Determine and display how many of these values are greater than the average value of all the values of the elements. Hint: Calculate the average before counting the number of values higher than the average

Answers

python

Answer:

# put the numbers array here

average=sum(numbers)/35 # find average

count=0 #declare count

for i in numbers: #loop through list for each value

if i > average: #if the list number is greater than average

count+=1 #increment the count

print(count) #print count

in tabular form differentiate the first four generations of computer ​

Answers

Answer:

Explanation:

See attachment.

Other Questions
Groundwater Activity: Properties of Water Lab ReportIntroductionWater is an essential part of processes on Earth. In this lab, you will investigate the properties of water and explain how they affect Earth material and surface processes.Investigative Phenomenon: What are the connections between the properties of water and their effects on Earth materials and surface processes?Materials: water stopwatch a clean penny food coloring vegetable oil clear plastic cups dropper or pipette ice cube black pepper a bowl dish soap sponge or cloth a heating source (sunlight, lamp, etc.) or a cooling source (refrigerator) one balloon measuring tape or string and a ruler thermometerActivity One: Investigating CohesionCohesion is the ability of molecules to bind together. One way to test this is by investigating how the droplets of a particular liquid stick together compared to other liquids. Use the materials you have to determine waters relative cohesion on a particular surface.Describe the plan you will follow to determine this:Record your data and observations:Phenomena Reflective Question: How does the cohesive property of water come into play with it interacts with Earth materials?Activity Two: Investigating Surface Tension Surface tension is a property of a liquid that allows the surface to resist force. This means the surface of a liquid resists the weight of objects.Procedures:1. Fill a bowl full with tap water.2. Sprinkle about a teaspoon of ground black pepper in the bowl. DO NOT STIR! Observe what happens to the black pepper.3. Gently place your finger into the water and observe what happens.4. Put two drops of dish soap on your finger. Gently use your finger to touch the surface of the water and observe what happens.Data and observations: ObservationsBlack pepper in water Touching water without soap Touching water with soap Phenomena Reflective Question: How does the surface tension of water allow for it to interact with Earth materials?Activity Three: Investigating Solubility A liquid is polar, which means a substance can easily dissolve in it. How can you test waters polarity compared to other substances? To measure solubility, it is necessary to compare initial and final results using your visual observations.Describe the plan you will follow to determine this:Record your data and observations: Add food coloring to each liquid. Observe each reaction and record your observations in the table below. Time Water Vegetable Oil0 seconds 5 seconds 10 seconds 15 seconds 20 seconds Phenomena Reflective Question: Explain why water is called a universal solvent. How does this polarity allow for water to interact with Earth materials?Activity Four: Investigating Specific Heat CapacitySpecific heat is the amount of heat energy needed to change the temperature of 1 gram of the substance one degree Celsius. Some objects' specific heat allows them to heat up or cool down faster than others of equal mass. How can you compare waters specific heat to other substances? How does the specific heat of water affect how other objects, such as a damp cloth, warm up or cool down? To measure specific heat, it is necessary to compare initial and final results.Describe the plan you will follow to determine this:Record your data and observations: Observe the temperature of the damp sponge/cloth after being placed under a heat source. Caution: do not set the damp sponge or cloth to close to the heat source. Record your observations. Time Damp Sponge/Cloth0 seconds 5 seconds 10 seconds 15 seconds 20 seconds Phenomena Reflective Question: How does waters specific heat capacity come into play when it interacts with Earth materials or affect surface processes?Activity Five: Investigating Expansion and DensityDensity of an object can be found by calculating mass divided by volume. If two objects have the same mass, but one has a greater volume, the object with more volume is less dense. Does waters density change when it is frozen? Describe the plan you will follow to determine this:Record your data and observations:Phenomenon Reflective Question: Did the density of water change when it changed from solid to liquid? How do you think the density of water has an effect on Earth materials and surface processes?Evaluating the Design:Part of an investigation is to evaluation how well your investigation gave you the data you needed. In this report, include the following:1. an evaluation of the plan you made for the various activities and how the data was collected2. a description of how well the data allowed you to infer the effect of water on materials and processes in the world3. a description of how to further investigate the effects of water and collect more accurate and precise data PLEASE HELPRead the excerpt from The Odyssey.Now Zeus the lord of cloud roused in the northa storm against the ships, and driving veilsof squall moved down like night on land and sea.The bows went plunging at the gust; sailscracked and lashed out strips in the big wind.We saw death in that fury, dropped the yards,unshipped the oars, and pulled for the nearest lee:then two long days and nights we lay offshoreworn out and sick at heart, tasting our grief,until a third Dawn came with ringlets shining.What does this excerpt most suggest about the beliefs of the ancient Greeks?1. They believed that natures strength was wholly uncontrollable.2. They believed that natures wrath could never be overcome.3. They believed that the gods were frequently unfair in their actions.4. They believed that the gods often punished people for acting badly. B. Form verbs from the given abstract nouns:fil1. satisfactory2. knowledge3. punishment4. marriage5. silence6. treatment7. growth8. agreement Anoxia, or a lack of oxygen in bodies of water, leads to __________.A.unsafe drinking waterB.dead zonesC.global warmingD.algae bloomsPlease select the best answer from the choices provided.ABC Millie needs a total of 7.8 feet of ribbon for a school project. She needs 0.7 more feet of ribbon. How much ribbon, in feet, did Millie already have? Write and solve an equation to find the answer.6.97.17.58.5 What is a hertz?An expressive marking that means "slowly"A kind of specialized woodwind instrumentA system of notating what pitches to playA system of measuring the speed of vibration According to the identity perspective, ______ nationalism focused on cultural and racial differences and advocated an aggressive, heroic approach to international relations. In general, the richest sources of vitamin E are Multiple Choice yellow and orange vegetables. citrus fruits. plant oils. refined grain products. Carbon dioxide released during ATP synthesis is being transported from our tissues back to the lungs, some of it is dissolved in plasma, the rest is converted and transported as other substances. Most of the carbon dioxide is converted into ______. Air pressure is measured in pascals. For a professional American football game, the ball should be inflated to about 90,000 pascals. Scientists studied the effects of air temperature on the pressure inside American footballs by taking these steps:1. Prepare 100 footballs.2. Measure each football's air pressure.3. Divide footballs into 10 groups.4. Place the groups in different lockers cooled to different air temperatures.5. After 12 hours, remove the footballs from lockers.6. Measure each footballs pressure again.7. Compare the new pressures to the starting pressures.What two terms best describe the variable "air pressure inside the football" in this experiment?independent, qualitativeindependent, quantitativedependent, qualitativedependent, quantitative Jeannes man struggle in the novel is growing up and finding her identity as both an American and as a Japanese person Advertising geared toward attracting not only customers but also potential investors and employees is classified as__ advertising List international football events where Pakistan made footballs are being used Help me please I cant do this and I need this for the exam tomorrow? What is the inverse of the function f(x) = 2x + 1? who waged a ""virulent"" anti-mexican campaign that led to the 1940 zoot suit riot? if you put 25ml of concentration in a glass, how much water should be added vanessa deposited money into a bank account yhat earned 1.25% simple interest after each year. after 1/2 year she earned $5 in interest on the account. how much was her initial deposit During a formal discussion in his science class, kai will be speaking about the importance of exercise. what is the best advice he can follow to be a prepared speaker? read the materials ahead of time and take notes about important ideas and viewpoints. read the materials again while others are talking and share ideas as they come to mind. listen to others as they speak and then form an opinion based on what they have to share. listen to others express facts and opinions and interrupt when someone makes a mistake. what can we use to help us predict the results of reaction when we put metals into competition?