Question Set

1. The purpose of swap (or page) file is to:





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->The extension jpeg in the name of a file indicates that it is a/an file.....
QA->The last word typed at the end of a page being repeated as the first word in the subsequent page is called:....
QA->How much billion dollar was accepted by Reserve Bank of India(RBI) from banks at its currency swap auction to ease liquidity?....
QA->75 billion Bilateral Swap Arrangement (BSA) with which country’s central Bank?....
QA->ഒരു file ന്റെ size നെ കുറയ്ക്കുവാൻ ഉപയോഗിക്കുന്ന രീതി ? ....
MCQ->What will the SWAP macro in the following program be expanded to on preprocessing? will the code compile? #include<stdio.h> #define SWAP(a, b, c)(c t; t=a, a=b, b=t) int main() { int x=10, y=20; SWAP(x, y, int); printf("%d %d\n", x, y); return 0; }....
MCQ->What will be the output of the program ? #include<stdio.h> void swap(char , char ); int main() { char pstr[2] = {"Hello", "IndiaBIX"}; swap(pstr[0], pstr[1]); printf("%s\n%s", pstr[0], pstr[1]); return 0; } void swap(char t1, char t2) { char t; t=t1; t1=t2; t2=t; }....
MCQ->The purpose of swap (or page) file is to:....
MCQ->What will be the output of the program? #include<stdio.h> #define SWAP(a, b) int t; t=a, a=b, b=t; int main() { int a=10, b=12; SWAP(a, b); printf("a = %d, b = %d\n", a, b); return 0; }....
MCQ->Point out the error in the program? #include<stdio.h> / Assume there is a file called 'file.c' in c:\tc directory. / int main() { FILE fp; fp=fopen("c:\tc\file.c", "r"); if(!fp) printf("Unable to open file."); fclose(fp); return 0; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution