Answer:
<h3>
<u>what is word processing program</u></h3>
<em>A word processor is a device or computer program that provides for input, editing, formatting, and output of text, often with some additional features. Early word processors were stand-alone devices dedicated to the function, but current word processors are word processor programs running on general purpose computers</em>
<h3>
<u>Give 3 types of word processing program</u></h3>
<u>Word processors are of 3 types which are electronic, mechanical, and software.</u>
...
<u>Examples or Applications of a Word Processing</u> <u>Software :</u>
- Wordpad.
- Microsoft Word.
- Lotus word pro.
- Notepad.
- WordPerfect (Windows only),
- AppleWorks (Mac only),
- Work pages.
- OpenOffice Writer.
Answer: dynamically modified model
Explanation:
Do with what? If you have a question please contact me ;)
Consider the following code segment, where num is an integer variable.int[][] arr = {{11, 13, 14 ,15},{12, 18, 17, 26},{13, 21,
Setler79 [48]
Answer:
c. 16 17
Explanation:
Given

The above code segment
Required
The output
In the code segment, we have the following iterations:
for (int j = 0; j < arr.length; j++) and for (int k = 0; k < arr[0].length; k++)
The above iterates through all the elements of the array.
The if condition is true, only on two occasions
(i) When i = 0; j = 2
(ii) When i = 3; j = 0
i.e.
arr[0][2] = 14
arr[3[0] = 14
So, the result of the print statement is: j + k + arr[j][k]
(i) When i = 0; j = 2
j + k + arr[j][k] = 0 + 2 + 14 = 16
(ii) When i = 3; j = 0
j + k + arr[j][k] = 3 + 0 + 14 = 17
<em>Hence, (c) 16 17 is true</em>