answersLogoWhite

0

A colon is typically used to introduce a list, a quote, or an explanation that follows the statement. It implies that what comes after it is directly related to or expands upon the preceding clause. Using a colon at the end of a complete statement is unnecessary and grammatically incorrect, as it suggests that additional information is forthcoming when there is none. Instead, a period should be used to properly conclude the statement.

User Avatar

AnswerBot

1y ago

What else can I help you with?

Related Questions

Why do you use semi colon in do while statement?

A semi-colon is used in a do while statement for the same reason that it is used in any other statement. The rules of C and C++, as well as Java, require that every statement be terminated with a semi-colon.


There are 3 ways to use a colon at the end of a complete statement Compose sentences of your own to demonstrate each of these 3 uses?

tom play with his friends for hours.


Why you use colon in C language?

In C (and C++ and Java), the semicolon is used to mark the end of a statement. It is also used the separate the expressions in a for loop.


Do you put a colon after including?

A colon placed after the word including is not correct; this is because a colon should follow only independent clauses, which cannot end with that particular word. In other words, if you can correctly write a period in place of the colon, the colon's use is correct.


What punctuation belongs at the end of a statement?

At the end of a statement (a declarative or imperative sentence), you can use a period. After exclamatory sentences, use an exclamation mark, and after interrogative sentences, use a question mark.


When to use a colon with the word including?

A colon is used with "including" when it introduces a list of items that are part of a broader category or when it expands on a previous statement. For example: "The zoo is home to several monkeys, including capuchins, macaques, and baboons."


When to use a semi colon?

THis is a semi colon ;


Why we can't use semicolon at the end of if ststement?

The computer language has a grammar for the syntax. Not all computer languages using ; to end a statement. The if-statements DO end with an ; (except when a <compound statement>) in C#, C, PHP, and Java (and many others). In fact, most of <statement> end with ; in those languages, and <if-statement> is just one of the derived <statement>. However, for statements like: if (1 == 2) {} else {}, the {} is a <compound statement> which does not end with a ; syntactically.


Does military time use the colon?

Space archive states that military time doesn't use a colon unless showing the seconds but does end with 'hours' so 1300:05 hours would be 5 seconds after 1:00 PM.


Do you use a colon or semi colon to write a formal letter?

i would use a semi colon ; just because that is More formal.


Might makes right is a statement that might be heard where?

To be frank i dont like to use the word might,i often use the word i can or i will..........


Does every line in C program end with a semicolon?

Yes, but it will be difficult, because you will need to explicitly declare any library functions and constants that you will need, and often there are many such declarations. If you are talking about a header file specific to your program, the answer is still yes; simply declare your functions and constants before you use them. This is often done in single file program that are provided on the Internet - the file will contain includes for "standard" headers, but none for specific program related headers - and the order of functions will simply be backwards, with main() at the end - or the function will be declared at the top, with main() immediately after the declarations.