Julie Smith wants to find information on the Internet, she 89. When uses the Google search engine. But when she wants to find a document or data set created by her company for internal purposes only, she logs into the company

Answers

Answer 1
She could search up her company and go on the website.

Related Questions

When seeking information on the internet the most helpful place to look is?

Answers

Gooooooooooooooooooooogle
opinions and some facts,quota,information about subjects,answers.com and also well this place,brainly

how do you add a simple header that will appear in a single column on the left of a document

Answers

When adding a header, you need to double tap the top of the document.

The correct answer would be C. Click the Insert tab, click Header, then choose Blank.

How do myths impact today's society?

PLEASE HELP ME WITH THE RIGHT ANSWER DUE TODAY!

Answers

a Myths expresses and confirms society's religious values and norms, it provides a pattern of behavior to be imitated, testified to the efficacy of ritual




hope it's the right answer and I liked your BTS PROFILE






let me know u needed help



see ya

Which term describes the complexity of a document

Answers

Answer:

Work breakdown structure (WbS)

Explanation:

A work-breakdown structure in project management and systems engineering, is a deliverable-oriented breakdown of a project into smaller components. A work breakdown structure is a key project deliverable that organizes the team's work into manageable sections, and also defines its complexity.

Please let me know if this helped

Final answer:

The complexity of a document is often described by its 'readability'. It refers to how easily a written text can be understood, considering factors such as sentence length, word choice, and use of technical or complex ideas.

Explanation:

The term which describes the complexity of a document in English is often considered to be 'readability.' Readability refers to the ease with which a reader can understand a written text. The complexity of a document can be gauged by factors such as sentence length, word choice, and the use of technical jargon or complex ideas. For example, a document with long, intricate sentences and sophistical vocabulary will have a higher complexity or lower readability compared to a document written in simple and brief language.

Learn more about Document Complexity here:

https://brainly.com/question/33644235

#SPJ2

Which is an example of a zero-point perspective?

A. Railway track
B. Landscape
C. Building
D. Road

Answers

Answer:

the correct answer is. .... B landscape

click the pic

a zero point perspective does NOT have any parallel lines!!

Explanation:

train tracks and the building both have parallel lines.

Landscape is an example of a zero-point perspective.

What is perspective?Linear or point perspective is one of two types of graphical perspective in graphic arts.Linear perspective is an estimate representation, generally on a smooth surface, of an image as it is seen by the eye.zero-point perspective is just a fancy way of describing a natural scene such as a mountain range or a landscape of hills and valleys–a non-linear scene in which there are no parallel lines appearing to meet off in the distance somewhere.

To learn more about perspective refer:

https://brainly.com/question/22994952

#SPJ2

Please answer correctly, and give a small explanation, super confused! Will give Brainliest!!!

The composition of a photograph may be different for different types of photography.

True
or
False

Answers

False. There are 7 elements of photography

Line.

Shape.

Form.

Texture.

Pattern.

Color.

Space.


Which best describes how computer simulations are used in science?

-A)Computer simulations help scientists see very large objects.
-B)Computer simulations help scientists see very small objects.
-C)Computer simulations help scientists predict future events.
-D)Computer simulations help scientists map unexplored places.

Answers

Answer:

c  Computer simulations help scientists predict future events.

Explanation:

Answer:

The correct answer is C

Explanation:

A user reports that her or his computer stops functioning after it displays the name of the BIOS manufacturer. This indicates a possible problem with what?

The POST
The logon
The hotkey
The boot disk

Answers

Possibly the boot disk since those symptoms seems like the computar has a missing OS

Answer:

boot disk

Explanation:

The IT department has rejected the password you submitted for approval to join the network. Your suggestion was "bobbie." Why did IT reject your choice?

1 Someone else is already using "bobbie."
2 The word does not meet your company's policy for choice of passwords.
3 It will be confusing because it could be written down as "Bobby" by mistake.
4 Because everyone knows you have a dog called Bobbie, so the password is too predictable.

Answers

Final answer:

IT reject my choice because  2. The word does not meet your company's policy for the choice of passwords.

Explanation:

The IT department rejected the suggested password "bobbie" because it did not adhere to the company's password policy, as outlined in Option 2. Password policies commonly require adherence to criteria such as length, complexity, and the avoidance of easily guessable information.

In this instance, the rejection was not due to someone else using the password, potential confusion, or predictability based on personal information.

Rather, it was a result of the password failing to meet the established standards set by the company for secure and robust password choices.

What file extension is used to name a compressed folder

Answers

The file extension are:

1).zip

2).rar

3).tar

When editing the master slides, if you edit the layout on the title page, those changes appear on:

A. all title slides in the presentation.
B. all slides in the current and future presentations.
C. all slides in the presentation.
D. only the first title slide in the presentation.

Answers

Answer:

The answer is "Option D"

Explanation:

In the presentation, the master slides are referred to as drawings, which include and clearly defined the diagrams, and quickly overridden by altering the size of specific slides. In this slide, it shows only on the first title frame, and other choices were wrong, which can be described as follows:

Option A and Option B, It works on a specific tool or item, that's why it is wrong. In option D, It doesn't work on all slides, that's why it is incorrect.

Final answer:

Editing the layout on the title page within Slide Master view will result in changes appearing on all title slides in the presentation. This highlights the distinction between editing the master slide and specific layouts.

Explanation:

When editing the master slides, if you edit the layout on the title page, those changes appear on (A) all title slides in the presentation. This is because the edits made to a layout within the Slide Master view affect all slides that utilize that specific layout. It is important to understand that while changes to the slide master itself apply universally across the presentation, adjustments to a specific layout only impact slides associated with that layout.

Using the Slide Master feature is a powerful way to ensure consistency across a presentation, especially for elements like fonts, colors, and logos. However, it's crucial to differentiate between changes made to the master slide (which apply to all slides) and changes to individual layouts (which apply only to slides using that layout).

1. Describe a linear search (explain how it works).
2. Explain when you might use a linear search. 3. Describe a binary search (explain how it works).
4. Explain when you might use a binary search.
5. Explain what a binary search MUST HAVE:
6. Explain which search is more efficient, and why.

Answers

1. A linear search searches on a straight path, hence the term “linear”. So a linear search would search from a one index to another in a straight path. For example, a linear search of an array, if given given the first and last index of the array, would search it one index after the other. First it would check index 0, then index 1, then index 2, and so forth.

2. A linear search can be useful if you are trying to find more than one instance of an value in a data structure. Since you want to search the whole array for each instance of the object or value.

3. A binary search only works with sorted data structures. It takes a data structure, finds its mid point, and checks I see if the value it is looking for is greater, less than, or equal to the midpoint value. If it is equal to the midpoint value, it’s finished and the search function is over.
If it’s greater than the midpoint, it disregards the lower half of the data structure and focuses on the upper half. If it’s less than the mid point then it disregards the upper half and focuses on the lower half.
It then repeats what it did at the beginning of the search function to again narrow down the amount of searching that needs to be done. In other words, if it disregarded the lower half of the data structure in the first part of the search, it finds the midpoint of the upper half of the data structure, checks to see if the value it’s looking for is greater than, less than, or equal to the midpoint. If it’s equal to it the searching is done, if it’s greater it disregards the lower half of the upper data structure, and repeats the process.
It will continue to do this until either the value is found or the value is not found.

4. You would use binary search if you are searching for one specific value in a sorted data structure.

5. A binary search must have a sorted data structure for it work.

6. Binary search is more efficient because the cost to run a binary search is substantially less than running a linear search.







create 6 questions for the unit Socratic seminar

Answers

What’s the topic of the Socratic seminar

1. software that helps run the computer hardware
2 the main board in the body of the computer
3. instructions for the computer written in a programming language system software
4the central processing unit
5. a small mobile computer

motherboard
CPU
system software
program
laptop


Answers

1. System software 2. Mother board 3. Program 4.CPU 5. Laptop




Answer:

1. System software 2. Mother board 3. Program 4.CPU 5. Laptop

Explanation:

Which of the following has the the greatest storage capacity?
A) 30 CDs
B) 2 DVD DLs.
C) DVD s
D) 1BD

Answers

The blue-ray is called BD or a blue-ray disk is a large optics storage disk.

It has a higher capacity than the DVD format. It is capable of storing high-definition videos for several hours. A blue ray disk may consist of 25GB per layer. A dual-layer disk maybe 50 GB. Hence the correct option is D.

Learn more about the has the greatest storage capacity.

brainly.com/question/11291927.

Head-mounted displays often use organic light emitting diode,or technology.

Answers

Organic light emitting diode,

Technology is a category not a specific thing

Which of the following has the the greatest storage capacity?
A) 30 CDs
B) 2 DVD DLs.
C) DVD s
D) 1BD

Answers

i beileve the answer is a
The answer to your question is A

Which term refers to actions that you would typically perform on a computer to receive it if it functions in an unexpected manner?

The corrective actions that you need to perform on a computer in case of it functions in an unexpected manner is called________.

Answers

I believe that the answer is troubleshooting. If a computer is acting odd, you'd need to troubleshoot and find the problem before you can repair it.

When you first open a word processor, you’ll find a ? document. A. filled B. blank C. edited

Answers

B, blank document is the answer

B. a blank document, unless if you opened a document you've been working on, it'll be a filled document.

which recorder is least recommended in automation anywhere?

Answers

Answer:

Screen recorder is the least recommended one

Explanation:

There are three types of recorders. They are Smart Recorder, Web Recorder and Screen or sometimes called Standard Recorder. Smart Recorder is used for desktop applications while Web recorder is used for Web-based applications. The least recommended one is Screen Recorder which is used for building simple tasks that involves few mouse clicks and keystrokes. It works by capturing screen co-ordinates and therefore, no calibration is taken into account. It is generally used when you plan to run the task on the same machine on which, it was recorded.

Instructions:Select the correct answer from each drop-down menu. What type of font color should Kim select if she chooses a dark-colored design theme for her presentation? Kim has chosen a dark-colored design theme for her presentation. She should therefore choose ________ font color that will ________ the background color. 1A.) a bright 1B.) a dark 1C.) the same 2A.) resemble 2B.) contrast with 2C.) blend with

Answers

1b, blend with. hope thss helped


1) A bright

2) blend with

Hope this helps!

what is happening when humans control the breeeding of living things to favor certain desired features

Answers

Selective Breeding is happening.

michelle has less than 50 baseball cards. if she puts them in packs of 7,she has 5 baseball cards left.if she puts them in packs of 9 ,she has 6 baseball cards left .haw many baseball cards does michelle have ?

Answers

she has 33 but why is this in computers and technology lol

You can add a new slide to a presentation by

Answers

A new slide can be added to presentations by clicking on the New slide dialog box present in the Home tab. Also, Ctrl+M can be used.

A presentation consists of many slides. A slide may be added or created in a PowerPoint presentation in several ways. After adding slides, you may rearrange or delete slides as well as change the order or sequence.

To add a new slide, Click the slide you want your new slide to follow in the slide thumbnail window on the left. Select New Slide under the Home tab. Choose your layout decision for your new slide in the New Slide dialogue box.

To know more about presentations,

https://brainly.com/question/27817611

Directions: Using the decoder key and the code chart on the second page, find out the name that has been coded. After coding the name, move down two rows and code your first name; (1 blank row between coding and no nick names.) Code yourlauber. Use the fill option to color needed blocks.

Binary Name
Code Letter











































Answers

What is the decodder key???

how sensors and microprocessor are used to control the central heating systems
1) one which uses an oil burner as the source of heat
2) one which uses electric radiators that are switched on and off by the microprocessor.d

Answers

The answer is the second choice

The sensors and microprocessor are used to control the central heating systems by one, which uses electric radiators that are switched on and off by the microprocessor. Hence, option 2 is correct.

What is a Microprocessor?

A microprocessor is a part of a computer that executes the commands and duties necessary for computer processing. The microprocessor is the main component of a computer system and is in charge of managing and carrying out any logical instructions that are sent to it.

A microprocessor, which is significantly more sophisticated in terms of architectural design and is constructed over a silicon microchip, may also be referred to as a processor or central processing unit.

The most crucial component of a computer system, the microprocessor, is in charge of processing each individual set of instructions and procedures. A microprocessor is made to carry out logical and computational activities using common operations like addition and subtraction, communication between processes and devices, input/output management, etc. The number of transistors in an integrated circuit, which makes up a microprocessor, relies on the relative computing power of the device.

Hence, option 2 is correct.

To get more information about microprocessor :

https://brainly.com/question/1305972

#SPJ2

What are examples of common computer software problems?

Answers

Movie Video Editor, Windows 10, Paint, MS Paint, Word Document, Spreadsheet, Calculator, Email, Hotmail, Google Chrome, Firefox, Internet Explorer, & more. Just some from the top of my head.

Answer:

Programs suddenly quit or stop working.

Documents close without warning.

A video file stops playing unexpectedly.

A computer crashes and stops working.

Explanation:

THESE are the correct answers

Each time a Turing machine operation is done, three actions take place. Is this true or false?

Answers

The Turing machine is an abstract machine that has an unlimited supply of paper tape that it can write on and read back. It was thought of by the mathematician Alan Turing in 1936

The statement that each time a Turing machine operation is done, three actions take place is true.  Each operation the machine does these three things:

1. it prints something on the tape

2. it moves the tape right or left by one cell

3. it changes to a new state

isit the quick access toolbar to find help when looking for certain commands.
True
False

Answers

The answer to your question is True

The Quick Access Toolbar is not the tool for finding help with commands; it contains buttons for basic operations. For help, you should use the Help icon or press F1, or utilize the Tell Me tool in Word for task-specific assistance.

The statement suggests visiting the Quick Access Toolbar to find help when looking for certain commands. However, this is false. The Quick Access Toolbar is designed to provide one-click buttons for common actions such as saving, undoing, redoing, and print previewing. While it can be customized to include frequently used commands, it is not the place to look for help with commands. Instead, to seek help, you should select the Help icon located in the right corner of the application window or press F1 on your keyboard. This action will open the Help dialog box, where you can enter search terms such as "Accessibility" to find specific commands or assistance.

If you require assistance with specific tasks in Microsoft Word, you may use the Tell Me tool, which is a feature that suggests commands as you type a keyword or phrase related to your task. This tool is context-sensitive and integrates with your current document.

The Ribbon interface is another element where you can find commands, grouped under multiple tabs for ease of access. Some commands have extensive features that open in additional windows when the dialog box launcher icon is clicked. Also, contextual tabs may appear to provide relevant commands when certain elements like pictures or tables are selected in a document.

which of the following is an example of an output device

Answers

To answer this question we are going to need some more details.  Sech as


1.

2.

3.


How ever any thing that prints to paper or makes noise after pushing a button on the computer could be an output device.

An example of an output device is the speaker. Thus the correct option is C.

What is an output device?

Output devices refer to devices that convert the input received with the help of input devices into human convertible form to utilize by an individual. These can be any text, image or graphs, and so on.

The input devices are a mouse, keyboard, joystick, scanner, camera, Lightpen and so on wheras output devices are speaker, monitor, printer, projector and so on.

The most important output devices for a computer are its monitors. The computer's monitor is a flexible component for the video representation of all kinds of data.

In the given options all the devices are input devices only the speaker was the output device used to produce sound from it. These speakers come in a variety of sizes and patterns to help in producing high-pitched sounds.

Therefore, option C is appropriate.

Learn more about the output device, here:

https://brainly.com/question/13014449

#SPJ6

The complete question is Probably

Which of the following is an example of an output device.

Mouse

scanner

speaker

digital camera

Other Questions
What is mKNL? Enter your answer in the box. A horizontal line segment M K intersects with line segment J L at their midpoint N. The upward-left and downward-right angles formed by these lines are obtuse. The upward-left obtuse angle is labeled left parenthesis 5 x plus 2 right parenthesis degrees. The downward-right acute angle is labeled left square bracket 3 left parenthesis x plus 14 right parenthesis right square bracket degrees. Last year a man earned 19,200. This year his salary increased to 20,736. What was the percent of his increase ?Please show all steps determine whether the nucleus or the electron cloud contributes the most to the volume of an atom. Explain. What is the LCM of xy2 and xz?xyzxy2zx2y2zx which items were commonly imported by china during the ming dynasty? pepperteaspicesgoldsilversilk A student has some $1 and $5 bills in his wallet. He has a total of 19 bills that are worth $55. How many of each type of bill does he have? what causes water to go into a stream? Why is prose the most efficient medium for expression? A. It is easier than understanding poetry. B. It can be simplified according to need. C. It is the natural way of speaking. D. It does not confuse readers with rhymes. Reset moses' father was in the tribe of Judah. true or false Let g(x) = 2x2 - 11x. Find g(-1). A) -13 Eliminate B) -9 C) 0 D) 13 If you want 20 points, please help me with this . I really need help. Wha kinds of things have a price with a leftmost digit in the hundreds place ? The thousands place ? The ten thousands place Willie changes the quadratic function f(x)=x2?6x+14 to vertex form f(x)=a(x?h)2+k. If Willie does this correctly, what is the value of k? A tropical rainforest may be unable to return to its original climax community after which of the following disturbances?A. burning of a forest fire B. clearing and farming C. volcanic eruption D. flooding after a hurricane What were two main reasons christianity spread during the roman time How much water should be added to 1 gallon of pure antifreeze to obtain a solution that is 40% antifreeze Mike and Joe are brothers who often argue about whom is the strongest. While moving a refrigerator, Mike and Joe decide to push against opposite sides of it to see which direction it will move. They begin pushing as hard as they can. Soon, the refrigerator begins to move slowly to the right. Which of the follow statements is true? A- mike and joe preformed the same amount of workB- only mike preformed workC- only joe preformed workD- neither mike nor joe preformed any work Algebra 1, word problem.If a medium pizza costs $5 and a large pizza is $8, write an equation in standard form that models the possible combinations if you have $45. (Let m= medium and l= large.)please explain in detail according to the partnerships for 21st century learning critical thinking ability includes all of the following skills except ____. Which aspects of human health does the endocrine system help regulate? Select four options.sexual development growth metabolism tissue function social development