Answer:
(B) SMS text messages are likely to reach recipients quickly.
(D) SMS text messages can be sent to multiple recipients.
Explanation:
Short message service (SMS) refers to the a service for the transmission of messages from or to a mobile phone.
An short message service is usually not longer than 160 characters consisting of alphabets and numerical values and they also do not contain images.
Answer:
Your answer is D) Encode
Explanation:
Definition of Encode: To change how information is represented so that it can be read by a computer.
Answer:
sendObject(John_Doe);
Explanation:
The above code has been written in Java.
Since the calling class is the same that declares it, to invoke the method, simply call its name with its argument(s) in a pair parentheses. The name of the method is "sendObject" and its argument is a reference to an object of type Customer saved in a variable called "John_Doe". This can be written as follows:
sendObject(John_Doe);
Hope this helps!