what is meant by files?
Answers were Sorted based on User's Feedback
Answer / santhi
a file is a collection of records and a record is a
collection of fields.by keeping ur data on file u can save
permunently.that is a file is saved on disk memory
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / kalaivani
file is define as sequence of data ,it can be stored by
alphabet or name which can be chosen by the user
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / buuuurrrrrrrrrrrrrrr...
it is a collection of empty pages with hard cardboard on
both sides on which the name of our collg is very badly
highlighted
| Is This Answer Correct ? | 1 Yes | 4 No |
What are the 4 pillars of oop?
how to tackle technical questions
What is the difference between class and structure?
What is polymorphism in oop example?
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
What is the real time example of encapsulation?
What is virtual function?where and when is it used?
How is exception handling carried out in c++?
What is destructor oops?
what is the abstract class,interface ,its difference with a programatic eg.? hi,recently i went for an interview they ask me what is abstract class ,interface and its difference I said abstract class contain abstact method ,abstract method is a method with no body.Abstract class cannot be instantiated.Abstract class is a base class it required derived class for the implementation of method. Interface is a syntactical contract that all derived class should follow it define properties ,method,events which are known as member of interface. Then They asked me what is the difference between them. I said abstract class interface 1.abstact class can implement method 1.interface cant 2.abstact class can contain constructor, 2.interface cant destructor 3.abstract class cannot support multiple 3.interface support inheritance etc Then they said some different answer I said dont no. Then they ask me when i should make abstract class for an project and when i should make interface. I said if suppose there is two class which must be having method with different logic then we sholud make abstract class. and if suppose we have two class having method .with different logic then we can make interface . Am i correct with my explaination.if not correct me .please provide me that when should we create abstract class and interface and what is difference .please help me
How to overload new operator in c++
Can we call a base class method without creating instance?