Which of the following views hides the ribbon and shows text on the screen in an easy-to-read format?: *
a. Full Screen Reading
b. Web Layout
c. Print Layout
d. Draft

Answers

Answer 1

Answer: a)Full Screen Reading

Explanation: Full screen reading is the option present for the reading the text format easily on the system screen .This mode works by minimizing the extra data elements like menus of the screen. The full screen reading mode is usually preferred while there is the requirement of only reading without any editing.

Other options are incorrect because web layout is the layout of the web page, print layout is the tab for printing the layout of page options and draft is the written document which can be edited .Thus , the correct option is option(a)

Answer 2

Answer:

1. toolbar

2. reading

3. double-click

Explanation:


Related Questions

What is ‘White-Box’ testing?

Answers

Answer:

 The white box testing is the method in which it basically test the internal structure and working application in the software testing.

In the white box testing the programming skills are require for designing the various test cases.

White box testing is also known as open box testing and it require the specific knowledge of the programming language for examine the particular software testing output.

Answer:

    The White Box test is a software test in which the developer has access to the source code, knowing the internal structure of the product. Being analyzed and allowing the choice of specific parts of a component to be evaluated, allowing a precise search of the behavior of the structure.

    The white box test levels are Unit Tests and Static Test.

Debbie would like to create a file that she can use as a starting point to create other files for her English class. What should she create?: *
a. a content control
b.a style
c. a template
d.a theme

Answers

Answer:

c. a template.

Explanation:

She should first create a Template so that she can use it as a starting point to create other files.

A template is file created with a blueprint with  a format that can be used for a group of documents.For example:- there are different templates present of the resume.

Hence the answer to this question is template.

Which device makes computers that are connected to separate segments appear and behave as if they're on the same segment? (Please choose from one of the four options below)

Bridge

Hub

Router

Switch

Answers

Answer: Switch

Explanation:

 The switch is the device that is basically use for the connection for separate segment that basically appear in the similar segment in the computer network.

Switch is the ethernet that is based on the  LAN peruses approaching TCP/IP information packets containing goal data as they go into at least one info ports. The goal data in the bundles is utilized to figure out which yield ports that will be utilized to sending the information on to its proposed goal.

Therefore, Switch is the correct options.

 

Which is the last line of defense in a physical security sense?

A. People

B. Interior barriers

C. Exterior barriers

D. Perimeter barriers

Answers

Answer: (A) People

Explanation:

 The physical security system is the basically used in the information system. It is used in the technical and the administrator element in the security system. This is the technology oriented system that is basically used to prevent from the hacking attacks in the system.

So, the people is the last statement of the defense in the physical security as the various security system is basically used by various people.

A day has 86,400 seconds (24*60*60). Given a number of seconds in the range of 0 to 1,000,000 seconds, output the time as days, hours, minutes, and seconds for a 24- hour clock. E.g., 70,000 seconds is 0 days, 19 hours, 26 minutes, and 40 seconds. Your function should output: Time is W days, X hours, Y minutes, and Z seconds. Your function should take the number of seconds as an integer parameter Your function MUST be named howLong.

Answers

Answer:

// here is code in c++.

// include headers

#include <bits/stdc++.h>

using namespace std;

// function that calculate days, hours, minutes and seconds

void howLong(int sec)

{

   // find days

   int days=sec/86400;

   // update the seconds

   sec=sec%86400;

   // find hours

   int h=sec/3600;

   // update the seconds

   sec=sec%3600;

   // find minutes

   int min=sec/60;

   // update the seconds

   sec=sec%60;

   // output

   cout<<sec<<"seconds is "<<days<<" days,"<<h<<" hours,"<<min<<" minutes,and "<<sec<<"seconds."<<endl;

}

// driver function

int main()

{   // variable

   int sec;

   cout<<"Enter seconds:";

   // read the seconds

   cin>>sec;

   // call the function

   howLong(sec);

   

return 0;

}

Explanation:

Read the seconds from user.Then call the function howLong() with parameter seconds. In the function, it will first find the number of days by dividing the seconds with 86400 then update the remaining seconds.Next it will find the hours by dividing the remaining seconds with 3600 and update the remaining seconds.After that it will find the minutes by dividing the remaining seconds with 60 and update the remaining second.Then it will print the days, hours, minutes and seconds.

Output:

Enter seconds:70000

40seconds is 0 days,19 hours,26 minutes,and 40seconds.

Here's a Python implementation of the howLong function that takes the number of seconds as an integer parameter and outputs the time in days, hours, minutes, and seconds:

def howLong(seconds):

   days = seconds // 86400

   hours = (seconds % 86400) // 3600

   minutes = (seconds % 3600) // 60

   seconds = seconds % 60

   return "Time is {} days, {} hours, {} minutes, and {} seconds.".format(days, hours, minutes, seconds)

Thus, we format the output string using the obtained values for days, hours, minutes, and seconds and return it.

For more details regarding python, visit:

https://brainly.com/question/30391554

#SPJ6

what are somd negetive aspects and some positive aspects of having robots as a part of workplace?

Answers

Answer and Explanation:

Some of the negative aspects of robots at work place:

Lesser flexibilityHigher maintenance and installation costFuture insecurity and risk if the system malfunctionsA decline in the opportunities for humansUnemployment as a result of automation and robot regulated work place.

Some of the positive aspects of robots at work place:

Higher accuracy Higher speeds More work in less timeProductivity and hence efficiency will increaseCost of some operations is reduced.Ease of employing in dangerous and hazardous fields by using specific robots for each task

in 2015, what percent of Internet users will access the web through mobile devices?

Answers

Answer:

52.7 percent.

Explanation:

In 2015 52.7 percent of the internet users accessed the internet from their mobile phones.

This number has kept on increasing throughout the years and it will keep on increasing because of the lucrative offers provided by the telecom service providers on the internet data packs and the revolution in India brought by Reliance Jio in 2016 because of which the rates of the data packs declined very sharply and also by every telecom service provider because of reliance Jio.

In Java, write a program that asks a user for the total cost of a purchase and calculates the tax and the total purchase price. Make sure to write out the cost of the purchase, the tax, and the total purchase price formatted to two decimal places using the NumberFormat class.

Answers

Answer:

646i01

Explanation:

Beause this number use 10

Prove the following theorems using truth table (a) X + XY = X (b) X + YZ = (X + Y)(X + Z)

Answers

Answer:

I attached you the answer in the picture

Explanation:

First, let's see the relationship between the logic gates and truth tables:

The operation of logic gates in relation to one another may be represented and analyzed using a branch of mathematics called Boolean Algebra which, like the common algebra, deals with manipulation of expressions to solve or simplify equations. Expressions used in Boolean Algebra are called, well, Boolean expressions.

AND Gate:

The AND gate is a logic gate that gives an output of '1' only when all of its inputs are '1'.  Thus, its output is '0' whenever at least one of its inputs is '0'. Mathematically, A∧B = A · B.

OR Gate:

The OR gate is a logic gate that gives an output of '0' only when all of its inputs are '0'. Thus, its output is '1' whenever at least one of its inputs is '1'. Mathematically, A∨B = A + B.

Having this in mind, we just need to use basic Mathematical Logic operations

. The first step in devising security services and mechanisms is to develop a security policy True False

Answers

Answer: True

Explanation: For the creation of the security services and function the first step is having a policy regarding the security measure that is to be taken.Security policy consist of the procedures and function that should be implement in the system as a plan.

It monitors the flow,accessing of external component ,data assessment etc fro the protection.After the policies are made then the implementation take place. The most common deployment of this policy is in information technology(IT)sector .Thus, the given statement is true..

Name 3 responsibilities of TCP.

Answers

Answer:

 The three basic responsibilities of the TCP are:

TCP is the transport layer protocol and it is basically responsible for maintain the end to end network communication. TCP is used for delivering the data and also make sure that the order of the packets are similar with the actual message. The transmission control protocol (TCP) is basically handle the communication between the host for establish an efficient connection so that they can easily exchange the data or information. It also provide the flow control in the network protocol and help in the multiplexing of the data to make the network more reliable.  

. If the sub-expression on the left of the __________ logical operator is true, the right

sub-expression is not checked.

Answers

Answer: "║"(OR) logical operator

Explanation:   "ll" logical is used for defining the OR  logical condition.This condition returns a value of true or false according to given expression.This expression can work on the Boolean variables only.

In this operator if any argument turn out to be true , the value returned is true otherwise the answer returned will be false.It also features that if the left side of this operator is true then the right sub-part of it's not evaluated as it becomes true overall.

Example of expression->  x ║ y ;

Fill in the blank.
A _____ is the smallest unit of measurement used to describe computer processing storage.

Answers

Answer:

A  bit

Explanation:

A bit in computing or any digital communication can be defined as the smallest unit of data of storage. In the smallest scale, nothing comes before it. It is expressed in binary value storage of 0’s or 1’s. By default, eight bits make a byte.

Briefly tell me what a POST request does

Answers

Answer: POST request is the concept used in world wide web(www) for the working of HTTP (hyper text transfer protocol) .It is required for sending the data to the web servers by requesting through request messages.

The functions performed by POST are uploading of file, storing file ,providing information,updating information,filling web form etc,. POST is a type of request method which also contains content as body..

Other Questions
PROCESS MASS and ENERGY BALANCES A solid material with 15% water by weight is to be dried to 7% water. Fresh air is mixed with recycled air and blown over the solid. Fresh air contains 0.01 kg moisture per kg of dry air and recycled air, which is part of the air leaving the drier, contains 0.1 kg moisture per kg of dry air. Mixed air entering the drier contains 0.03 kg moisture per kg of dry air. Determine the following: 1) (a) The amount of water removed per 100 kg of wet material fed to the drier. (b) The amount of dry air in fresh air per 100 kg of wet material. (c) The amount of dry air in recycled air per 100 kg of wet material. The position of a particle moving along the x-axis depends on the time according to the equation x = ct2 - bt3, where x is in meters, t in seconds, and c and b are positive constants. What are the units of (a) constant c and (b) constant b? Find a formula in terms of c, b, and t of the (c) velocity v and (d) acceleration a. (e) At what time t 0 does the particle reach its maximum x value? Why are some bacteria referred to as indicator microorganisms in ascertaining microbial quality control of products? In terms of your heartbeat, digestion, and glandular functioning, your body is pretty much a well-oiled machine that works even when you are asleep. This is possible due to your __________ nervous system. A nationwide study of American homeowners revealed that 65% have one or more lawn mowers. A lawn equipment manufacturer, located in Omaha, feels the estimate is too low for households in Omaha. Find the P-value for a test of the claim that the proportion with lawn mowers in Omaha is higher than 65%. Among 497 randomly selected homes in Omaha, 340 had one or more lawn mowers. A linens department received the following:19 1/2 dozen of twin sheet sets33 2/3 dozen of queen sheet sets 23 1/4 dozen king sheet sets What is the total number of sheet sets received?a. 896. sheet setsb. 917. sheet setsc. 925. sheet setsd. 902. sheet setse. 930. sheet setsf. None of the above. Freight trains can produce only relatively small accelerations and decelerations. What is the final velocity, in meters per second, of a freight train that accelerates at a rate of 0.065 m/s^2 for 9.75 min, starting with an initial velocity of 3.4 m/s? If the train can slow down at a rate of 0.625 m/s^2, how long, in seconds, does it take to come to a stop from this velocity? How far, in meters, does the train travel during the process described in part (a)? How far, in meters, does the train travel during the process described in part (b)? A cheetah running at 17.5 m/s looses its prey and begins to slow down at a constant acceleraton, fianlly stopping 30.5 m later. How long does it take the cheetah to come to rest and what is the cheetah's acceleration while doing so? I know the answer which is t= 3.49 s but want to see the work how it gets 3.49 s. An unattractive environment can evoke feelings of dislike, aggression, and hostility, whereas an attractive environment induces happiness, warmth, and security.a) definite articleb) indefinite articlec) not an article Because there are some positive aspects of bureaucracy, as proposed by Max Weber, Tammy, a restaurant manager, is interested in implementing certain aspects of the bureaucratic approach to management within her restaurant. Like Weber, Tammy feels bureaucracy is a ____.A)Rational, efficient, cost-cutting tool based on principles of behaviorismB)Sales-generating toolC)Rational, efficient method of increasing diversityD)Rational, efficient, ideal organization based on principles of logicE)Rational, cost-cutting, efficient organization based on principles of synergy At a football game, an air gun fires T-shirts into the crowd. The gun is fired at an angle of 32 from the horizontal with an initial speed of 30 m/s. A fan who is sitting 60 m horizontally from the gun, but high in the stands, catches a T-shirt. A) How long does it take for the T-shirt to reach the fan?B) At what height h is the fan from the ground? The left and right page numbers of an open book are two consecutive integers whose sum is 519. Find these page numbers. Spanish question. Please help. Your clothing tends to cling together after going through the dryer. Why? Would you expect more or less clinging if all your clothing were made of the same material (say, cotton) than if you dried different kinds of clothing together? Again, why? (You may want to experiment with your next load of laundry.) Proteins can be visualized in many ways, each of which highlights a specific aspect of the protein. drag the terms on the left to the appropriate blanks on the right to complete the sentences. helpreset In its second year of business, a company has a net income of $120,000. The following table provides year-end account information. Account Year 1 Year 2 Accounts payable $5,000 $4,000 Accumulated depreciation $65,000 $85,000 Prepaid expenses $20,000 $15,000 Fixed assets $250,000 $255,000 The company uses the indirect method to prepare a statement of cash flows for Year 2. How much should the company report as net cash provided by operating activities 1 How do the events depicted in Mansa Musa I: The Richest Man Who Ever Lived interact with one another? A.) They show how Musa faced problems and found solutions to them as ruler of the Mali Empire. B.) They show how Musa was different from other rulers of the Mali Empire. C.)They show the many ways in which Musa was a remarkable and impressive historical figure. D.) They show how Musa's experiences changed him over the course of many years on the throne.2Why does each trick explained in Cool Eye Tricks end with a section entitled What happened?A.) Each trick is explained spatially, and the What happened? section describes each trick based on what the writer observes last.B.) It is only after the steps for completing each trick are laid out that readers are ready to understand why the trick works.C.) This part of the text provides readers with an unexpected twist or surprise, which only works at the end of each passage.D.) Because the details of the tricks are explained in steps by order of importance, the What happened? section reveals the least important details.3. In Cool Eye Tricks, the writer refers to attempting a do-it-yourself optical illusion by following the steps laid out in the text.A.) What is an optical illusion?B.) an obvious fakeC.) a clear hoaxD.) a photographic jokeE.) a visual trick4. Read this excerpt from Mansa Musa I: The Richest Man Who Ever Lived:In about 1312, Musa came to power. At that time, Mali had millions of people spread across a vast territory. Ancient Mali included parts of modern-day Mali, Mauritania, Guinea, Senegal, and Burkina Faso, as well as other countries.A.) What does the word vast mean in this excerpt?B.) wealthyC.) largeD.) strangeE.) unfriendly The glorious revolution was a what is the volume of the sphere shown below with a radius of 3 A liquid mixture composed of 20% CH4, 30% C2H4, 35% C2H2, and 15% C2H20. What is the average molecular weight of the mixture? a) 20 b) 25 c) 6.75 d) 9.25