what is meant by files?

Answer Posted / teja

files are nothing but collection of data

Is This Answer Correct ?    1 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is abstract thinking intelligence?

599


What is the importance of oop?

614


Which method cannot be overridden?

584


#include #include #include #include void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

2070


What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?

1654






write a C++ program for booking using constructor and destructor.

2055


Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

3557


Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.

2008


Why is polymorphism used?

588


Can you inherit a private class?

635


what are the realtime excercises in C++?

2337


What do you mean by abstraction?

619


Can abstract class have normal methods?

616


what is difference between class template and template class?

2159


• What are the desirable attributes for memory managment?

1728