+ 3

How is Java different from C#?

I know there are some differences is the syntax, but are some bigger things? What is special in each of the languages?

17th May 2018, 6:09 AM
Itai Meshulam
Itai Meshulam - avatar
4 Respostas
+ 1
C# can be used too make Windows applications
17th May 2018, 6:32 AM
Rowsej
Rowsej - avatar
+ 1
The main differences of Java over C are:- 1.Java is simple in comparison to C as it does not have pointers. 2.Java is a platform independent whereas C is platform dependent( When you compile java source code it will be converted into byte code, which is independent of Operating System in case of C, source code is converted into native(obj) code which is dependent on Operating System .) 3.Java is an object oriented whereas C is a procedural language.(object oriented is not a language. It is a programming concepts, which defines set of rules and regulations for organization data and instruction.) 4.Java is robust. (Java is a strongly typed language having strict type checking during compile and run time. where as in case of C, it is not) Read Here:- Feature-wise Comparison: Where Java Scores Over C#-http://crbtech.in/Java-Training/?s=C
17th May 2018, 8:37 AM
pranit patil
pranit patil - avatar