Calling some one or emailing some one is an example of <span>asynchronous communication</span>
Answer:
No . It doesn't mean that person thinking an online activity is absent minded bcoz while we are thinking any activities our mind is working and while doing anything there is presence of our mind so i don't think thinking an online activity is absentminded .
In my idea.
Ummm what are you trying to ask? Is it like a error on your computer or-
public class MyClass {
public static void printChar(char ch1, char ch2, int numberPerLine){
int i = 0;
for (char c = ch1; c <= ch2; c++){
while (i < numberPerLine){
System.out.print(c + " ");
i += 1;
}
System.out.println("");
i = 0;
}
}
public static void main(String args[]) {
printChar('a', 'z', 10);
}
}
So far, this works by printing letters. If you need me to modify the code, I will.