Answer:
Body language is a type of nonverbal communication in which physical behaviors, as opposed to words, are used to express or convey the information. Such behavior includes facial expressions, body posture, gestures, eye movement, touch and the use of space.
Explanation:
hope this helps
Answer:
The answer is "Option c"
Explanation:
In the given question only option c is correct because "/27" is the IP "255.255.255.224" is the same as "/27" in the terminology in CIDR, in which it uses the compact IP address as well as corresponding prefix expression and it terminology consists of an IP with a slash ('/') or a decimal number. Its count of 1-bit proceeding to the mask traditionally referred to it as the network mask.
Explanation:
is that motherboard is (computer hardware) the primary circuit board of a personal computer, containing the circuitry for the central processing unit, keyboard, mouse and monitor, together with slots for other devices while microprocessor is (computer hardware) the entire cpu of a computer on a single integrated .
Btw correct me if i sm wrong
Answer:
The code above tries to read a file using the scanner class in java programming language.
But it was done properly.
First, the scanner class library is not imported to the program.
Second,the syntax used in this program is an invalid way of reading a file in java programming language using the scanner class.
Lastly, "String s = file.nextLine();" is not a proper way of reading each line
To correct this problem; use the following code;
import java.util.Scanner;
import java.io.File;
import java.io.FileNotFoundException;
public class ReadFileWithScanner {
try
{
public static void main(String args[]) throws FileNotFoundException {
File text = new File("data.txt");
Scanner file = new Scanner(text);
int lines = 1;
while(file.hasNextLine()){
String line = filw.nextLine();
System.out.println("line " + lines + " :" + line);
lines++;
}
catch (ArithmeticException ae)
{
System.out.println(ae.getMessage());
}
}
}