Answer:
Objectives of Business – Profitability, Growth, Stability, Efficiency and Survival. Business means busy in some activities. Business means conducting activities such as – sale, purchase and manufacturing etc for profit and growth.
Answer:
Paper size refers to the size of the paper you will be printing your document on, while page margins refer to the outside area of a page that can be made bigger or smaller to fit content.
Launch the Page Setup dialog box from the Page Setup group; in the Margins section, enter the page margin values and click OK.
All the statements are correct.
Right-click and add to dictionary
Type the words onto the first page of the document, and click on the Header button to repeat it on all of the other pages
pictures shapes and clipart
none of the above
Explanation:
C, <span>Word processing can be used to create databases of information.</span>
Answer:
program arraysminfinder;
procedure minreplace();
var
no: array [1..10] of integer; (*no is an array of integers, 10 in all *)
a: integer= 0;
i: integer= 0;
c: integer= 0;
k: integer=0;
N: integer=0;
begin
(* We need to first initialize the array no with 0 values *)
for a := 1 to 10 do
no[a]:=0;
c:=no[1];
for a := 1 to 10 do
begin
if (no[i]<c) then
begin
c:=no[i];
k:=i;
end
else
begin
i:=i+1;
end
end;
writeln('Enter the new number:');
read(N);
no[k]:=N;
for a := 1 to 10 do
begin
writeln('The array elements are:',no[a]);
end;
end;
begin
end.
Explanation:
The program is as above. I have used a function, a for loop, an array of integers, and the if then else ladder for getting the desired output as mentioned in the program. If in case you want procedure for input and output, create a procedure like:
procedure replacenum():integer;
Begin
writeln("Enter the new number:" N);
no[k]:=N;
for a := 1 to 10 do
writeln("The array elements are:"no[a]);
end.
Similarly you can make a procedure for input.
Answer:
gcd method
Explanation:
Given
The code snippet
Required
Which method completes the code
To return the gcd of numbers, simply use the gcd method.
So: the complete code is;
<em>import math</em>
<em>math.gcd(14,35)</em>