The answer is (C),
The width and height of the table
When formatting a table, for instance, you may want the
columns to have similar width without interrupting the width of the table. If you
are using Microsoft word 2000, 2002 or 2003, you should select the table itself;
choose Table option, Autofit, and then select Distribute columns evenly. If
using word 2007 and Later, you should select the table and this will display
the Layout tab. Click the Distribute Columns option tool.
Answer:
Following is the program in C++ language
#include <iostream> // header file
#include <iomanip> // header file
using namespace std; // namespace std;
void problem2() // function definition
{
int num ; // variable declaration
cout << "Enter the Number: ";
cin >> num; // Read the input by user
cout << "Resulatant is:";
for(int k = 0; k <num; k++) // iterarting the loop
{
std::cout << std::setw(num); // set width
std::cout <<"*"; // print *
}
}
int main() // main function
{
problem2();// function calling
return 0;
}
Output:
Enter the Number: 3
Resulatant is: * * *
Explanation:
Following is the description of program
- Create a function problem2().
- Declared a variable "num" of "int" type .
- Read the input in "num" by the user .
- Iterating the for loop and set the width by using setw() and print the asterisk.
- In the main function calling the problem2().
Answer:
Whenever you use your mobile phone to make a call, it emits electromagnetic radio waves also known as radio frequency or RF energy. Once the radio waves are emitted, the antenna from the nearest cell phone tower will receive them. The antennas of a cell tower can both transmit and receive signals from mobile phones.
I did some research and I found this but I don’t think it helped When the drawing status bar is turned on it displays at the bottom of the drawing area. When the drawing status bar is turned off, the tools found on the drawing status bar are moved to the application status bar.
When the drawing status bar is turned on, you can use the Infobar menu to choose which tools display in status bar.