Exception Handling & I/O Streams

Exception Handling & I/O Streams

Professional Development

10 Qs

quiz-placeholder

Similar activities

DW (EM25) - Introducción al Internet [T1]

DW (EM25) - Introducción al Internet [T1]

University - Professional Development

15 Qs

command prompt

command prompt

4th Grade - Professional Development

15 Qs

DL Refresher

DL Refresher

KG - Professional Development

10 Qs

Email of request

Email of request

12th Grade - Professional Development

11 Qs

Trg@home 1

Trg@home 1

Professional Development

10 Qs

¿Qué se de Office 365?

¿Qué se de Office 365?

Professional Development

12 Qs

Topic Quiz-1 : Python Basics

Topic Quiz-1 : Python Basics

Professional Development

10 Qs

Sains Komputer Tingkatan 4 - 3.1.1 Mengkaji keperluan intera

Sains Komputer Tingkatan 4 - 3.1.1 Mengkaji keperluan intera

1st Grade - Professional Development

10 Qs

Exception Handling & I/O Streams

Exception Handling & I/O Streams

Assessment

Quiz

Computers

Professional Development

Hard

Created by

SOBHANBABU SOBHANBABU

Used 10+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is Stream

It is a sequence of Bytes

It is flow of input data

It a flow of only output data

It is not related to Java

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How many Streams are there in JAVA

2

3

8

1

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code:

import java.io.*;

class File1

{

static public void main(String...args)

{

FileOutputStream f=new FileOutputStream("gec.txt");

f.write(67);

f.close();

}}

This program writes ASCII character into file

Compile time error

Runtime error

This program writes 67 into file

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the output of the following code:

class A

{

void display() throws IOException

{

System.out.println("I am class A");

}

static public void main(String...args)

{

A r=new A();

r.display();

}}

Compile time error

Runtime error

I am class A

either compile time or runtime error

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Predict the output of the following code:

class A

{

public static void main(String...args)

{

try{

System.out.println(23/0);

}

catch(Exception e){

System.out.print("hai it is an error");

}

catch(Throwable e)

{

System.out.print("hello it is an error ");

}}}

hai it is an error

hello it is an error

compile time error

runtime error

both hai it is an error and hello it is an error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Streams are belongs to

import java.io.*;

import java.lang.*;

import java.util.*

import java.awt.*;

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Reader and Writer classes belongs to

Byte Streams

Character Streams

InputStream

OutputStream

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?