C++ vs Java vs Python who will win?
Well since you've posed this inquiry, it appears you are gathering a contribution for a task you are going to fabricate, and have moderately lesser involvement in programming (since you didn't make reference to any utilization cases or situations). For you I'll attempt to keep it straightforward-
Now i am providing some points which will help you to solve your querie, if need any programming assignment help
1. C++ is more complex than java and python.C++ has a grammar which is much more context sensitive than Python or Java. Part of the complexity of C++ is that it is really four programming languages in one: core C++, template metaprogramming, C and preprocessor.
2. Databases are critical for almost any back-end business application.
Java has by far the best native support. JDBC is a standardised interface and is widely supported by database vendors. A JDBC to ODBC bridge is included with the JDK. Others can be easily installed by adding the jar to the classpath.
Python is a bit more mixed. Python has a standardised interface, however it generally relies on third parties to write drivers for C based drivers. Most vendors have not provided Python drivers. Even an ODBC driver is not built-in. A number of drivers are available, most through easy_install. There are some duplicates of some drivers and it is not always easy for a newbie to determine which one is still being actively developed. For example there are six different ODBC drivers, two different MySQL drivers and nine different PostgreSQL drivers.
Comments
Post a Comment