Adding a table to a document can be done in Microsoft Word using the insert ribbon, the insert ribbon are mostly used for adding options to a document.
- The insert ribbon is a multi functional ribbon which has up to about 10 different useful groups for adding elements to a document.
- Some of the groups on the insert ribbon include ; Pages, Text, Header & Footer, Tables, illustrations, Links, Media and so on.
- The Table group in the insert ribbon allows different table adding options such as inserting an already existing table, drawing a new table or importing an excel table.
Therefore, adding a table to a document is performed from the insert ribbon in Microsoft Word.
Learn more:brainly.com/question/21842366?referrer=searchResults
Answer: Information MIS infrastructure
Explanation: Information MIS infrastructure is the company model that is used for supporting the task functioning . The main aim of this tool is to be used in backing -up , plan of diasater recovery and plan of business continuity.
These objectives are achieved by availability, portability , scalability , accessibility, maintainability etc characteristic. Francis is also involved in information MIS infrastructure by maintaining the payroll, records,history of employment etc, securing the information,etc.
Pointers can be used to manipulate the size and shape of the object.
Answer: Option 2.
<u>Explanation:</u>
Digital drawing is the point at which a drawing is made utilizing designs programming. Rather than utilizing a pencil and paper, advanced craftsmen draw with a tablet or a PC, alongside a gadget, for example, a mouse or a stylus.
Drawing digitally makes it simpler to pick hues and change them and their levels with a basic snap of your mouse. To put it plainly, advanced workmanship lets you change your canvases without demolishing them and also change the shape and size of the objects easily.
In your "count spaces method" before the for loop, you want to declare an int variable (let's call it spc)
then, each time you find that charat, spc++.
also, the string must be declared in the main method, not the spaces count method.
The actual code:
public class CountSpaces{
public static void main(String[] args){
String instring = "(your quote here)";
int spaces = calculateSpaces(instring);
System.out.println("The number of spaces is " + spaces);
}
public static int calculateSpaces(String in){
int spc = 0;
for(int i= 0; i<in.length; i++){
if(in.charAt(i)== ' '){
spc++;
}
}
return spc;
}
}
that should be it. If you have any questions, feel free to reach out.