Java Programming (3350703) MCQs

MCQs of File Handling

Showing 1 to 10 out of 23 Questions
1.

Which of the following exception is thrown in case when the file specified for writing is not found?

(જે ફાઈલમાં રાઈટ કરવાનું છે એ ફાઈલ ન હોય તો નીચે આપેલમાંથી કયું એક્ષેપ્શન થ્રો થશે?)

(a)

FileNotFoundException

(b)

IOException

(c)

FileInputException

(d)

FileException

Answer:

Option (a)

2.

Which of the following method is used to read from file?

(ફાઈલમાંથી રીડ કરવા માટે નીચે આપેલમાંથી કઈ મેથડનો ઉપયોગ થાય છે?)

(a)

readFile()

(b)

get()

(c)

read()

(d)

scanf()

Answer:

Option (c)

3.

Which of the following value is returned by read() method when end of file (EOF) is encountered?

(જયારે એન્ડ-ઓફ-ફાઈલ(EOF) હોય ત્યારે read() મેથડ નીચે આપેલમાંથી કઈ વેલ્યુ રીટર્ન કરશે?)

(a)

1

(b)

-1

(c)

0

(d)

NULL

Answer:

Option (b)

4.

Which of the follwing methods is used to write() into a file?

(ફાઈલમાં રાઈટ કરવા માટે નીચે આપેલમાંથી કઈ મેથડનો ઉપયોગ થાય છે?)

(a)

writeFile()

(b)

put()

(c)

write()

(d)

print()

Answer:

Option (c)

5.

Which of the following packages contain classes and interfaces used for input & output operations of file?

(ફાઈલમાં ઇનપુટ અને આઉટપુટ ઓપરેશન કરવા માટેના ક્લાસ અને ઇન્ટરફેસ નીચે આપેલમાંથી ક્યા પેકેજમાં આવેલ છે?)

(a)

java.util

(b)

 java.io

(c)

java.lang

(d)

java.net

Answer:

Option (b)

6.

Which of these class is not a member class of java.io package?

(આપેલ ક્લાસમાંથી કયો ક્લાસ java.io પેકેજનો મેમ્બર નથી?)

(a)

FileReader

(b)

FileWriter

(c)

File

(d)

String

Answer:

Option (d)

7.

Which of the following class is not related to input and output stream in terms of functioning?

(નીચે આપેલમાંથી કયો ક્લાસ ફંકશનાલીટીની દ્રષ્ટિ એ ઇનપુટ અને આઉટપુટ સ્ટ્રીમ સાથે સંબંધિત નથી?)

(a)

File

(b)

FileReader

(c)

FileWriter

(d)

InputStream

Answer:

Option (a)

8.

What will be the output of the following code?

import java.io.*;
class demoFile 
{
   public static void main(String args[]) 
   {
      File f = new File("C:/java/xyz");
      System.out.print(f.getName());
   }
}

નીચે આપેલ કોડનું આઉટપુટ શું આવશે?

import java.io.*;
class demoFile 
{
   public static void main(String args[]) 
   {
      File f = new File("C:/java/xyz");
      System.out.print(f.getName());
   }
}
(a)

java

(b)

xyz

(c)

java/xyz

(d)

C:/java/xyz

Answer:

Option (b)

9.

Which of the following is method for testing whether the specified element is a file or a directory?

(નીચે આપેલમાંથી કઈ મેથડનો ઉપયોગ આપેલ એલીમેન્ટ ફાઈલ અથવા ડિરેક્ટરી છે કે નહિ તે ચેક કરવા માટે થાય છે?)

(a)

Isfile()

(b)

 isfile()

(c)

IsFile()

(d)

isFile()

Answer:

Option (d)

10.

What will be the output of the following code? 

import java.io.*;
class demoFile 
{
   public static void main(String args[]) 
   {
      File f = new File("C:/java/xyz");
      System.out.print(f.getParent());
      System.out.print(" " + f.isFile());
   }
}

નીચે આપેલ કોડનું આઉટપુટ શું આવશે?

import java.io.*;
class demoFile 
{
   public static void main(String args[]) 
   {
      File f = new File("C:/java/xyz");
      System.out.print(f.getParent());
      System.out.print(" " + f.isFile());
   }
}
(a)

java false

(b)

C:\java false

(c)

java true

(d)

\java true

Answer:

Option (b)

Showing 1 to 10 out of 23 Questions