What are the languages are portable and platform
independent?Why they are like that?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is sizeof c?

813


What is the difference between pure virtual function and virtual function?

850


What are different types of operators?

768


I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.

1686


When was c language developed?

902


Write a program which returns the first non repetitive character in the string?

808


Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

2338


What are header files in c programming?

827


What is table lookup in c?

821


What is merge sort in c?

816


What is a scope resolution operator in c?

936


how is the examination pattern?

1778


What does typedef struct mean?

838


One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.

2398


using only #include and #include Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

1567