Contents
Why is it better to avoid abbreviations in written communication?
Letters on their own can mean a lot of different things.By avoiding the use of acronyms, and avoiding abbreviating words, the context of the term itself or phrase becomes much clearer and easier to translate which in turn will be cheaper for you as it will reduce the amount of corrections.
Why do people use so many abbreviations?
The main reason that people give for using acronyms and abbreviations is that it’s quicker than saying or writing it in full. So, if someone uses an acronym or abbreviation — ask what it means. Every time.
What kind of abbreviations should not be used in email communication?
Avoid these most commonly used abbreviations in any electronic communication: BTW – “By they way” LOL – “Laughing out loud” U – “You”
What does fya mean on TikTok?
What does ‘FYP’ stand for? FYP is an acronym, standing for ‘For Your Page’ which refers to the page a person is shown that TikTok fills with videos you think you’ll enjoy most from what you’ve watched and interacted most with in the past.
What do FTW mean?
For The Win
Here are the terms you need to know ASAP! FTW. For The Win was used originally used in cricket but feel free to use the acronym whenever you get your winner on.
What do you mean by commenting in programming?
Commenting is the “art” of describing what your program is going to do in “high level” English statements. Commenting is best done before actually writing the code for your program. Comments are specially marked lines of text in the program that are not evaluated.
What are the different types of code comments?
For starters, there are really two different types of code comments. I call them documentation comments and clarification comments. Documentation comments are intended for anyone who is likely to consume your source code, but not likely to read through it.
How to write a single line comment in C?
First of all, we should be aware that comments are the description written in the source code within some special characters so as to get ignored by the compiler while running the code. In C and C++ programming, we can write a single line comment by using // (double slash) and multi-line comment within /*….*/
Why do you put clarification comments in your code?
Clarification comments are intended for anyone (including your future self) who may need to maintain, refactor, or extend your code. Often, a clarification comment is a code smell. It tells you that your code is too complex. You should strive to remove clarification comments and simplify the code instead because, “good code is self-documenting.”