A customer complains that the network connection on the laptop is intermittent. The customer states that they are using a wireless PC card for network connectivity. The customer believes that the laptop may be too far from the wireless access point; however, he does not know where the wireless access point is located.

As a technician, you need to be able to ask questions that will be recorded on a work order. What are 5 closed-ended questions and 5 opened-ended questions that you would ask a customer. ​

Answers

Answer 1

how are you

I will ask what's the problem

what happend before u saw this

what did I do after

was anyone with you

and give me permission to help


Related Questions

The CPU is often called the
of the computer.

Answers

Answer:

Explanation:

Tower?

Answer:

Its often called the brains of a computer.

Explanation:

what type of exel function searches for a specific value in your data using the spreedsheet columns and an unique identifier within those columns

Answers

Answer:

Excel's vLookup formula pulls data from one spreadsheet into another by matching on a unique identifier located in both spreadsheets. For example, we want to add a column for email address but that data exists on a separate spreadsheet.

Explanation:

What will the "background-color" of the "topButton" be when the program is finished running?
A. red
B. orange
C. blue
D. green

Answers

Answer:

C. blue

Explanation:

Which search engine does not track users? Choose the answer.
Bing
Yahoo!
Google
DuckDuckGo

Answers

Answer:

I think the answer is Bing,am familiar with others

Bing does not track users.

All of the transactions that occur in connected markets across the economies of different countries create...
A. The global economy
B. Your country’s economy
C. A goods and services market
D. The stock market

Answers

Answer:

A. The global economy

Explanation:

The development of the global economy can be traced back many hundreds of years when traders from the east and west came together to exchange goods along all connected markets of varying economies.

Kerrri uses a database file many time a day. To increase her productivity, she should___.

A. Put it in her My Music folder
B. Move the file to the system tray
C. Create a toolbar for this file
D. Create a shortcut on the desktop to the file

Answers

Answer:

D

Explanation:

A shortcut will make it easier for her to access the database file

The standard format rules for a professional letter should be followed.
True
False

Answers

The answer is, true.

? Assessment
8/10
Which of the following products likely include Internet of Things (IoT) connected
devices?
A soap dispenser that dispenses soap
when it detects a hand underneath.
A smart toilet flushes automatically
after use.
Lights that turn on when someone
enters the bathroom.
None of the above

Answers

Answer:

none of the above

Explanation:

The way things are arranged on a publication is referred to as the _____.

style
guides
layout
scheme

Answers

Answer: I’m pretty sure it’s layout

are our current copyright policies helping society or hurting society? i need help

Answers

Answer:

helping society

Explanation:

it can help you to protect your works and creativity and brilliant ideas from liars and cheaters and frauds

Which line of code outputs the decimal portion of a float stored in the
variable x?

Answers

Answer:

the answer is a

Explanation:

What is the keyboard shortcut for copying text?

Ctrl+P
Shift+P
Ctrl+C
Ctrl+P

Answers

Answer:

ctrl+c

Explanation:

Answer:

Ctrl+C

Explanation:

Which of the following might cause a mobility impairment that limits computer use? Select 3 options.
a color blindness
Odyslexia
O neurological issue
injury
O genetic issue

Answers

Explanation:

A color blindness , injury .

Answer:

neurological issueinjurygenetic issue

Explanation:

The question is about mobility impairment. Color blindness and dyslexia have to do with vision, so rarely cause mobility issues related to computer use. Rather they would cause issues related to reading the screen.

The remaining three choices are the ones you want.

Evonka is listening to music from an online music provider (such as Pandora or Jango). She builds a list of music preferences, including favorite songs. The music service then suggests additional songs she might enjoy. The music provider is an example of a cloud-computing application that uses a technology for collaborative filtering, which helps define the list of songs available to listeners. Which term describes this technology?

Group of answer choices

Bit-Torrent

Grid Computing

Software as a Service

Crowdsourcing

Answers

Answer:

D. Crowdsourcing

Explanation:

Crowdsourcing can be defined as a collaborative process which typically involves completing a project (task) and solving a problem through a group of people (crowd) that are geographically dispersed over the internet.

Basically, crowdsourcing refers to an outsourcing technique which allows a project or task to be jointly completed by a group of people (crowd) such as volunteers or freelancers who are made to work remotely over the internet.

In this scenario, an online music provider such as Pandora or Jango uses crowdsourcing for collaborative filtering, which helps define the list of songs available to listeners.

Is this statement true or false?

A chart generated in Microsoft Excel can be plugged into a presentation authored using PowerPoint.


true

false

Answers

Answer:

true

Explanation:

a chart generated in Microsoft excel can be plugged into a presentation authored used PowerPoint. you can only it from excel (by right-clicking on the chart and select copy)and the paste it is PowerPoint. or you can save it and import it as an image(2)

Answer:

True

Explanation:

I got it right on a quiz on k-12


a.) WAP to display the sum
of the numbers I to
100​

Answers

Answer:

I am confused on what you are asking

Answer:

The only WAP i know is cardi Bs and Megan Thee Stallion

Explanation:

Describing How to Create a Combination Chart
Select the correct navigational path to create a combination chart
Select the chart
Click the Chart Tools
tab
Select the data series from the Chart Area list.
Click the Chart Tools
tab
Click Change Chant Type.
Choose a chart type for the selected data series and click OK.

Answers

Answer:

format and design

Explanation:

i took test

Can someone help me on how to start this essay?

Answers

Answer:

Start off with an interesting introduction (add questions) make it interesting.

You can star by explaining what and innovator means for you why are you an innovator and what type of inovator

Write a while loop that replaces every occurrence of “cat” in the message with “dog” using the indexOf and substring methods.

Given:
public class ChallengeReplace
{
public static void main(String[] args)
{
String message = "I love cats! I have a cat named Coco. My cat's very smart!";

// Write a loop here that replaces every occurrence of "cat"
// in the message with "dog", using indexOf and substring.






}
}

Answers

Answer:

Complete the program using:

int index = message.indexOf("cat");

while(index != -1){

message = message.replace("cat","dog");

index = message.indexOf("cat");

}

System.out.print(message);

}

}

Explanation:

The line gets the index of string "cat"

int index = message.indexOf("cat");

The following operation is repeated until all occurrence of "cat"s has been replaced with dog

while(index != -1){

message = message.replace("cat","dog");

index = message.indexOf("cat");

}

This prints the new string

System.out.print(message);

}

}

The program illustrates the use of loops.

Loops are used to perform repetitive and iterative operations.

The code segment where comments are used to explain each line, is as follows:

//This gets the index of "cat" in the string message

int index = message.indexOf("cat");

//The following loop is repeated, until there is no occurrence of "cat" in the string

while(index != -1){

//This replaces "cat" with "dog"

message = message.replace("cat","dog");

//This gets another index of "cat" in the string message

index = message.indexOf("cat");

}

//This prints the new string

System.out.print(message);

}

}

At the end of the loop, all occurrence of "cat" are replaced with "dog".

Read more about similar programs at:

https://brainly.com/question/20461017

You created a plan for the program to find the slope, as shown below.
# Find the slope of the user's two points
# Get the points
# Calculate the slope
# Display the result
This plan is in the form of
O flowcode
O pseudochart
O pseudocode
O flowchart

Answers

Answer:

Explanation:You created a plan for the program to find the slope, as shown below. - 18809700. ... Display the result. This plan is in the form of. O flowcode. O pseudochart. O pseudocode. O flowchart. Add answer. Log in to ... shown below. # Find the slope of the user's two points # Get the points # Calculate the slope

Who is responsible for providing the equipment employees need to stay safe on the job (like a hardhat or safety
goggles)?
• the Occupational Safety and Health Administration (OSHA)
O the employer
the labor union
O the employee
MacBook Pro

Answers

Answer:

the employer

Explanation:

Answer:

the employer

Explanation:

Alisa Miller claims that today's college graduates:

Answers

Answer:  know less about the world then there counterparts

Explanation:

Answer:

know less about the world then there counterparts

Explanation:

Can someone help with these questions it's for drivers ed class

Answers

3) A
4)D
5)A
6)D
7)C
8)A
9)A
10)B
These are for the first two

what is a subjective point of view

Answers

Answer:

one based on opinion rather than fact, upon which reasonable people could disagree.

Explanation:

An example of a subjective point of view is a position taken on whether a movie or book is good or bad

Plz Help!

1. How does it make you feel knowing that everything you do online is stored and can be searched for, shared, or even broadcast?

2. What does it mean to have a positive digital footprint?

Answers

Answer:

Read explanation

Explanation:

1. Honestly depending on the company it doesn't make me that scared to know everything I do can be shared, broadcasted, or searched. We are getting to that point in time where our data is more useful than us. Negative activities on the web can have consequences if you aren't careful though.

2. When you have a positive footprint you aren't using the internet for illegal activities, hate, or any other form of something negative you wouldn't do in real life. Companies sometimes factor in your digital footprint when hiring you, if you are toxic and negative that may factor in when being hired. Once something is out there it's there until it's deleted from the server, which most big companies don't do when you "delete" a post.

It is fine for a search record because sometimes it helps you a lot when you need something back, and it is stored.

What is a positive digital footprint?

A good online reputation that allows you to grow your social network and accomplish your job goals is indicated by a favorable digital footprint.

When you leave a positive digital footprint, you don't engage in hate speech, unlawful activity, or any other undesirable activity that you wouldn't do in real life.

When something is published, it remains there until the server deletes it, which most major corporations don't do when you “erase” a post.

Therefore, it is acceptable for a search record because it occasionally comes in very handy when you need to retrieve something that has been stored.

To learn more about a positive digital footprint, refer to the link:

https://brainly.com/question/27834450

#SPJ2

Pls help me!!!!!!!!!!!!!

Answers

the answer is B!! ;)

Answer:

think It B

Explanation:

not 100% sure


You should structure the
first before you search for a relevant picture.

Answers

Answer:

True

Explanation:

What is the best thing about Tuesday’s in general? Why?

Answers

Answer:

tbh I really don't know what you mean

If you needed a job and wanted to find places that were hiring, how could you do that without fast internet access?

Answers

Answer: you cant do it inless you have wifi every where you go i think becuase i try it before thanks

is anyone willing to do my DIT tests for me?

Answers

Answer:

no sorry

Explanation:

Other Questions
Similar to Hippocrates, modern scientists who study etiology believe thatsickness is caused by spiritual events such as demons entering the body.diseases come from natural causes such as bites from infected insects.all diseases can be cured by the right combinations of different treatments.the best treatment for a germ is a calming practice such as yoga or massage. In maniac Magee who said they have a little brother and sister that crayon all over my books? How does the US live up to its ideals of freedom, democracy, and equality during the world war 2 Type your response in the box.Read this newspaper article e, which discusses the Endurance Expedition. What differences do you note between the voice and point ofview of the newspaper article compared to the chapter" Across South Georgia (" from Shackleton's momnir 5. A factory produces 24532 bulbs in a month. What is its annualproduction? What is the practice of making law around laws so one doesn't get close to sin?Shabbat ShalomHedging the LawHedging SinO Monotheistic -30 +5=solve and explain Does listening to music when you study increase your test scores? What is the independent variable?listening to music or notstudying or nottest scoresNo answer text providedI NEED THIS ASAP What adjective form or position is the italicized word or phrase? A warm, humid breeze is blowing According to the audio, what might the weather include today?nubessollloviznasnievelluvias torrencialesrelmpagos What two types of elements make up an Ionic bond ? Question 15 :A quadrilateral has three acute angles. Ifeach measures 80, then the measureof the fourth angle is The Enlightenment emphasized knowledge, reason, and science. true or False HELP IT'S DUE IN 3 MINUTES!!!!!1/4 hx= W I need help somebody The new student seemed to be rather amiable.a.smartc.likeableb.meand.dishonest WILL MARK BRAINLIEST What impacts did American settlers have on Native Americans and what were thecauses? Theories about the relationship between individuals and government followed the 18th century ideas of Group of answer choices A. Rousseau, who believed that only the government could secure the rights of man. B. Locke, who believed that divine royalty was the true authority over government and could secure the rights of man. C. Hobbes, who believed that man lived in a state of chaos and therefore could only enjoy inalienable rights if they were given to men by the government. D. Locke, who believed that men had inalienable, natural rights that always superseded governmentally 4.16 LAB: Varied amount of input data Statistics are often calculated with varying amounts of input data. Write a program that takes any number of non-negative integers as input, and outputs the average and max. A negative integer ends the input and is not included in the statistics. Ex: If the input is: 15 20 0 5 -1 the output is: 10 20 You can assume that at least one non-negative integer is input. 254058.1561406 7+9= I know this already but still it is 16