What is the difference between java and .Net?

Answer Posted / rohit jain

Java is platform independent, only thing we need is jvm on
the platform which comes in all operating systems by
default,.net is also platform independent as it needs
only .net framework,but since m$ owns the copyright to
the .net framework api's,it becomes platform dependent.

Java uses a common language while in .net we can use many
languages and it generates a platform specific code

Is This Answer Correct ?    6 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are data types in oop?

565


What is byte data type?

562


How we can make copy of a java object?

677


What is the tradeoff between using an unordered array versus an ordered array?

682


Write a program to reverse array in place?

615






Can you start a thread twice in Java?

656


Is integer immutable in java?

563


Is there any limitation of using inheritance?

581


What is memory leak and how does java handle it?

531


What are the disadvantages of object oriented programming?

625


What are the advantages and disadvantages of object cloning?

589


What is a qms manual?

560


public class Test { public static void main(String[] args) { int countA = 0; int countB = 0; int countC = 0; int countD = 0; int countE = 0; int countF = 0; int countG = 0; int countH = 0; int countI = 0; int countJ = 0; int countK = 0; int countL = 0; int countM = 0; int countN = 0; int countO = 0; int countP = 0; int countQ = 0; int countR = 0; int countS = 0; int countT = 0; int countU = 0; int countV = 0; int countW = 0; int countX = 0; int countY = 0; int countZ = 0; } } Can anybody tell me any alternate solution(like loop or something) to automate this initialization process. Ex:- for(char chr='A';chr<='Z'; chr++) { (int) String "count"+chr = 0; }

1856


What is a static method in java?

563


Hi all, I am dng a mini project on FileSplitter application which splits the GBs of logfile into Smaller chunks(mbs) depending on the split size." How to handle GBs file? I am getting OutOfMemoryException, when I input such GB sized file. Thx

1618