top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the difference between SDK, API and JDK?

+2 votes
698 views

What is an SDK and what is an API? How both are different then each other?
Can a JDK called an sdk? Why or why not?

Is MYSQL an SDK?

posted Nov 27, 2014 by Krishnan Goskan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes

I think it rather falls along the lines of "All SDKs are/contain APIs but not all APIs are SDKs".

What is SDk?

SDK means (Software Development ToolKit)

SDK is a set of tools that can be used to develop software applications targeting a specific platform. SDKs include tools, libraries, documentation and sample code that would help a programmer to develop an application. Most of the SDKs could be downloaded from the internet and many of the SDKs are provided free to encourage the programmers to use the SDK‘s programming language. Some widely used SDKs are Java SDK (JDK) that includes all the libraries, debugging utilities, etc., which would make writing programs much easier in Java. SDKs make the life of a software developer easy, since there is no need to look for components/ tools that are compatible with each other and all of them are integrated in to a single package that is easy to install.

what is API?

API means (Application Program Interface):

API is an interface that allows software programs to interact with each other. It defines a set of rules that should be followed by the programs to communicate with each other. APIs generally specify how the routines, data structures, etc. should be defined in order for two applications to communicate. APIs differ in the functionality provided by them. There are general APIs that provide library functionality of a programming language such as the Java API. There are also APIs that provides specific functionality such as the Google Maps API. There are also language dependent APIs, which could only be used by a specific programming language. Furthermore, there are language independent APIs that could be used with several programming languages. APIs needs to be implemented very carefully by exposing only the required functionality or data to the outside, while keeping the other parts of the application inaccessible. Usage of APIs has become very popular in the internet. It has become very common to allow some of the functionality and data through an API to the outside on the Web. This functionality can be combined to offer an improved functionality to the users.

answer Nov 27, 2014 by Manikandan J
what about jdk and mysql?
is jdk an sdk?
--------------

The JDK is a subset of what is loosely defined as a software development kit (SDK) in the general sense. In the descriptions which accompany their recent releases for Java SE, EE, and ME, Sun acknowledge that under their terminology, the JDK forms the subset of the SDK which is responsible for the writing and running of Java programs. The remainder of the SDK is composed of extra software, such as Application Servers, Debuggers, and Documentation.
Similar Questions
+2 votes

Need inputs on converting the UML to restful API. From where should i start.I know the basics of rest and have knowledge of djangorestframework. How UML can be converted to rest api. After all UML is just a modelling way to design and architect.

...