answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
musickatia [10]
2 years ago
8

Which one of the following features can control left and right indents using markers?        A. Ruler   B. Navigation pane   C.

Status bar   D. Styles pane
Computers and Technology
2 answers:
castortr0y [4]2 years ago
7 0

You may also use markers on the ruler to control left and right indents. The Left Indent is the small box on the left, and the Right Indent is the arrow on the right end of the ruler (Figure 36). Be sure you’ve placed the insertion point in the paragraph you want to format before dragging a marker to change the indent. The marker above the left indent sets hanging indent, which is discussed below. It can be tricky to select one without the other. If you make a mistake, click Undo and try again.

A. Ruler

Marat540 [252]2 years ago
3 0
The correct option is D; STYLES PANE.
Indentation refers to the distance of a paragraph from the left or the right of a margin. It can also refer to the spacing in a document. 
A style refers to a set of formatting instructions. Microsoft word normally applies the chosen formatting commands when we apply a style. To control the left or the right indent in a document using markers, one has to use the styles pane.

You might be interested in
Create a program to deteate a program to determine whether a user-specified altitude [meters] is in the troposphere, lower strat
allsm [11]

Answer:

#include <iostream>

using namespace std;

int main()

{

   float altitude;

   cout<<"Enter alttitude in meter";

cin >>altitude;

if(altitude<0 || altitude > 50000)

{

   cout<<"Invalid value entered";

   return 0;

}

else{

   if(altitude<= 10000)

   {cout <<"In troposphere "<<endl;}

   

   else if(altitude>10000 && altitude<=30000)

   {cout <<"In lower stratosphere"<<endl;}

   

   else if(altitude>30000 && altitude<=50000)

   {cout <<"In upper stratosphere"<<endl;}

   

}

   return 0;

}

Explanation:

Define a float type variable. Ask user to enter altitude in meters. Store value to altitude variable.

Now check if value entered is positive and less than 5000,if its not in the range of 0-50,000 display a termination message and exit else check if it's in less than 10000, in between 10000 and 30000 or in between 30000 and 50000.

10,000 is above sea level is troposphere.

10,000-30,000 is lower stratosphere.

30,000-50,000 is upper stratosphere.

8 0
2 years ago
In a transaction-processing system (tps), if the tps database can be queried and updated while the transaction is taking place,
Alona [7]
This is called Real time processing. A Transaction Processing System (TPS) is a kind of data framework that gathers, stores, adjusts and recovers the information exchanges of an undertaking. Exchange handling frameworks additionally endeavor to give unsurprising reaction times to demands, despite the fact that this is not as basic with respect to continuous frameworks.
6 0
2 years ago
Sophie often makes grammatical errors in her document. Which feature of the Spelling and Grammar tool can she use to understand
Ivanshal [37]

Since Sophie often makes a lot of grammatical and spelling errors in her document, it might be best for her to use a feature available in Microsoft Word that would help her better in understanding what her mistakes are, which is something that (D) Explain does.

Explain would tell Sophie which part of her sentence is wrong, or what word did she mistype, and what better way to phrase a sentence to avoid fragmented ones.

8 0
2 years ago
Read 2 more answers
Write a complete C program that inputs a line of text and a search string from the keyboard. Using function strstr, locate the f
ddd [48]

Answer:

Here is the C program:

#include <stdio.h>  // to use input output functions

#include <string.h>   // to manipulate strings

int main() //start of main() function body

{  char input_text[100];  // array to store the input text line

char search_string[50]; // char type array to store string to be searched

char *searchPtr;  

// char type pointer variable to search for search_string in input_text

printf("Input a text line \n");  // prompts user to enter a line

fgets(input_text,100,stdin);   // to get line of input text from user

printf("Input a string to search: ");  

//prompts user to enter string to be searched

scanf("%s", search_string);   //reads the value of search_string

//search for the search_string in input_text

searchPtr = strstr(input_text, search_string);    

if (searchPtr)  //if string to be searched is found

 {  printf("\nThe text line beginning with the first occurrence of %s: ", search_string);  

//prints the first occurrence of that search_string in input_text

 printf("%s\n", searchPtr);  

//search for the search_string in the rest of the input_text

 searchPtr = strstr(searchPtr + 1, search_string);        

 if (searchPtr)  // if search_string is found in input_text again  {

printf("\nThe text line beginning with the second occurrence of %s:\n", search_string);  

//display the second occurrence of the search_string in input_text

  printf("%s\n", searchPtr);   }

 else  //if search_string only appeared once in input_text

  printf("The string to be searched just appeared once.\n");  }

else  //if string to be searched is not found anywhere in input_text

 printf("\"%s\" cannot be found.\n", search_string);  }

Explanation:

The program first prompts the user to enter a line of text and a string to be searched in the line. When the user enters text and search string then search string is located in input text using strstr() function. If the first occurrence of search string is found then the remainder of the line of text beginning with the search string is displayed. Then strstr is used again to locate the next occurrence of the search string in the input_text.

The output of program is attached.

8 0
2 years ago
Given three floating-point numbers x, y, and z, output x to the power of y, x to the power of (y to the power of z), the absolut
Angelina_Jolie [31]

Answer:

float x

float y

float z

x = Get next input

y = Get next input

z = Get next input

Put RaiseToPower(x, y) to output

Put "\n" to output

Put RaiseToPower(x, RaiseToPower(y, z)) to output

Put "\n" to output

Put AbsoluteValue(x) to output

Put "\n" to output

Put SquareRoot(RaiseToPower(x*y, z)) to output

Explanation:

The first three lines of code is simply declaring the data type of the x, y and z variables which was declared as float type meaning number with decimal points.

The next three lines after the first three lines is getting the input from the user

In coral, we use Put <expression> to output to display <expression> to the console

For the first Put statement, I am telling the interpreter to display the value of x raised to the power of y to the console by using Coral's RaiseToPower built-in math function

The Put "\n" to output statement scattered in the snippet is just for formatting reasons so that each result will be displayed in a newline

The next computation RaiseToPower(x, RaiseToPower(y, z)) is a bit nested but  it is actually doing this: x^{y^{z} }

The next computation is AbsoluteValue(x) is doing this |x|

And the final computation SquareRoot(RaiseToPower(x*y, z)) is doing this:

\sqrt{(xy)^{z} }

3 0
2 years ago
Other questions:
  • Problem statement: Using loop, write a program that will ask the user to enter a character for left or right. Then, the user wil
    13·1 answer
  • Shirley was unsure about what career to go into. Her high school counselor suggested a personal assessment to point out Shirley’
    12·2 answers
  • To what extent are the following computer systems instances of artificial intelligence:
    14·1 answer
  • ____________ is defined as the set of activities that revolve around a new software product, from its inception to when the prod
    7·1 answer
  • Program 4 - Pick color Class Create a class that randomly pick a color from an array of colors: string colors[7]; Have the color
    12·2 answers
  • Sensors and devices connected to a model are examples of which of the following?
    6·2 answers
  • Megan has written the following rough draft for her assignment. Choose the correct way to complete each sentence. Sarah is creat
    13·1 answer
  • 1. (1 point) Which flag is set when the result of an unsigned arithmetic operation is too large to fit into the destination? 2.
    13·1 answer
  • Write code that determines the number of full days represented by the number of hours stored in the variable hours and stores th
    15·1 answer
  • Write a static generic method PairUtil.minmax that computes the minimum and maximum elements of an array of type T and returns a
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!