import java.util.Scanner;
public class JavaApplication70 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Input a String:");
String txt = scan.nextLine();
System.out.println("Input an integer:");
int num = scan.nextInt();
String newTxt = "";
int w = 0;
for (int i = txt.length()-1; i >= 0; i--){
char c = txt.charAt(i);
while (w < num){
newTxt += c;
w++;
}
w = 0;
}
System.out.println(newTxt);
}
}
I hope this helps!
Answer:
Netiquette is a combination of the words network and etiquette and is defined as a set of rules for acceptable online behavior. Similarly, online ethics focuses on the acceptable use of online resources in an online social environment.
- Be Careful With Your Tone.
- Be Accurate and Factual.
- Search First, Then Ask.
- Don't Use Sarcasm Freely.
- Be as Polite as You Are In Person.
Answer:
You are an awesome and amazing person!!
Explanation:
Answer:
MODEM(Modulator Demodulator)
Explanation:
A modem is a device used in data communication that allows analog signal to be sent over a telephone line.
The modem works by converting the analog signal into digital data that the computer understands. The digital data is converted back to its original form at the receiver end.
Modem modulates analog signal from a telephone line to digital data the computer can understand. also, at the receiver end, it demodulates the digital data back to its original analog signal.