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 |
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What is the real time usage volatile?
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
How can you determine the size of an allocated portion of memory?
Differentiate between static and dynamic modeling.
Explain how do you list files in a directory?
How to create struct variables?
Why doesnt this code work?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What is the role of && operator in a program code?