The _______________ interaction occurs when you drag your finger over an image, and the image moves with your finger.

Fill in the blank(s) with the appropriate word(s).


Swipe

Computer Science & Information Technology

You might also like to view...

Look through the list of functions for a spreadsheet. Make a list of 10 functions and how you could use them.

What will be an ideal response?

Computer Science & Information Technology

Write a function that computes future investment value at a given interest rate for a specified number of years.

Use the following function header: ``` double futureInvestmentValue( double investmentAmount, double monthlyInterestRate, int years) ``` For example, futureInvestmentValue(10000, 0.05/12, 5) returns 12833.59. Write a test program that prompts the user to enter the investment amount (e.g., 1000) and the interest rate (e.g., 9%), and prints a table that displays future value for the years from 1 to 30, as shown below: ``` The amount invested: 1000 Annual interest rate: 9 Years Future Value 1 1093.8 2 1196.41 ... 29 13467.25 30 14730.57 ```

Computer Science & Information Technology

What is a feedback loop used for?

a. To separate the system from its environment b. To provide information for the management c. To ensure that the output matches the set standard. d. To take energies out of the system

Computer Science & Information Technology

Define the following terms and give one example of each.

1. Equijoin 2. Outer join 3. Self-join 4. Minus 5. Cartesian product

Computer Science & Information Technology