What is touch-typing?typing with a keyboard shortcut
typing with macros
typing with only one hand
typing without looking at the keyboard

Answers

Answer 1
Answer: Typing without looking at the keyboard and using all fingers. I do this, so I'm 99% that's the correct answer.
Answer 2
Answer: Typing without looking at the keyboard.

Last one

Related Questions

CHALLENGE 7.1.1: Initialize a list. ACTIVITY Initialize the list short.names with strings 'Gus', Bob, and 'Ann'. Sample output for the given program Gus Bob Ann 1 short_names- Your solution goes here 2 # print names 4 print(short_names[0]) 5 print(short names [11) 6 print(short_names[2])
"Write an SQL query that displays the Ssn and Last name of all employees who is a supervisor of a Department Manager"
Assume you have a system where you need to maintain operability even during the failing, replacing, and rebuilding of a failed disk. Thus, the data in the failed disk must be rebuilt and written to the replacement disk while the system is in operation. Which of the RAID levels yields the least amount of interference between the rebuild and ongoing disk accesses?
Write a C++ program which accepts the quantity of a product purchased and prints the amount to be paid by the customer.​
Why is a bedroom considered a poor study environment?Bedrooms are dimly lit.Bedrooms are too small.Bedrooms are too comfortable.Bedrooms are messy and cluttered.

10. Blender® allows users to duplicate an object simply by selecting it and pressing duplicate on the toolbar (shift+D). (1 point)true

false



11. According to the unit, which of the following is an important first step in any creative endeavor? (1 point)

pre-production

post-planning

delegating tasks

sending emails

Answers

10. Blender® allows users to duplicate an object simply by selecting it and pressing duplicate on the toolbar (shift+D).
True

11. According to the unit, which of the following is an important first step in any creative endeavor?
pre-production

Hope this helps.

What are some methods of cyber bullying ?

Answers

Answer:

HARASSMENT

IMPERSONATION

INAPPROPRIATE PHOTOGRAPHS

WEBSITE CREATION

VIDEO SHAMING

Write an if statement that assigns 100 to x when y is equal to 0. 32. Write an if/else statement that assigns 0 to x when y is equal to 10. Otherwise it should assign 1 to x. 33. Using the following chart, write an if/else if statement that assigns .10, .15, or .20 to commission, depending on the value in sales. Sales Commission Rate Up to $10,000 10% $10,000 to $15,000 15% Over $15,000 20%

Answers

Answer:

1.  

if(y==0.3){ x = 100;}

2.

if(y == 10){

x = 0; }

else {

x = 1; }

3.

if(sales< 10000){

commission = 0.10;

}

else if(sales>= 10000 && sales <= 15000 ){

commission = 0.15;

}

else{

commission = 0.20;

}

Explanation:

The statements written in brackets represent the conditions while the statements in {...} represent the operation that would be executed depending on the outcome of the if statement.

For 1: if(y==0.3){ x = 100;}

If y is 0.3, 100 would be assigned to x

For 2:

if(y == 10){ x = 0; }

If y is 10, 0 would be assigned to x

else { x = 1; }

If otherwise, 1 would be assigned to x

For 3:

if(sales< 10000){commission = 0.10;}

Is sales is less than 10000, commission would be 0.10

else if(sales>= 10000 && sales <= 15000 ){commission = 0.15;}

If sales is within range of 10000-15000, commission would be 0.15

else{commission = 0.20;}

If otherwise, commission would be 0.20

9 Which of these words is used to begin a conditional statement? ​

Answers

Answer:

The word used to begin a conditional statement is if.

Explanation:

In the syntaxes of most (if not all) programming languages, the word if is used to begin any conditional statement.

Take for instance:

Python:

if a == b:

   print("Equal")

C++:

if(a == b)

cout<<"Equal";

Java:

if(a==b)

System.out.print("Equal")

The above code segments in Python, C++ and Java represents how conditional statements are used, and they all have a similarity, which is the "if" word

Write an algorithm that gets as input your current credit card balance, the total dollar amount of new purchases, and the total dollar amount of all payments. The algorithm computes the new balance, which this time includes an 8% interest charge on any unpaid balance below $100 , 12% interest on any unpaid balance between $100 and $500, inclusive, and 16% on any unpaid balance about $500.

Answers

Answer:

balance = float(input("Enter the current credit card balance: "))

purchases = float(input("Enter the amount of new purchases: "))

payments = float(input("Enter the amount of all payments: "))

unpaid = purchases - payments

if unpaid >= 0 and unpaid < 100:

   balance = balance + payments - purchases - (unpaid * 0.08)

elif unpaid >= 100 and unpaid <= 500:

   balance = balance + payments - purchases - (unpaid * 0.12)

else:

   balance = balance + payments - purchases - (unpaid * 0.16)

   

print("The balance is " + str(balance))

Explanation:

*The code is in Python.

Ask the user to enter the balance, amount of purchases, and amount of payments

Calculate the unpaid balance, subtract payments from purchases

Check the unpaid balance. If it is smaller than 100, calculate the new balance, add payments, subtract purchases and the 8% interest of unpaid balance. If it is between 100 and 500, calculate the new balance, add payments, subtract purchases and the 12% interest of unpaid balance. If it is greater than 500, calculate the new balance, add payments, subtract purchases and the 16% interest of unpaid balance

Print the balance

PLEASE ANYONE!!which present margins would be best to get the most information to fit on the page​

Answers

Answer:

Normal Margin is fit on the page. The default margins for Microsoft Word is normal margin.                                      

Explanation:

The paper visual effect give the document’s theme and quality. Margins send visual effects. Making a document right helps you to send the right message to readers. Use a small paper and adding a border.

You can change the page layout that people notice first with size, orientation, and margins.

Page margins make your document readable. Margins make the document more readable, make text look inviting, and given reviewers.

With narrower margins, you can reduce more words on-page.

To many words in a line make it difficult to read the document.

Margins are of many types

  • Normal Margin
  • Narrow margins
  • Moderate margins
  • Wide margins

Normal gives an equal inch to all sides of the page.

Narrow margins give little room to each column.

Average margins squeeze words from left and right.

Wide gives space when proofing the manuscript.

Answer:

A.) narrow margins

Explanation:

e2020

Other Questions