What are the languages are portable and platform
independent?Why they are like that?
Answer / racika
Java is portable and platform independent since we can run
those class files in any of the OS.
| Is This Answer Correct ? | 3 Yes | 0 No |
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
How can you call a function, given its name as a string?
What are the preprocessors?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
What is static memory allocation?
Explain about C function prototype?
How. To pass the entrance test
what is event driven software and what is procedural driven software?
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
Explain what is the difference between functions getch() and getche()?