You are working part time providing computer support for a veterinarian’s office. When you arrive to work one morning, the receptionist informs you that the computer monitor is not displaying anything. List at least three steps you will perform to troubleshoot the problem, and list three possible causes.

Answers

Answer 1

reboot the whole computer,

Explanation:

someone being on it when they shouldn't have


Related Questions

Which term describes the process of training a machine to do simple, repetitive tasks, and adapt or correct its performance based on changing conditions at speed and scale?

Answers

The term which describes the process of training a machine to do simple, repetitive tasks, and adapt or correct its performance based on changing conditions at speed and scale is: Intelligent automation.

An intelligent automation is also referred to as cognitive automation and it can be defined as a combination of two automation technologies such as:

Artificial intelligence (AI).Robotic process automation.

Basically, intelligent automation involves the use of both artificial intelligence (AI) and robotic process automation to build a smart computer-controlled robot or machine that is capable of performing and handling simple, repetitive tasks, while adapting or correcting its performance based on changing conditions at a particular speed and scale.

Read more: https://brainly.com/question/21656851

Answer:

Don't look at this answer bubble! Give the answer bubble above me the credit he deserves!

Explanation:

Discuss at least 1 Miscrosoft Windows security features that could protect data.

Answers

Answer:

Virus & threat protection.

Explanation:

Monitor threats to your device, run scans, and get updates to help detect the latest threats.

Answer:

User account control.

Explanation:

prevents malware damage. Helps organizations deploy a better-managed desktop.


What is one way a person can avoid capital outlay when starting a new business?
O utilize SaaS
O utilize the cloud
O utilize advertising
O utilize investors

Answers

Answer:

utilize advertising

I hope this is correct

What are the main types of system software? ​

Answers

Operating Systems

Middleware

Device Drivers

Utility Software

Shells and Windowing Systems

Application Programs

Answer:

Two different types of system softwares are:

- Mac

- Windows

Hope This Helps

Draw a use case diagram based on the info above

Answers

Answer:

(See attached file)

Explanation:

Actors: Adult, Publisher, Agent, Editor

Description:

Compilation of Magazine is done by the editor.

Publisher is responsible for publishing the Magazine.

Agent sells the published Magazine.

Adult buys and reads the Magazine.

C++ pleaseProblemIn the IDE to the left, the class MP3 is already defined. Complete the class Podcast that inherits from MP3. This class should do the following things:Inherit the constructor such that Podcast has the following attributes:title - a string that is the title of the episodelength - an integer that has the length of the podcast in secondsgenre - a string that is the genre of the podcastname - a string that is the name of the podcastdate - a string that represents when the podcast was released to the publicDO NOT EDIT the specified code or you might not receive credit for your work!Hint: Connecting the ConstructorsNote that a few of the attributes are present in both the MP3 and Podcast classes. To connect their constructors, you can use the same parameter values for the attributes that are the same, then use different parameter values for the attributes that are different. Finally, set the attributes to the parameters appropriately for the ones that are different. For example:Podcast(string t, int l, string g, string n, string d) : MP3(t, l, g, n, d) { name = n; date = d;}Given Code#include using namespace std;//DO NOT EDIT code below this lineclass MP3 { public: MP3(string t, int l, string g, string al, string ar) { title = t; album = al; length = l; genre = g; artist = ar; } string GetTitle() { return title; } void SetTitle(string new_title) { title = new_title; } int GetLength() { return length; } void SetLength(int new_length) { length = new_length; } string GetGenre() { return genre; } void SetGenre(string new_genre) { genre = new_genre; } string GetAlbum() { return album; } void SetAlbum(string new_album) { album = new_album; } string GetArtist() { return artist; } void SetArtist(string new_artist) { artist = new_artist; } private: string title; int length; string genre; string album; string artist;};

Answers

Answer:

brow srri i got no clue

Explanation:

please help me plss! PLS​

Answers

Explanation:

OKAY, you got your asnswer.. sorry I could not help.

what we can't do in MS Paint?​

Answers

Answer:

I don't know what you can't do but I know you can:

- Create a Gradient Color Effect

- Undo/Redo

- Transparent Background Selection

_________1.exchange rate
_________2.medium of exchange
_________3.thailand
_________4.switzerland
_________5.saudi arabia

a. Forex
b. FranC
c.Rial
d. Baht
e. Currency​

Answers

1. E
2. A
3. D
4. B
5. C

Select the correct text in the passage.
Identify the value contrast in the description of the image.
Melissa is designing an image about wildlife. In one of the pictures, she places images of a zebra, a lion, a few deer, and some crawling insects.
She creates a dry, earth-colored background for the image. Lastly, she adds a few birds flying across the sky to complete the wildlife image.

Answers

Answer:

a dry, earth colored backround

Explanation:

The definition of value contrast is the the difference between light and dark and the areas in between

what is the meaning of s used in 0 and 1 in computer .​

Answers

Answer:

A switch, unless it's busted, can be either on or off, closed or open. A switch that is “on” or “closed” passes electrical signal through it, while a switch that is “off” or “open” blocks that signal. Computer Scientists represent an “on” switch with a 1 and an “off” switch with a 0.

Explanation:

A trial-and-error method of problem solving used when an algorithmic or mathematical approach is called

Answers

A trial-and-error method of problem solving used when an algorithmic or mathematical approach is called: heuristics.

An algorithm can be defined as a standard formula (procedures) which comprises a set of finite steps or instructions, that is typically used for solving a problem on a computer.

The three (3) basic building blocks (constructs) used in an algorithm are:

Iteration.Sequence.Selection.

Heuristics can be defined as a trial-and-error method used in solving a problem when an algorithmic or mathematical approach is not feasible or practical.

Hence, heuristics typically involves the use of a functional methodology that is not completely structured as an algorithmic or mathematical approach, when solving a problem.

Read more: https://brainly.com/question/25395113

How are most gamepads installed on devices?

Answers

Answer:

Plug and Play

Explanation:

most modern game pads are you just need to plug into a port and then you are free to use without any setting up.

someone help me

Write a C++ program that display a checkerboard pattern made of stars and blanks, as shown below. A checkerboard is eight squares by eight squares. This will be easier if you first declare two named string constants representing the two different row patterns. Be sure to include appropriate comment in your code, choose meaningful identifiers, and use indentation as do the programs.

Answers

The program is an illustration of loops.

Loops are used to perform repetitive and iterative operations.

The program in C++ where comments are used to explain each line is as follows:

#include <iostream>

using namespace std;

int main(){

   //This declares and initializes all variables

   string star = "*", blank = " ", temp;

   //The following iteration is repeated 8 times

   for (int i = 1; i <= 8; i++) {

       //The following iteration is repeated 8 times

       for (int j = 1; j <= 8; j++) {

           //This prints stars

           if (j % 2 != 0) {

               cout << star;

           }

           //This prints blanks

           else if (j % 2 == 0) {

               cout << blank;

           }

       }

       //This swaps the stars and the blanks

       temp = star;

       star = blank;

       blank = temp;

       //This prints a new line

       cout << endl;

   }

}

Read more about similar programs at:

https://brainly.com/question/16240864

PLEASE HELP!
The principle behind _____ is moving parts of the image in one direction or another by shifting its pixels.

A.
licenses

B.
colorimeters

C.
watermarks

D.
filters

Answers

D. Filters

I know because I guessed watermarks (not sure why) and got it wrong

The principle behind filters is moving parts of the image in one direction or another by shifting its pixels.

What is Photography?

This refers to the use of lenses to capture images of still objects or other types of images.

With this in mind, we can see that when editing a photograph, there is the use of filters to add some extra effects on the image and this is done by moving parts of the image in one direction or another by shifting its pixels.

Read more about photography here:
https://brainly.com/question/25821700

Please help my career is a veterinarian!

4. What path could you take in high school to help prepare you for this career? For example: AP
courses, career and technical education, etc. Which is most appropriate and why?

5. What post-secondary routes (education after high school) could also help you to prepare for
this career? Explain or describe.

Answers

Answer:

1. Search for internships at local businesses or organizations. Choose part-time jobs that allow you to gain experience and help you build skills in your chosen career. Participate in extracurricular activities and take advantage of leadership opportunities. Join clubs that relate to your chosen field.

2. Schooling after high school that includes programs at technical and trade schools, community colleges, and four-year colleges.

Using styles instead of direct formatting

Answers

Explanation:

what is the question please?

During the maintenance phase of the software development life cycle, the team may decide to start the SDLC cycle over if: a.an employees leaves the organization b.the system is running smoothly c.assessing the system would be time-consuming d.the system is not working correctly

Answers

if the system is not working as expected during the maintenance stage, the  Software Development Life Cycle   is started afresh.

The SDLC cycle known as the Software Development Life Cycle   explains how software is built or developed in steps from imagination to completion and delivery.  

The steps are

planning designingimplementingtestingdeployingmaintenance

The maintenance phase is the stage of "checks and  balances" so to speak. Here, after the software is set to operation, Software fixes, upgrades, repairs and monitoring can then be carried out,  if for instance, the system is not working correctly, then the SDLC cycle can be repeated to cancel the defect in the course of production.

See more on the SDLC cycle: https://brainly.com/question/14419177

In a FOR loop, if you declare a variable in the initializer, it exists only inside of the FOR loop.

Question 3 options:
True
False

Answers

Answer:

True

Explanation:

If you declare a variable in the initializer, it is local to the loop

In a FOR loop, if you declare a variable in the initializer, it exists only inside of the FOR loop is a true statement.

Can you declare a variable on a for loop?

It is often seen that variable which acts in control of a  for loop is required only for the aim of the loop and it cannot be used in another.

Conclusively, it is therefore likely to state  the variable inside the initialization part of the for loop.

Learn more about loop from

https://brainly.com/question/26568485

Think about a good game story that made you feel a mix of positive and negative emotions. What was the story, what emotions did you feel, and how did it make you feel them? Why did those emotions draw you into the story?

Answers

Answer:

Often we’re just sad that the story ended, even those that end happily. That’s why series books are so popular, because we want more time with the characters and their stories. That’s why we wait for the sequel to the movie, or the next season of a TV series.

If you feel sad, the author, producer, or whatever has done their job. Not sure you can fix this. Just roll with it and wait for the next installment or if there isn’t one, reread the book or rewatch the movie.

Explanation:

How does the technology affect you daily living? Give situations where you use technology and how it helped you.​

Answers

Answer:

Technology affects the way individuals communicate, learn, and think. It helps society and determines how people interact with each other on a daily basis. Technology plays an important role in society today. It has positive and negative effects on the world and it impacts daily lives. We are living in an era where technological advances are common. The internet and cell phones are some examples. However, with technological advances, there’s a downside to it all.

China's cultural diversity, China is composed of 56 ethnic groups.

Answers

Answer:

Indeed that is the correct answer

Explanation:

Manufactured baseboard heating units are part of which industry?
O Electronics
Machinery
O Metal products
O Transportation equipment

Answers

Answer:

!The answer is Machinery!

Explanation:

Hope This Helps!

Manufactured baseboard heating units are part of machinery industry, the correct option is B.

What is machinery industry?

The machine industry is a subsector of the industry that produces a wide range of products such as power tools, various types of machines, domestic technology, factory equipment, and so on.

The manufacturing sector includes the machinery manufacturing subsector.

Machinery Manufacturing industries produce end products that use mechanical force to perform work, such as the use of gears and levers.

Machine products include power saws, drills, hand tools, metal-working machines, polishing machines, presses, boilers, industrial ovens, and industrial scales, among others.

The machinery industry includes manufactured baseboard heating units.

Thus, the correct option is B.

For more details regarding industries, visit:

https://brainly.com/question/7721379

#SPJ5

4. Suppose you replace the hard disk in the previous question with an optical drive like a DVD drive. The drive you use has an average access time of 185ms and can-do sustained reads at 1600 Kbytes per second. How long will it take, including access time, to read the same 750 Kbytes off this optical disk (again, assuming all the data is in sequential sectors on same track)

Answers

The total time it will take to read the same 750 Kbytes off the optical disk is 653.75 ms

Considering the parameters given in the question, the total time taken to read the same drive is the addition of the average access time together with the time to transfer the data.

Mathematically;

Total Time taken = Access time (avg.) + data transfer time

where;

access time(avg.) = 185 ms

the data transfer time can be estimated by using the formula:

= required quantity of data transferred/ speed of data transfer

= 750 kbytes ÷ 1600 Kbytes/s

= 0.46875  s

= 468.75 ms

Total Time taken = 185 ms + 468.75 ms

= 653.75 ms

Learn more about data transfer time here:

https://brainly.com/question/9381456?referrer=searchResults

Which wireless probe is designed to scan and record wireless signals within its range at regular intervals and report the information to a centralized database

Answers

Wireless probe are often referred to as a device that is said to monitor the airwaves for RF traffic. A standard wireless device is designed to scan and record wireless signals within its range at regular intervals and report the information to a centralized database

Wireless device probe consist of a standard wireless device, such as a portable laptop computer which at regular intervals, during the normal course of operation, can scan and record wireless signals.

Desktop probe are also known as a standard desktop PC that often uses a universal serial bus (USB) wireless network interface card adapter to monitor the RF frequency.

Dedicated probe are made to monitor the RF frequency for transmissions.

Learn more from

https://brainly.com/question/14329343

9.1 a. What is a device register? b. What is a device data register? c. What is a device status register?

Answers

(a) A device register is a register (or memory location) that is used for data transfer

to/from an input/output device. It provides a means of communication between the

processor and the input/output device. The processor can poll this register to find out

whether it has received an input or it can send an output from/to the specific device that the device register belongs to. In memory mapped I/O device registers are dedicated memory locations for each I/O device. There may be more than one device register (dedicated memory location) for one device.

(b) A device data register is a device register (a dedicated memory location in

memorymapped I/O) that holds the data that is to be input/output.

(c) A device status register is a device register (a dedicated memory location in

memorymapped I/O) that indicates the status of the input/output. It allows for the

processor to know whether or not input/output of the value in the device data register has occurred. Basically it is an important step to achieve synchronization in an asynchronous I/O system.

A ) Registered Devices means the MAC Address of a network interface on a Compatible Device in the name of the Customer registered (in a manner as ASK4 shall from time to time determine) to receive the Service and/or an Additional Service.

b) A device data register is a device register (a dedicated memory location in memorymapped I/O) that holds the data that is to be input/output. (c) A device status register is a device register (a dedicated memory location in memorymapped I/O) that indicates the status of the input/output.

(c) A device status register is a device register (a dedicated memory location in memorymapped I/O) that indicates the status of the input/output. It allows for the processor to know whether or not input/output of the value in the device data register has occurred.

What is the purpose of using status register?

The status register lets an instruction take action contingent on the outcome of a previous instruction. Typically, flags in the status register are modified as effects of arithmetic and bit manipulation operations. For example, a Z bit may be set if the result of the operation is zero and cleared if it is nonzero.

To learn more about The status register, refer

https://brainly.com/question/24209220

#SPJ2

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

Answers

Answer:

nice

Explanation:

Answer:

*gasp* OBJ?! I'm honored.

Focusing only on the INTERNET tab, click through the MEDIA options and see how the DEMOGRAPHIC REACH changes with each option. Then do the same with the other MEDIA (PRINT, TV, RADIO and POSTER) categories. Which MEDIA types provide the least amount of reach

Answers

Focusing on the Internet guide, media options such as websites, blogs and social networks will have a variable demographic reach, with social networks being the digital media most likely to reach audiences of different profiles and locations on the same platform.

In other media categories, such as print, TV, radio and poster, the smallest demographic reach may be through the poster, as this type of media may have less distribution and connection with the public occurs faster.

Digital and analogue media are methods of mass communication transmission, which generate a large demographic reach and influence individuals.

The media can also be used as a marketing tool through market segmentation using demographic data to establish the best campaign for the target audience using the ideal media.

Therefore, digital media will have a greater demographic reach, due to the possibility of direct and instant interaction that makes the delimitation of a target audience greater for effective marketing campaigns with greater impact and engagement.

Learn more here:

https://brainly.com/question/7212745

what is another name that is used to refer to Flash Memory??​

Answers

Answer:  A very small, portable, solid-state hard drive that can be inserted into a USB port for storage and retrieval of data. Also Trademark, ThumbDrive, JumpDrive . Also called flash memory drive, thumb drive, USB drive.

Answer:

A USB Drive

Explanation:

There pretty cheap, if your looking for one I highly recommend finding one at micro center!

Create a plot of monthly averaged max and min temperature (columns TMAX and TMIN). That is each January in the record will be included in the 'Jan' average, and so on for each month, so that there are twelve values in the final calculation. Label the months with 'Jan', 'Feb', 'Mar' and so on, instead of numbers. Make sure you have a legend that identifies each line, a label on the y-axis that states the quantity and units, and a title that explans the calculation.

Answers

Answer:

robuk plssss

Explanation:

5 plss just 5 1=2

Other Questions
A block weighing 10 newtons is on a ramp inclined at 30 to the horizontal. A 3-newton force of friction acts on theblock as it is pulled up the ramp at a constant velocity. The force applied to pull the box up the ramp acts parallel to theincline. Draw the FBD for this problem and determine the magnitude of the force applied. if the leftmost digits of two multi-digit numbers are 6 and 9, can you tell which number is greater? explain. A 15 year old boy named Stephen has morals influenced by his bigoted father, and questions the importance of masculinity Can you find two motivation quotes relating to this and explain but the quote has to be from the story From the story the glass rose What property is 6(2x-3)=6(2x)-6(3) Help me plz NO LINKS The ENGLISH VERSION is below 10. The average weight of a polar bear is 1.20O pounds, the average weight of a brown bear is 800 pounds, and the average weight of a black bear is 400 pounds. How many times greater is the average weight of a polar bear than that of a black bear? 1,200-400 = 8000 How many times greater is the average weight of a brown bear than that of a black bear? Schreiben Sie Stzen mit "weil", "wenn" oder "dass". 1. Aller Lichter im Haus sind an. Dann rgert sich der Hausmeister.2.In meiner Nachbarschaft trennen wir den Mll. Es ist fr die Umwelt besser.3. Meine Freunde kommen zu einer Party. Die ltere Dame unten beklagt sich ber den Lrm. HIV/AIDS prevention research includes the research __________. Please answer the screenshot. Which action occurs at an electrode of a galvanic cell?(1 point) plz helpanion flowanion transferelectron flowelectron transfer 40 POINTS in what other cases has the court been out of step with public opinion? Precautions to be taken when is experimenting the boiling point of liquids What is the square root for 121? Please explain step by step to get brainliest! who is the creator of horizon Please give me width and height, no links Without the resources and efficiencies provided by the Cocoa Exchange as a ________, African farmers would find it challenging to reach consumers of upscale chocolate products. a.strategic channel alliance b.channel leader c.marketing channel d.supply chain e.vertical channel integration A graphic which has a box in the middle that says Branches of U.S. Government. There are three boxes surrounding the middle box. Box one upper left hand corner contains the following: Legislative Branch, Facts followed by the letter A, Responsibilities followed by the letter B. Box two upper right hand corner contains the following: Letter C followed by the word Branch, Facts followed by the letter D, Responsibilities followed by the letter E and Leads the military. Box three below the middle box contains the following: Letter F followed by the word Branch, Facts followed by the letter G and Members serve for life, Responsibilities followed by the letter H. 2011 FLVS Study the image above. Which of the following would you place in the section labeled "G"? The judicial branch is responsible for creating the laws that citizens follow. The Supreme Court is the highest court in the United States. The House of Representatives and the Senate are the two parts of this branch. The president lives and does the work of this branch in the White House. When Corialanus was at the zoo to see Lucy gray Sejanus wanted him to do what Marking as brainliest! 1. I not have lunch at school yesterday. ________________________________________2. You didnt got up at seven yesterday. ________________________________________3. He didnt liked oranges. __________________________________________________4. She didnt wrote texts yesterday. ___________________________________________5. It didnt slept yesterday. __________________________________________________ 12 out of every 15 people in the United States preter eating at & restaurantover cooking at home. If 400 people selected eating at a restaurant on the survey, how many peopletook the survey?15Bersontotal people