what is mouse and how many types of mouse are there​

Answers

Answer 1

Answer:

a mouse is the object that controls the cursor on your computer/laptop, there's one standard type of mouse, but there are thousands of makes and models.

Explanation:

Answer 2

Answer: A mouse is a rodent, and there are over 1,000 mouses, probably including me, electric mouse.

Explanation: how do I explain this?


Related Questions

Create an old sample dictionary {0:10, 1:20} as follows to store numbers. Write a Python script to ask how many runs from user input to add items to the old dictionary. Use a loop to append these key/value pairs to the dictionary. Print out the resulting dictionary for each run (NOT just the last run). Please find the number patterns to append key/value pairs. You cannot add the numbers manually.

Answers

Answer:

Here is the Python code:

runs=int(input("how many runs do you want to add items to dictionary? "))  #store input number of runs

d = dict()  #creates a dictionary

d = {0:10,1:20}  #old dictionary

count=0  #counts number of runs

for x in range(2,runs+2):  #loop to append key/value pairs to dictionary

   d[x]=(x*10)+10  #multiples and adds 10 to the each value

   count+=1  #adds 1 to the count at each iteration

   print("After the #",count, "run the new dictionary is: ",d) #prints the new dictionary

Explanation:

I will explain the program with an example:

The old dictionary is :

d = {0:10,1:20}  

runs = 3

count = 0

At first iteration:

x = 2

d[x]=(x*10)+10

This becomes:

d[2]=(2*10)+10

d[2]= 20 + 10

d[2]= 30

count+=1

count = 1

   print("After the #",count, "run the new dictionary is: ",d)

This statement displays the first iteration result :

After the # 1 run the new dictionary is:  {0: 10, 1: 20, 2: 30}  

At  second iteration:                                                              

x = 3

d[3]=(3*10)+10

This becomes:

d[3]=(3*10)+10

d[3]= 30 + 10

d[3]= 40

count+=1

count = 2

   print("After the #",count, "run the new dictionary is: ",d)

This statement displays the first iteration result :

After the # 2 run the new dictionary is:  {0: 10, 1: 20, 2: 30, 3: 40}      

At  third iteration:                                                              

x = 4

d[4]=(4*10)+10

This becomes:

d[4]=(4*10)+10

d[4]= 40 + 10

d[4]= 40

count+=1

count = 3

   print("After the #",count, "run the new dictionary is: ",d)

This statement displays the first iteration result :

After the # 3 run the new dictionary is:  {0: 10, 1: 20, 2: 30, 3: 40, 4: 50}    

Now the loop breaks as x = 5 necause n+2 = 3+2 = 5 limit is reached

The screenshot of program along with its output is attached.

why is there a need of properly interpreting teacher's/manufacturer's specifications before operating any food processing equipment?​

Answers

Answer:

Explanation:

This is a significant need because the teacher's/manufacturer's specifications are created so that the individual operating the equipment knows how to properly operate it. Failure to read and properly interpret these specifications can lead to the damaging of the equipment, damaging the food, contamination of the food, and even injury/death to the operator. That is why it is crucial that the information is read and interpreted correctly as well as implemented as instructed.

There's a need to properly interpret teacher's/manufacturer's specifications before operating any food processing equipment due to D. All of these.

From the information given, it should be noted that there's a need to properly interpret teacher's/manufacturer's specifications before operating any food processing equipment in order to be familiar with the parts and functions.

Also, it's important in order to avoid accidents due to faulty operation of equipment and to be able to determine the correct operation of the equipment. Therefore, the correct operation is all of the above.

Read related link on:

https://brainly.com/question/14407771

What are the top five vulnerabilities of your operating system? Discuss any three steps you take to secure your operating system. Which tools do you use to safeguard your operating system and why? In your opinion, which OS integrity check is the most important? Why? Hellppoopp marking brainlisttttt

Answers

Answer:

SQL Injections (SQLi)

Risky Reuse of Passwords Across Multiple Platforms

Out of Date Patches

Custom Crafted URL Queries and Misconfigured Server Settings

In-House Designed and Developed Software

Explanation:

1 Keep up with system and software security updates.

2 Enable a firewall.

3 Install antivirus and anti spyware software.

1. What is an advantage of the PCIe bus over the PCI bus?
2. Which type of devices typically use Mini PCI cards?
3. Which bus type is commonly used by graphics cards?
4. What type of slot can a PCIe x1 expansion card be placed in?

Answers

Answer:

Explanation:

1. PCI Express (PCIe) is a next generation I/O bus architecture. Rather than a shared bus, each PCIe slot links to a switch which prioritizes and routes data through a point-to-point dedicated connection and provides a serial full-duplex method of transmission.

2. Mini-ITX or Laptops

3.PCMCIA Personal Computer Memory Card International Association

4. PCIe x1 slot

This program outputs a downwards facing arrow composed of a rectangle and a right triangle. The arrow dimensions are defined by user specified arrow base height, arrow base width, and arrow head width.
(1) Modify the given program to use a loop to output an arrow base of height arrow_base_height.
(2) Modify the given program to use a loop to output an arrow base of width arrow_base_width.
(3) Modify the given program to use a loop to output an arrow head of width arrow_head_width.
(4) Modify the given program to only accept an arrow head width that is larger than the arrow base width.
Use a loop to continue prompting the user for an arrow head width until the value is larger than the arrow base width.
while arrow_head_width <= arrow_base_width: arrow_head_width = int(input('Enter arrow head width:\n')) Example output for arrow_base_height = 5, arrow_base_width = 2, and arrow_head_width = 4: Enter arrow base height: 5 Enter arrow base width: 2 Enter arrow head width: 4 tot tr

Answers

Answer:

Here is the Python program:

arrow_base_height = int(input('Enter arrow base height: \n'))  #prompts user to enter the arrow base height

arrow_base_width = int(input('Enter arrow base width: \n')) #prompts user to enter the arrow base width

arrow_head_width = int(input('Enter arrow head width: \n'))  #prompts user to enter the arrow head width

while (arrow_head_width <= arrow_base_width):  #ensures that the arrow head width is greater than base width

    arrow_head_width = int(input('Enter arrow head width: \n'))  #keeps prompting user to enter arrow head width until the value is larger than the arrow base width.

for i in range(arrow_base_height):  #to print arrow shaft

   for j in range(arrow_base_width):  #iterates through arrow base width

       print ('*', end='')  #prints asterisks

   print ()  #prints new line

for i in range(arrow_head_width):  #iterates through arrow head width arrow head

   for j in range(arrow_head_width-i):  #iterates through arrow head width-i

        print ('*', end='')  #prints asterisks

   print()  #prints new line

       

Explanation:    

The program works as follows:

Suppose user enters 5 as arrow base height, 2 as arrow base width and 4 as arrow head widths so,

arrow_base_height = 5

arrow_base_width = 2

arrow_head_width = 4

Since the arrow_head_width is not less than arrow_base_width so the while loop at the start does not execute. Program control moves to the statement:

for i in range(arrow_base_height):

for j in range(arrow_base_width):

Both of these loop are used to print the shaft line and after execution of these loops the output becomes:

**

**

**

**

**

Note that the outer loop is executed 5 times as arrow_base_height=5 and the inner loop iterates two times for each iteration of outer loop because arrow_base_width is 2 and the print ('*', end='') statement keeps printing the asterisks whereas print() prints a new line after printing 2 asterisks at each line.

Next the program moves to the following loops:

for i in range(arrow_head_width):

   for j in range(arrow_head_width-i):

Both of these loop are used to print the arrow head and after execution of these loops the output becomes:

****

***

**

*

Note that the outer loop is executed 4 times as arrow_head_width=4 and the inner loop iterates 4 times in start and decrements one time at each iteration and the print ('*', end='') statement keeps printing the asterisks whereas print() prints a new line after printing 2 asterisks at each line.

So the entire output of this program is:

**

**

**

**

**

****

***

**

*

The screenshot of the program along with its output is attached.

Match each keyboard command with its result.
Control + End
jumps to the beginning of a document
Page Up
e
moves backward in a document
Control + Home
jumps to the end of a document
moves forward in a document
Page Down

Answers

Answer:

The answer to this question is given below in the explanation section

Explanation:

The following are the correct match according to the keyboard command with its result.

Control + End  - jumps to the end of a document Control + Home  - jumps to the beginning of a document Page Up  - moves backward in a documentPage Down - moves forward in a document

Suppose Client X initiates a FTP session with Server W and requests data transferring. At about the same time, Client Y also initiates a FTP session with Server and requests data transferring W. Provide possible source and destination port numbers for:______.
a) The segments sent from X to W.
b) The segments sent from Y to W.
c) The segments sent from W to X.
d) The segments sent from W to Y.
e) Is it possible that the source port number in the segments from X to W is the same as that from Y to W?
f) How about if they are the same host? Hints: You may use any valid port numbers; make sure to use the correct patterns to design the port numbers to support communication

Answers

Answer:

Folllows are the solution to the given points:

Explanation:

In this question, the server uses special port 21 and  20 for the command and data transfer. A customer uses a random short-term N > 1023 and N+1 ports Listen and the Ports may be randomly distributed and the following samples are given for:  

In point (a):

X: 1030 Client, W server: 21 (service)  

W: 20 server (data) ,Client X:1031

In point (b):

Server W: 21 (command) Client Y: 1035  

Client Y: 1036, (data) Server W: 20  

In point (c):

Client X: 1030, Server W: 21.  

Client X: 1031, (data) Server W: 20  

In point (d):

Client X: 1035, Server W: 21.  

Client X: 1036 ,(data): Server W: 20.  

In point (e):

Yes, it's an opportunity. It can be the same as a certain likelihood.  

In point (f):

The port of the server is the norm. If W and Y are on the same host, the client's port numbers can vary.  

How do you code in C++. Please keep this basic as possible and I will report is I get a bad answer like my last time doing this question

Answers

Answer:

What do you need?

Explanation:

I'm a C++ semi-starter and I can get you started with some basic things, just tell me what help do you need (Programming enviroment, enviroment problems, errors ,..)

Other Questions
Rules for Dividing Two Integers:1. A quotient is negative if the divisor and the dividend have _______ signs.2. A quotient is positive if the divisor and the dividend have _______ signs.1) Fill in the blanks for the rules, respectively.A) opposite, the same B) the same, opposite C) opposite, opposite D) the same, the same2) If p and q are integers, which expression is NOT equal to the others?A) -p/qB) -p/qC) p/-qD) -p/-q(A and B aren't the same) Why do fish have smooth scales on their body? A system of three linear equations in three variables is consistent and independent. How many solutions to the system exist?A: noneB: oneC: threeD: infinitely manyB is correct To find the height of this tree, Luis marked the tree at eye level, 1.8 meters above the ground. He measured 32 m from the base of the tree and then held a 5-cm ruler vertically in front of his eye until the ruler just obscured the tree above the mark. Using a string tied through a hole in one end of the ruler, Luis found that the distance from his eye to the ruler was 4.7 centimeters. What was the height of the tree? Round to the nearest meter. As a projectile falls, what happens to the components of velocity?Question 25 options:vertical velocity decreases in magnitude, horizontal velocity decreasesvertical velocity decreases in magnitude, horizontal velocity decreasesvertical velocity increases in magnitude, horizontal velocity stays the samevertical velocity increases in magnitude, horizontal velocity increases Which are possible first steps in solving the equation 4x + 3 = 187 I need to know whether its A) 54B)88C)68D)34 Which three peninsulas occupy Southern Europe?giving brainliestAndorranBalkanIberianItalianPortuguese Explain how the hydrogen ion concentration gradient is generated and how it is used to make ATP . How many trips to the New World, on behalf of Spain did Christopher Columbus make between 1492 and 1504?FortyFour hundredFourFourteen John and Matt are going to eat at the same restaurant and they are paying separately. Matt ordered 2 burgers and 1 side item, his total was $14.75. John ordered 3 burgers and 2 side items, his total was $24.00. Pls help me I need the correct answer asap question is in the pic Soooo likeeee who know this?? How did religion factor in to how immigrants were viewed? Jayden started a baking account with $150 and is spending $7 per day on lunch. the x-axis would be labeled How does writing the gist help you understand a text? Method of Least Squares, Goodness of Fit Deepa Dalal opened a free-standing radiology clinic. She had anticipated that the costs for the radiological tests would be primarily fixed, but she found that costs increased with the number of tests performed. Costs for this service over the past nine months are as follows:______. Month Radiology Tests Total Cost January 2,800 $133,500 February 2,600 135,060 March 3,100 175,000 April 3,500 170,600 May 3,400 176,900 June 3,700 186,600 July 3,840 174,450 August 4,100 195,510 September 3,450 185,300Required: 1. Compute the cost formula for radiology services using the method of least squares. If required, round your answers to two decimal places. Y = $ ________ + $ _________X 2. Using the formula computed in Requirement 1, what is the predicted cost of radiology services for October for 3,500 appointments? (Round the answer to the nearest dollar.) $ _____________________ in what part of the day do plants produce more carbon dioxide than oxygenA. during daylightB. at dawnC. at duskD. During the night If two smokers are living in a residence, how often should their carpets be cleaned during extremely cold weather?A) every month B) every 2 months C) every 3 months D) every 4 months please help with this ws.Qu desean? Completa cada oracin de una manera lgica y original. Usa el presente de subjuntivo o el infinitivo, segn sea necesario. 1. Mis padres insisten en que yo...2. Quin te aconseja que t...? 3. Manolo les pide que...4. Es mejor... todos los das.5. Se prohbe que los estudiantes...6. Tina no desea...7. Es malo que Uds. no...8. Preferimos que nuestros amigos...