gs gs128 Java IO Applets - Writing Console Output in Java - Quiz No.1
gs gs128 Java Quiz
This quiz belongs to book/course code gs gs128 Java of gs organization. We have 136 quizzes available related to the book/course Java. This quiz has a total of 7 multiple choice questions (MCQs) to prepare and belongs to topic Java IO Applets. NVAEducation wants its users to help them learn in an easy way. For that purpose, you are free to prepare online MCQs and quizzes.
NVAEducation also facilitates users to contribute in online competitions with other students to make a challenging situation to learn in a creative way. You can create one to one, and group competition on an topic of a book/course code. Also on NVAEducation you can get certifications by passing the online quiz test.
Question 1: Which of these class contains the methods print() & println()?
System
System.out
BUfferedOutputStream
PrintStream
Question 2: Which of these methods can be used to writing console output?
print()
println()
write()
all of the mentioned
Question 3: Which of these classes are used by character streams output operations?
InputStream
Writer
ReadStream
InputOutputStream
Question 4: Which of these class is used to read from a file?
InputStream
BufferedInputStream
FileInputStream
BufferedFileInputStream
Question 6: What will be the output of the following Java program?
class output { public static void main(String args[]) { char c[]={'a','1','b',' ','A','0']; for (int i = 0; i < 5; ++i) { if(Character.isDigit(c[i])) System.out.println(c[i]" is a digit"); if(Character.isWhitespace(c[i])) System.out.println(c[i]" is a Whitespace character"); if(Character.isUpperCase(c[i])) System.out.println(c[i]" is an Upper case Letter"); if(Character.isUpperCase(c[i])) System.out.println(c[i]" is a lower case Letter"); i = i + 3; } } }
a is a lower case Letter is White space character
b is a lower case Letter is White space characte
a is a lower case Letter A is a upper case Letter
a is a lower case Letter 0 is a digit