Answer:
i don't want ur email but here's a joke more like a riddle: I speak without a mouth and hear without ears. I have no body, but I come alive with wind. What am I?
answer an echo
Explanation:
Answer:
import java.util.*;
public class MyClass {
public static void main(String args[]) {
Scanner input = new Scanner(System.in);
System.out.print("Input a word: ");
String userinput = input.nextLine();
for(int i =0;i<userinput.length();i+=2) {
System.out.print(userinput.charAt(i));
}
}
}
Explanation:
This line prompts user for input
System.out.print("Input a word: ");
This declares a string variable named userinput and also gets input from the user
String userinput = input.nextLine();
The following iterates through every other character of userinput from the first using iteration variable i and i is incremented by 2
for(int i =0;i<userinput.length();i+=2) {
This prints characters at i-th position
System.out.print(userinput.charAt(i));
Answer: The difference present between the packet switching and circuit switching are as follows:-
- Packet switching i the switching in which the data packet travels through the connectionless path whereas connection oriented routes are present for circuit switching
- Network layer uses the feature of packet switching while physical layer uses circuit switching technique
- Data transferring is mostly preferred through packet switching and voice communication takes place through the circuit switching.
- Packet switching is considered flexible as no already established connection is present for switching but the connection in circuit switching are already defined which makes it less flexible.
Among the packet switching and circuit switching , packet switching is preferred for the communication through the data packets because they have flexibility and affordability.It can establish numerous connection for switching and this make it efficient.
A faxback system allows a customer to request a fax using email, via the company website, or by telephone.
<h3>What is faxback?</h3>
Faxback (usually uncountable, plural faxback) An interactive electronic service permitting documents to be downloaded via fax machine. FaxBack searches a pre-assigned database to validate numerals provided while at the same time recovering a caller's name and fax number. Callers without an account can hear a message in- structing them on how to receive an account or be given the option of furnishing a credit card.
FaxBack Fax Machine Solutions add features to the fax machine equivalent to how VoIP added components to the phone: receive fax notification via email and track, archive, and manage faxes via the fax server or service provider control panel.
Hence, A faxback system allows a customer to request a fax using email, via the company website, or by telephone.
To learn more about faxback refer to:
brainly.com/question/13735750
#SPJ4