a) File
b) Writer
c) InputStream
d) Reader
Answer: a
Explanation: A File describes properties of a file, a File object is used to obtain or manipulate the information associated with a disk file, such as the permissions, time date, and directories path, and to navigate subdirectories.
Related Posts
What will be the output of the following C code?
#include < stdio.h >
void m();
void n()
{
m();
}
void main()
{
void m()
{
printf(“hi”);
}
}What will be the output of the following C code?
#include < stdio.h >
void m()
{
printf(“hi”);
}
void main()
{
m();
}What will be the output of the following C code?
#include < stdio.h >
void foo();
int main()
{
void foo(int);
foo();
return 0;
}
void foo()
{
printf(“2 “);
}What will be the output of the following C code?
#include < stdio.h >
void foo();
int main()
{
void foo(int);
foo(1);
return 0;
}
void foo(int i)
{
printf(“2 “);
}What will be the output of the following C code?
#include < stdio.h >
void foo();
int main()
{
void foo();
foo();
return 0;
}
void foo()
{
printf(“2 “);
}What will be the output of the following C code?
#include < stdio.h >
int main()
{
void foo();
void f()
{
foo();
}
f();
}
void foo()
{
printf(“2 “);
}What will be the output of the following C code?
#include < stdio.h >
int main()
{
void foo(), f();
f();
}
void foo()
{
printf(“2 “);
}
void f()
{
printf(“1 “);
foo();
}
Join The Discussion