my name is bug i have short hair and im 14
Explanation:
Answer:
A form is closed
A form is resized.
A form is opened
A user presses a key
A user moves the mouse
Explanation:
There are different events in a form, and we can use them in different situations like:
- We can use On Resize to resize our form.
- If we On Load the form will be displayed.
- On Clicked, If there was a click in an object
- On Unload to close the form.
- On Mouse Enter and On Mouse Leave, in this case, the mouse enters or leaves the object.
Answer:
It will have a negative effect on the quality of your work for sure.
Without being able to properly and easily read the text, you will not be able to distinguish between symbols that are similar... like "," vs "." or ';' vs ":" or "m" vs "n" or "I" vs "i", and so on.
You might not be able to see where a sentence stops and you'll keep reading, mixing up sentences and wonder why this is in the same sentence.
If you're dealing with a language with accents (like French or Spanish for example), you will not be able to distinguish the accents ("ê" vs "ë" for example).
Answer:
Text Messages
Explanation:
Synchronous communication is a simultaneous communication between two people. This is the type of serial communication where two person can communicate at the same time. This type of communication exclude face to face communication and phone communication.
for example
during Chat when we are taking to someone he also can reply the same time.
Answer:
return instruction used to return a value from a function.
Explanation:
Function is a block of statement which perform the special task.
Syntax for define a function:
type name(parameter_1, parameter_2,...)
{
statement;
return variable;
}
In the syntax, type define the return type of the function. It can be int, float, double and also array as well. Function can return the array as well.
return is the instruction which is used to return the value or can use as a termination of function.
For return the value, we can use variable name which store the value or use direct value.