1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
andreyandreev [35.5K]
3 years ago
8

Needed urgently what are short cut keys

Computers and Technology
2 answers:
il63 [147K]3 years ago
7 0

Answer:

Copy: Ctrl + C.

Cut: Ctrl + X.

Paste: Ctrl + V.

Maximize Window: F11 or Windows logo key + Up Arrow.

Task View: Windows logo key + Tab.

Switch between open apps: Windows logo key + D.

Shutdown options: Windows logo key + X.

Lock your PC: Windows logo key + L.

Explanation:

This is for windows. Most of these can be replaced by the command key instead of the control key on mac.

Nady [450]3 years ago
7 0

Answer:

some shortcut keys are:

Explanation:

ctrl + A - select all

ctrl + B - bold

ctrl + C - copy

ctrl + U - underline

ctrl + V - paste

ctrl + X - cut

ctrl + Y - repeat

ctrl + Z - undo

ctrl + P - print

ctrl + I - italic

You might be interested in
What is the most common representation of a distribution?
balandron [24]
The correct answer is C, Histogram.
8 0
3 years ago
Consider the problem of making change for n cents using the fewest number of coins. Assume that each coins value is an integer.
Oksana_A [137]

Answer:

There are two algorithms in which apply different optimal solutions.

They are: A Dynamic and Naive recursive programs

Explanation:

// A Naive recursive C++ program to find minimum of coins  

// to make a given change V  

#include<bits/stdc++.h>  

using namespace std;  

// m is size of coins array (number of different coins)

int minCoins(int coins[], int m, int V)  

{  

// base case  

if (V == 0) return 0;  

// Initialize result

int res = INT_MAX;  

// Try every coin that has smaller value than V  

for (int i=0; i<m; i++)  

{  

if (coins[i] <= V)  

{  

 int sub_res = minCoins(coins, m, V-coins[i]);  

 // Check for INT_MAX to avoid overflow and see if  

 // result can minimized

 if (sub_res != INT_MAX && sub_res + 1 < res)  

  res = sub_res + 1;  

}  

}  

return res;  

}  

// Driver program to test above function  

int main()  

{  

int coins[] = {9, 6, 5, 1};  

int m = sizeof(coins)/sizeof(coins[0]);  

int V = 11;  

cout << "Minimum coins required is "

 << minCoins(coins, m, V);  

return 0;  

}  

.........................................

// A Dynamic Programming based C++ program to find minimum of coins  

// to make a given change V  

#include<bits/stdc++.h>  

using namespace std;  

// m is size of coins array (number of different coins)  

int minCoins(int coins[], int m, int V)  

{  

// table[i] will be storing the minimum number of coins  

// required for i value. So table[V] will have result  

int table[V+1];  

// Base case (If given value V is 0)  

table[0] = 0;  

// Initialize all table values as Infinite  

for (int i=1; i<=V; i++)  

 table[i] = INT_MAX;  

// Compute minimum coins required for all  

// values from 1 to V  

for (int i=1; i<=V; i++)  

{  

 // Go through all coins smaller than i  

 for (int j=0; j<m; j++)  

 if (coins[j] <= i)  

 {  

  int sub_res = table[i-coins[j]];  

  if (sub_res != INT_MAX && sub_res + 1 < table[i])  

   table[i] = sub_res + 1;  

 }  

}  

return table[V];  

}  

// Driver program to test above function  

int main()  

{  

int coins[] = {9, 6, 5, 1};  

int m = sizeof(coins)/sizeof(coins[0]);  

int V = 11;  

cout << "Minimum coins required is "

 << minCoins(coins, m, V);  

return 0;  

}  

5 0
3 years ago
Match each document to its respective type.
barxatty [35]

Answer:

Business Documents                            

Sales Report

Pay slip

Resignation letter

Non-Business Documents

Review Article

Maths Assignment

Letter to classmate

Explanation:

Documents like Pay slips, Resignation letters and Sales reports are often a part of business desk but other documents like maths assignment, review article and letter to classmate are the non-business type documents.

  • Pay slips are the business documents as they contain all the information about how much have been paid to the employee, which deductions are made on tax and other basis and how much interest (if any is added).
  • Sales Reports are the ones which describe the whole activity related sales in a specific period of time.They can either be generated by individual representatives or the manager. All the data regarding new accounts, consumption, opportunities is listed in this report.
  • Resignation Letters are the type of announcements telling that the employee or the person is intended to leave the job or position held currently.
  • Maths Assignment is a daily basis work that is assigned by teachers to students , it has nothing to do with business.
  • Review articles are the summarized form of the articles written in order to make it easier for others to select the articles on the basis of quality. They are not the part of any kind of business.
  • Letter to classmate is a formal way of chatting or requesting like for lending books or some other gossips. They aren't a part of business.
7 0
4 years ago
Read 2 more answers
Which of the following is true regarding packaged software and custom software? Group of answer choices Packaged software are ap
sp2606 [1]

Answer:

For custom software= cost high

Packaged software = common softwares available publicaly like Office suite

Explanation:

The development costs of custom software are much higher than for packaged software because of the time, money, and resources that are required to design and develop them.

5 0
3 years ago
After a file downloads, you can do any of the following except
loris [4]
Change owner rights... I think you forgot to put the choices, I am taking a wild guess of what the answers could have been.
8 0
3 years ago
Other questions:
  • Anne-Marie Cole runs the sales division for a local auto insurance firm. One of her key duties is to calculate her company's mar
    13·1 answer
  • True and False: High-speed Internet service is free form of information technology that these businesses can utilize.
    13·1 answer
  • You have created a new DHCP scope with address range 192.168.1.1 to 192.168.1.254. You have five servers configured with static
    8·1 answer
  • What is one reason that writing effective messages is so important
    11·2 answers
  • Write a program that dynamically allocates an array large enough to hold a user-defined number of test scores. Once all the scor
    5·1 answer
  • Asymmetric key encryption combined with the information provided by a. certificate authority allows unique identification of the
    8·1 answer
  • What adaptation Judy and her parents have that help them run from predators coming?​
    6·1 answer
  • Basic python coding, What is the output of this program? Assume the user enters 2, 5, and 10.
    8·1 answer
  • Once you select a theme, you__________ change the theme’s individual elements independently of each other.
    12·1 answer
  • Choose the answer that best completes the visual analogy.
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!