were i can use screwdriver

Answers

Answer 1

Answer:

On a screw

Explanation:


Related Questions

As a technical support rep, michael is responding to a customer's question sent to him via e-mail. what should michael's first task be?

Answers

As a technical support rep, Michael's first task will be option b: Determine the purpose of the message he will send as a response.

Who is a technical support rep?

The role or duty of a Technical Support is known to be any person that tends to troubleshoot customer tech issues.

Note that they are said to be people who often resolve issues that are linked to computers, phones, tablets, and others.

Therefore, As a technical support rep, Michael's first task will be option b: Determine the purpose of the message he will send as a response.

Learn more about technical support  from

https://brainly.com/question/27366294
#SPJ1

See option

a. conduct any necessary research

b. determine the purpose of the message he will send as a response

c. Hit the "reply" button

d. start composing his reply

An operating system is an example of which of the following?
A. Hardware
B.software
C.networking system
D.messaging system

Answers

B. Software.

Operating system is a software the supports a computer’s basic functions.

The level of the computer hierarchy that is composed of gates and wires is the ______.

Answers

The level of the computer hierarchy that is composed of gates and wires is Digital logic level.

The level of the computer hierarchy that is composed of gates and wires is the Digital logic level. This is the level where the computer's basic operations are performed. The digital logic level is made up of two main components: the control unit and the ALU.

The control unit is responsible for the management of the computer's resources and for controlling the sequence of operations within the computer. The ALU, or arithmetic logic unit, is responsible for performing the computer's arithmetic and logic operations.

All the basic operations performed by a computer, such as addition, subtraction, multiplication, and division, are implemented at the digital logic level.

Learn more on Digital logic level here:

https://brainly.com/question/8316419

#SPJ4

I Need help with this ASAP

Answers

Answer:It´s B. The code reults in an error

Explanation:

reads a line of input, including leading and embedded spaces, and stores it in a string object.

Answers

A getline reads a line of input, including leading and embedded spaces, and stores it in a string object.

What is a Getline?

The term  C++ getline() is known to be a kind of  standard library function that  is known to be used by a programmer to be able to read a string or a line usually from an input stream.

It is said to be an aspect  of the <string> header. The getline() function tends to obtain or extracts characters from the input stream and attach it to the string object.

Therefore, A getline reads a line of input, including leading and embedded spaces, and stores it in a string object.

Learn more about string object from

https://brainly.com/question/17157424

#SPJ1

________ reads a line of input, including leading and embedded spaces, and stores it in a string object.

Select one:

a. cin.get

b. getline

c. cin.getline

d. get

e. None of these

Computer vandalism falls under the computer as a ________ classification of computer crime.

Answers

Computer vandalism falls under the computer as a target classification of computer crime.

What is a computer crime?

A computer crime is sometimes referred to as cyber crime and it can be defined as a type of crime that typically involves the use of a computer system by a knowledgeable computer user (hacker or attacker) to gain an authorize access to a computer, in order to steal sensitive personal data (information) such as:

PasswordSocial Security NumberEmail address

What is computer as a target?

In Cyber security, computer as a target generally involves computer vandalism, denial of service, data alteration, network intrusions, and thefts of data (information).

Read more on computer crime here: https://brainly.com/question/13109173

#SPJ1

1.21 lab: divide by x write a program using integers user_num and x as input, and output user_num divided by x three times. ex: if the input is:_________

Answers

A program using integers user_num and x as input, and output user_num divided by x three times is given below:

The Program

#include <stdio.h>

int main(void) {

  int userNum;

  int x;

  int ans1;

  int ans2;

  int ans3;

 

  scanf("%d", &userNum);

  scanf("%d", &x);

 

  ans1 = userNum/x;

  ans2 = ans1/x;

  ans3 = ans2/x;

 

  printf("%d %d %d\n", ans1, ans2, ans3);

  return 0;

}

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

​ is​ (are) used to process human body characteristics to identify and authenticate individuals for security and access control purposes.

Answers

Biometric scanners​ is​ (are) used to process human body characteristics to identify and authenticate individuals for security and access control purposes.

What are Biometric scanners?

The term Biometrics scanners are known to be a kind of a hardware that is said to be used to take in the biometric which is used  for verification of identity.

Note that they are scans match that are done against the saved database and this is often done to approve or deny access to any given system.

Therefore, Biometric scanners​ is​ (are) used to process human body characteristics to identify and authenticate individuals for security and access control purposes.


Learn more about Biometric scanners from

https://brainly.com/question/13451232

#SPJ1

In a database context, a(n) _____ indicates the use of different names to describe the same attribute.

Answers

In a database context, a synonyms indicates the use of different names to describe the same attribute.

What is a relationship in a database ?

There are said to be three main types of relationships that tend to exist between the data a person are likely to see or find at any stage in a design:. They are:

The one-to-oneThe one-to-manyThe many-to-many.

The synonym is a database object acts by gibing or Providing another name for any database object.

Note that the above are often used to to identify the relationships and a person need to evaluate the data and have an understanding of what what  rules apply to them,

Therefore, In a database context, a synonyms indicates the use of different names to describe the same attribute.

Learn more about synonyms from

https://brainly.com/question/76433

#SPJ1

Which command prompt command will enable you to see all the files in the c:\fred folder with the extension exe?

Answers

DIR C:\FRED\*.EXE command prompt command will enable you see all the files in the c:\fred folder with the extension exe.

If you want to see all the files in a specific folder that have a certain file extension, you can use the DIR command in the Command Prompt.

To use the DIR command, you need to specify the path of the folder you want to list the contents of, and then add the file extension you're looking for. So, if you want to see all the files in the c:\fred folder that have the .exe extension, you would use the following command:

dir c:\fred\*.exe

This will list all the files in the c:\fred folder that have the .exe extension.

Learn more on command prompt here:

https://brainly.com/question/25808182

#SPJ4

_____ are tools that track the memory usage, status, and errors of currently running software.

Answers

Process managers are tools that track the memory usage, status, and errors of currently running software.

What is a process management?

Process Management is known to be a term that is often called Business Process Management (BPM).

It is seen as  a kind of an organizational discipline that gives tools and resources that is said to be used for examining , defining, optimizing, monitoring, etc., of interdependent business processes.

Therefore, Process managers are tools that track the memory usage, status, and errors of currently running software.

Learn more about Process managers from

https://brainly.com/question/869693

#SPJ1

Which format specifier transforms the variable pi to have only two decimal places in the output?

Answers

Console.WriteLine(pi.ToString("N2")); format specifier transforms the variable pi to have only two decimal places in the output.

Did you know that you can use the "N2" format specifier to transform the value of the pi variable to have only two decimal places in the output?

It's easy to do - simply use the Console.WriteLine method and pass in the value of pi with the "N2" format specifier.

Here's an example:

Console.WriteLine(pi.ToString("N2"));

This will output the value of pi as "3.14".

You can also use this format specifier with other numeric data types, such as floats and doubles. So if you want to limit the output of a float or double to two decimal places, you can use the "N2" format specifier.

Learn more here:

https://brainly.com/question/14425911

#SPJ4

Which of the following is NOT a possible result of personal information being located on an unsecure network?

Answers

The option that is not a possible result of personal information being located on an unsecure network is a computer virus is downloaded to the network.

What is an unsecure network?

An unsecured network is known to be a term that connote that a given network can be compromise at any time.

Note that this is said to be one that is refers to as a free Wi-Fi (wireless) network and it is one that tells that there is no form of special login or screening process to be able to get on the network, and as such you and anyone else can use it.

Therefore, based on the above, The option that is not a possible result of personal information being located on an unsecure network is a computer virus is downloaded to the network.

Learn more about unsecure network  from

https://brainly.com/question/14806619

#SPJ1

Q.

Which of the following is NOT a possible result of personal information being located on an unsecure network?

answer choices

A computer virus is downloaded to the network

A persons financial information is downloaded to social media

A persons identity is stolen

A computer hacker breaks into the network and downloads information

What is the most popular example of specialized software for managing projects?
a) project apple
b) microsoft management
c) tool pert/cpm
d) microsoft project

Answers

The most popular example of specialized software for managing projects is: D) Microsoft project.

What is a software?

A software can be defined as a set of executable instructions that is typically used to instruct a computer system on how to perform a specific task (function) and proffer solutions to a particular problem.

What is Microsoft office?

Microsoft Office can be defined as a processing software application or program that is designed and developed by Microsoft Inc.

Basically, the Microsoft Office comprises different software applications and these include the following:

Microsoft Word.Microsoft PowerPoint.Microsoft AccessMicrosoft ProjectMicrosoft Excel.

In conclusion, the most popular example of specialized software for managing projects is Microsoft project because it can be used by project managers to formulate plans, budget, distribute resources and monitor project progress.

Read more on Microsoft project here: https://brainly.com/question/2704239

#SPJ1

A student who wants to work with computers but does not have a strong aptitude for math might find a good fit by pursuing a(n)___systems degree.

Answers

A student who wants to work with computers but does not have a strong aptitude for math might find a good fit by pursuing a(n) information technology systems degree.

What is information technology meaning?

Information technology (IT) is known to be a term that connote the use of any form of computers, storage, as well as networking and other forms of physical devices, infrastructure and processes to be able to make, process, save as well as, secure and pass all kinds of electronic data.

Therefore, A student who wants to work with computers but does not have a strong aptitude for math might find a good fit by pursuing a(n) information technology systems degree.

Learn more about information technology from

https://brainly.com/question/25110079

#SPJ1

strong aptitude for math might find a good fit by pursuing a(n)____ systems degree.

Activating the ______ will make the trigger stay in the operating mode even when it is released.

Answers

Answer:

Trigger lock

Explanation:

If using the md5 hashing algorithm, what is the length to which each message is padded?

Answers

Answer:

512 bits.

Explanation:

If using the md5 hashing algorithm, what is the length to which each message is padded?

The answer is 512 bits

hope this helps

When is the possibility of solar weather affecting terrestrial weather the highest?(1 point)

during solar minimum
during solar minimum

during the solar cycle
during the solar cycle

during solar maximum
during solar maximum

during Total Solar Irradiance
during Total Solar Irradiance

Answers

The possibility of solar weather affecting terrestrial weather the highest is option c: during solar maximum.

Does solar weather have an effect on terrestrial weather?

There are different forms of weather on Earth, this is one that ranges from the surface of the planet out unto the outer space.

Note that Space weather as well as terrestrial weather are known to be influenced by the little  alterations that the Sun undergoes during its solar cycle.

Hence, The possibility of solar weather affecting terrestrial weather the highest is option c: during solar maximum.

Learn more about solar weather from

https://brainly.com/question/15279276

#SPJ1

what are the limitations of the current thecnology​

Answers

Answer:

Disadvantages of Technology in Education

Learning Is Becoming More Expensive. Times have changed a lot in terms of education. ...

Insufficient Teaching Methods. ...

Misguiding Information. ...

Extra Distractions for Students. ...

Inefficient Learning by Students. ...

Technology Sometimes Fails. ...

Makes Cheating Easier. ...

Final Thoughts.

28-Oct-2020

A. in order to calculate the market basket used for the cpi, what information is needed?

Answers

For one to be able to calculate the market basket used for the cpi, the information that is needed are:

The market prices The goods The services purchased by the any household.

What is in a Market Basket?

A market basket is known to be a kind  of a selected composition of goods and services that one can be able to use to tracks the work output or the performance of a particular market or segment.

Note that a popular market basket is seen or called the Consumer Price Index (CPI).

It is one that tends to gives an approximate value for inflation that is known to be based on the average change in regards to price paid for a particular basket of goods and services over time.

Therefore,For one to be able to calculate the market basket used for the cpi, the information that is needed are:

The market prices The goods The services purchased by the any household.

Learn more about market basket from

https://brainly.com/question/1600508
#SPJ1

Acute exacerbation of addison's disease can lead to ecg changes and cardiovascular collapse as a result of electrolyte imbalance secondary to:_________

Answers

Acute exacerbation of Addison's disease can lead to ECG changes and cardiovascular collapse as a result of electrolyte imbalance and also as a consequence of low blood volume due to the K retention and/or Na excretion.

What is Addison's disease?

Addison's disease is a disorder associated with the faulty secretion of several hormones, which are fundamental to maintaining the homeostasis of the body (state of equilibrium) in normal conditions.

This disease (Addison's disease) is associated with electrocardiogram (ECG) changes due to arrhythmia caused by electrolyte imbalance issues, which is a process that depends on positive ion particles such as potassium K and sodium Na in normal concentration levels

In conclusion, acute exacerbation of Addison's disease can lead to ECG changes and cardiovascular collapse as a result of electrolyte imbalance and also as a consequence of low blood volume due to the K retention and/or Na excretion.

Learn more about Addison's disease here:

https://brainly.com/question/13840401

#SPJ1

Since the ntfs file system enjoys more widespread compatibility with other operating systems, it is often used on removable devices such sd cards and usb flash drives.
a. true
b. false

Answers

Answer: false

Explanation:

In a print statement, you can set the ________ argument to a space or empty string to stop the output from advancing to a new line. newline end separator stop

Answers

In a print statement, you can set the end argument to a space or empty string to stop the output from advancing to a new line. newline end separator stop.

What is a print statement?

The print statement is known to be an element or a tool that is often used to send output to a given standard output unit.

This can be your monitor, or even your printer  of a given computer system.

Therefore, In a print statement, you can set the end argument to a space or empty string to stop the output from advancing to a new line. newline end separator stop.

Learn more about print statement from

https://brainly.com/question/27221616

#SPJ1

When error messages indicate that the windows registry is corrupted and you cannot boot from the hard drive, what tool or method is the first best option to fix the problem?

Answers

The tool or method is the first best option to fix the problem is Use bootable media to launch Windows RE and use System Restore to apply a restore point.

What is the command about?

If  Windows 7 registry is known to be corrupted and a person is unable to boot from the hard drive, one can be able to fix the problem by the use of commands that can be obtained from the Windows Recovery Environment to be used to recover the registry from backup.

Therefore, The tool or method is the first best option to fix the problem is Use bootable media to launch Windows RE and use System Restore to apply a restore point.

Learn more about Windows registry  from

https://brainly.com/question/10621447

#SPJ1

When error messages indicate that the Windows registry is corrupted and you cannot boot from the hard drive, what tool or method is the first best option to fix the problem? The second-best option?

Use bootable media to launch Windows RE and use System Restore to apply a restore point.

Use bootable media to launch Windows RE and perform a startup repair.

Use bootable media to launch Windows RE and then use commands to recover the registry from backup.

Refresh Windows using a system image or custom refresh image.

A variety of memory cards and flash drives can be classified as _____ storage, which stores data in a nonvolatile, erasable, low-power chip.

Answers

A variety of memory cards and flash drives can be classified as Solid state storage, which stores data in a nonvolatile, erasable, low-power chip.

What are memory cards?

A memory card is known to be  a type of storage device that is known to be used for saving media as well as data files.

Note that this is a tool that helps to give  a permanent as well as non-volatile tool to be able to save data and files from any attached device.

Therefore, A variety of memory cards and flash drives can be classified as Solid state storage, which stores data in a nonvolatile, erasable, low-power chip.

Learn more about memory cards from

https://brainly.com/question/21708725

#SPJ1

Dexter went to the university library to print history report that was printed on a ____ printer which uses low quality and heat sensitive paper

Answers

Answer:

thermal printer

Explanation:

Dexter went to the university library to print history report that was printed on a thermal printer which uses low quality and heat sensitive paper

What is a thermal printer?

A thermal printer is known to be a kind of a a printer that is said to be compose of the use of heat so that it can be able to make the image on paper.

A a result of its quality of print, speed, as well as technological advances it has said to be used a lot in  airline, banking, and others.

Therefore, when compared to others, it is of low quality and as such,  Dexter went to the university library to print history report that was printed on a thermal printer which uses low quality and heat sensitive paper

Learn more about printer from

https://brainly.com/question/14156130

#SPJ1

The total requests for a web page and are used as a measure of internet traffic are called ______. multiple choice question.

Answers

Answer:

hits

Explanation:

Which new technology is a result of advances in artificial intelligence? O A. High-speed internet B. 5G networks C. Smart appliances D. Self-driving cars ​

Answers

The  new technology that is said to be a result of advances in artificial intelligence is known to be option D. Self-driving cars.

What is the artificial intelligence?

The term Artificial intelligence (AI) is known to be the ability or power of any given  computer or a robot that is said to be handled as well as controlled by a computer to be able to carry out tasks that are said to be often done by humans due to the fac that they need human intelligence and also their discernment.

Therefore, based on the above, The  new technology that is said to be a result of advances in artificial intelligence is known to be option D. Self-driving cars.

Learn more about artificial intelligence from

https://brainly.com/question/25523571
#SPJ1

In __________ write, the data are stored in the cache, and control returns to the caller.

Answers

In an asynchronous write, the data are stored in the cache, and control returns to the caller.

An asynchronous write is a write operation that does not block the caller until the data is actually written to the underlying storage. The data is instead stored in the cache, and control returns to the caller. When the data is eventually written to the underlying storage, the write is said to be "completed".

Asynchronous writes can be useful in situations where blocking the caller is not desirable, or where the time to complete the write is not known in advance. For example, an application that is writing data to a slow storage device may choose to use an asynchronous write in order to avoid blocking the caller while the data is being written.

Learn more about Asynchronous write here:

https://brainly.com/question/10057909

#SPJ4

Write a conditional that decreases the value associated with shelf_life by 4 if the value associated with outside_temperature is greater than 90.

Answers

A conditional that decreases the value associated with shelf_life by 4 if the value associated with outside_temperature is greater than 90 is: if outside_temperature > 90:

shelf_life -= 4.

What is a conditional statement?

A conditional statement can be defined as a type of statement that can be written to have both a hypothesis and conclusion. This ultimately implies that, a conditional statement typically has the form "if P then Q."

Where:

P and Q represent sentences.

Based on the information provided, a conditional which decreases the numerical value that is associated with shelf_life by 4 if the numerical value associated with outside_temperature is greater than 90 would be written as follows:

if outside_temperature > 90:

shelf_life -= 4.

Read more on conditional statement here: https://brainly.com/question/14844178

#SPJ1

Other Questions
1 N b In Fig. R49 b, PT is a tangent at T to circle LMNT such that PT || LN. i Show that ANTL is isosceles. ii Find NTM. T M 498 L 36 P A 7 cm string that is fastened at both sides is plucked. what is the wavelength of the n = 4 standing wave? What is true regarding an information signal viewed in the time and/or frequency domains? Which graph represents the function h(x)=x+2?Of like f(x)= - x+2A b c d I GIVE BRAINLIEST FOR ALL QUESTIONSThe lengths of the sides of a triangle are 3, 4, 5. Can the triangle be a right triangle?yesno Which technique of studying the brain involves injecting the patient with radioactive glucose? Which of the following vehicles is covered by liability coverage under the personal auto policy? a uninsured owned vehicle b motorcycle c company car An artist plans to sell $300 of prints online each week. This month, she is within $22 of her goal.Part A: Define a variable and write an absolute value equation to represent the scenario. Part B: Solve the equation, showing all steps. Part C: What are the minimum and maximum amounts that the artist received for her products? 2. During an activity, a teacher labeled the following scenario as hypertonic. Is she correct? Why or why no%H015%solute80% HO% solute Ruskin suggests that consumers should make every effort to purchase beautiful things that are? What strategy would be the best to solve this problem?Ann-Marie bought apples. She kept one-third for herself and gave the rest to 4 friends. Each friend got 2 apples. How many apples did Ann-Marie buy?What strategy would be the best to solve this problem? A. guess, check and revise B. work backwards C. use a formula D. look for patterns Can an inverse andcontrapositive both have false truth values? Which fractions are equivalent to 0.4? Select all that apply. A. in order to calculate the market basket used for the cpi, what information is needed? According to the text, those who want to have a greater impact on the political system and get more of what they want should ______. Organizations seek to gain a competitive advantage by differentiation, cost, or _________. The shaded region displayed in the graph does not include the dashed line. Which of the following best represents all the shaded points? Enlightenment thinker Adam Smith wrote about laissez-faire economics and market systems, which was influential in how people economically viewed the role of the government. According to Smith, what role should the government have?Question 1 options:business operations should be solely controlled by the governmentthe wealthy business owners should be charged the most taxes the government should allow business to operate freelythe government should impose strict regulations on businessesplease help In a database context, a(n) _____ indicates the use of different names to describe the same attribute. Exercise 1 Draw one line under each compound subject and two lines under the simple predicate they share. Circle the conjunction or conjunctions. Mr. Tanaka and the drama club are meeting with the school board this afternoon.