The steps to executing the above Desktop Publishing assignment is as follows:
- Open Mic. rosoft Word on your computer
- Highlight the referenced text and paste onto the empty work space
- Highlight all the text using CTRL + A
- Navigate to the Justification Button/ Tool as shown in the image and click
- While keeping the text highlighted, click on the "Line and Spacing Tool" as indicated in the image
- Select the "1.5" spacing action button
- Use CTRL + S to save your work.
<h3>What is desktop publishing?</h3>
Desktop publishing is the process of creating documents on a computer using page layout software. It was virtually solely used for print publications at initially, but it now now aids in the development of numerous types of web material.
A desktop publishing software (DTS), sometimes known as a "page layout program" or "publishing program," has full page design features, such as magazine-style columns, rules and borders, page, chapter, and caption numbering, and accurate typographic alignment.
Learn more about desktop publishing:
brainly.com/question/7221277
#SPJ1
Answer:
hope this helps. I am also a learner like you. Please cross check my explanation.
Explanation:
#include
#include
using namespace std;
int main()
{
int a[ ] = {0, 0, 0}; //array declared initializing a0=0, a1=0, a3=0
int* p = &a[1]; //pointer p is initialized it will be holding the address of a1 which means when p will be called it will point to whatever is present at the address a1, right now it hold 0.
int* q = &a[0]; //pointer q is initialized it will be holding the address of a0 which means when q will be called it will point to whatever is present at the address a0, right now it hold 0.
q=p; // now q is also pointing towards what p is pointing both holds the same address that is &a[1]
*q=1
; //&a[0] gets overwritten and now pointer q has integer 1......i am not sure abut this one
p = a; //p is now holding address of complete array a
*p=1; // a gets overwritten and now pointer q has integer 1......i am not sure abut this one
int*& r = p; //not sure
int** s = &q; s is a double pointer means it has more capacity of storage than single pointer and is now holding address of q
r = *s + 1; //not sure
s= &r; //explained above
**s = 1; //explained above
return 0;
}
Answer:
Mainframe Computer is capable of doing all the functions which are listed in question.
Explanation:
A mainframe is a very large general-purpose computer (usually costing millions of dollars) that is capable of performing very many simultaneous functions, supporting very many simultaneous users, and storing huge amounts of data. A microcomputer is the type of computer you use.