answersLogoWhite

0

📱

Microsoft Word

A sub-category devoted to the famous word processor made by Microsoft.

6,295 Questions

When your writing a letter do you enter to start a new paragraph?

You definitely do if you are starting a new paragraph whilst handwriting work, but if you are doing work on the computer, you don't have to- I think you have to leave a line to show a paragraph if you are typing it.

It is the same with speech- you have an indent for each new speaker, but stay on the same line if the same person is talking. (Leave a line if you type it)

Hope that helps!

What are three similarities between Open Office Google Docs and Microsoft Word?

You can use either one to create fairly simple documents, spreadsheets, forms, drawings and presentations.

If you require more robust and complex features, you may need Microsoft Office.

How do install Tamil font latha?

how to install latha Tamil font to windows xp

download microsoft indic or google tamil

What is the difference bewteen microsoft 2003 and 2007?

The difference is mainly in control bars.

MS 2007 has so called ribbon toolbar.

Also 2007 can save documents in .docx format. That is more standardized type of ordinary .doc document.

What is the function of drawing toolbar?

download drawing toolbar on my computer i can draw on any page

One of the 13 original colonies two words?

The answer could be either North Carolina, South Carolina, Rhode Island, New Jersey, or New York.

What is the format for a notarized document?

There are two types of documents commonly referred to as "notarized", but which are completely different from one another. The first is a sworn statement, like an affidavit. The person signing is under oath that it is true under penalty of perjury. The notary countersigns with the satement "Sworn to and subscribed before me this __ day of ___. The other is an acknowledged document, like a deed or mortgage. Here the notary countersigns with a "acknowledgement". The exact form is usually spelled out in state statutes; however essentially it says that the person who signed it identified himself/herself to the notary and signed it in the notary's presence. It is not made under oath and is basically just a means of proving that the document was in fact signed by the person signing it.

What is the Difference between text box and input box?

picture box:

1) it act as container control

2) use of memory to store the picture

3) editing of picture is possible in picture box

4) having auto size property

5) not having stretch property

Image Box:

1) it is not act as container control

2) not use of memory to store the picture

3) editing of picture is not possible in picture box

4) Not having auto size property

5) Having stretch property

What is a doc file?

A document file format is a text or binary file format for storing documents on a storage media, especially for use by computers. There currently exist a multitude of incompatible document file formats.

A rough consensus has been established that XML is to be the basis for future document file formats. Examples of XML-based open standards are DocBook, XHTML, and, more recently, the ISO/IEC standards OpenDocument (ISO 26300:2006) and Office Open XML (ISO 29500:2008).

In 1993, the ITU-T tried to establish a standard for document file formats, known as the Open Document Architecture (ODA) which was supposed to replace all competing document file formats. It is described in ITU-T documents T.411 through T.421, which are equivalent to ISO 8613. It did not succeed.

Page description languages such as PostScript and PDF have become the de facto standard for documents that a typical user should only be able to create and read, not edit. In 2001, PDF became an international ISO/IEC standard (ISO 15930-1:2001, ISO 19005-1:2005, ISO 32000-1:2008).

HTML is the most used and open international standard and it is also used as document file format. It has also become ISO/IEC standard (ISO 15445:2000).

The default binary file format used by Microsoft Word (.doc) has become widespread de facto standard for office documents, but it is a proprietary format and is not always fully supported by other word processors.

What is a macro enabled document?

http://office.microsoft.com/en-us/help/HA100310711033.aspx Macros automate frequently-used tasks; many are created with VBA (Visual Basic for Applications (VBA): A macro-language version of Microsoft Visual Basic that is used to program Microsoft Windows-based applications and is included with several Microsoft programs.) and are written by software developers. However, some macros pose a potential security risk. A person with malicious intent can introduce a destructive macro, in a document or file, which can spread a virus (virus: A computer program or macro that "infects" computer files by inserting copies of itself into those files. When the infected file is loaded into memory, the virus can infect other files. Viruses often have harmful side effects.) on your computer.

What is the difference between cut and a copy command?

a copy command would copy the contents of the selection and when you paste it somewhere else, the original contents would still be there. the contents would be available in both the original location and the new location

a cut command would remove the contents of the selection and when you paste it somewhere else, the original contents would be lost. it would be available in the new location only.

C program to read a text and count occurrence of a particular word?

#include<stdio.h>

main()

{

int i,words,spaces;

char a[30];

printf("enter the string") ;

scanf("%s",a);

for(i=0;a[0]!="\0";i++)

{

if (a[i]=' ')

spaces++;

}

printf("the no. of spaces in the string is %d",spaces);

printf("the number of words in the string is %d",spaces+1);

}

Is Microsoft Word a text editor?

A word-processing program is a program that primarily processes word-based documents, including single page letters and multi-page books. Graphics and illustrations can also be embedded into word-based documents. The user has complete control over the page layout, typography, index, glossary, footnotes and so on.

How do you convert digit to word in c?

#include<iostream>

class expand

{

public:

expand(unsigned long long num):value(num){}

std::ostream& operator()(std::ostream& out)const;

private:

unsigned long long value;

static const char * const units[20];

static const char * const tens[10];

};

const char * const expand::units[20] = {"zero", "one", "two", "three","four","five","six","seven",

"eight","nine", "ten", "eleven","twelve","thirteen","fourteen","fifteen","sixteen","seventeen",

"eighteen","nineteen"};

const char * const expand::tens[10] = {"", "ten", "twenty", "thirty","forty","fifty","sixty","seventy",

"eighty","ninety"};

std::ostream &operator<< (std::ostream &out, expand number)

{

return(number(out));

}

std::ostream &expand::operator()(std::ostream &out) const

{

const unsigned long long quintillion=1000000000000000000;

const unsigned long long quadrillion=1000000000000000;

const unsigned long long trillion=1000000000000;

const unsigned long long billion=1000000000;

const unsigned long long million=1000000;

const unsigned long long thousand=1000;

const unsigned long long hundred=100;

const unsigned long long twenty=20;

const unsigned long long ten=10;

unsigned long long multiple=quintillion;

unsigned long long remain;

if(value>=thousand)

{

while(multiple>value&&(multiple!=quintillionmultiple!=quadrillion

multiple!=trillionmultiple!=billionmultiple!=millionmultiple!=thousand))

multiple/=1000;

out<<expand(value/multiple);

switch(multiple)

{

case(quintillion):out<<"-quintillion"; break;

case(quadrillion):out<<"-quadrillion"; break;

case(trillion):out<<"-trillion"; break;

case(billion):out<<"-billion"; break;

case(million):out<<"-million";break;

case(thousand):out<<"-thousand";break;

}

if(remain=value%multiple)

{

if(remain<hundred)

out<<"-and";

out<<"-"<<expand(remain);

}

}

else if(value>=hundred)

{

out<<expand(value/hundred)<<"-hundred";

if(remain=value%hundred)

out<<"-and-"<<expand(remain);

}

else if(value>=twenty)

{

out<<tens[value/ten];

if(remain=value%ten)

out<<"-"<<expand(remain);

}

else

out<<units[value];

return(out);

}

int main()

{

for(unsigned long long ull=10000000; ull<100000000; ++ull)

std::cout<<expand(ull)<<std::endl;

return(0);

}

How can you align the text in a cell?

Left - aligns everything to the left

Right - aligns everything to the right

Centre - aligns everything to the middle

Justify - stretches the text so it lines up at each margin

Is Microsoft Word an input device?

"An Input device is any piece of computer hardware equipment used to provide data and control signals to an information processing system (such as a computer). Input and output devices make up the hardware interface between a computer and the user or external world " - Wikipedia Egs. Keyboard , mouse etc. Whereas, MSWord is part of the Microsoft office which is an application s/w introduced by Microsoft in 1989. So, obviously it's not a DEVICE!

When you create a table is the width of all cells proportional or equal?

You tell the table to use 100% of the available width. Here is an example: <table width="100%>. The width of each cell is an equal proportion of the table width.

Why is Microsoft Word not used for writing HTML coding?

They are not text editors. They will have a lot of hidden characters in them that can disrupt the file. Along with the actual text, it will include the data that defines the font and the size and so on, and they all become part of the file. A HTML file should be done in a pure text editor and only have text in it. Formatting should not be important in the text itself. Then the browser will be able to read the file without being disrupted by other things in the file. Only if you can save the file as text only, would you use something that is not a text editor.

How you convert your word document into ieee format?

it is easy to change your document into IEEE format.....

select the content which you need to change and then go to page layout tab, in that click columns and then select two

now you can see that your content will be in IEEE format

How do you align the text?

Changing the alignment of an element on a web page can be achieved in multiple ways, but in HTML, all you need is to use the 'align' attribute. For example,:

<p align="right">This is a message</p>

will align this paragraph to the right side of the page. Other attributes of this value include left, middle, top, and bottom.

What are the functions of a database program?

Functions of a DB programIn it's most basic form, a database program must be able to add, delete and edit records in the tables which make up the database and also to search for specific records in the tables by using different search criteria. Also, in most cases, user authentication is required.

Function of Database

Indexing

Views

Security

Intergrity

Cocurrency

Backup and Recovery

Desing

Documentation

Update

Query

What is the text that is flush with the left margin and has a ragged right edge?

No. Left aligned has a straight leftedge, Right aligned has a straight right edge, Justified has both left and right edges straight.