Posts

How to install python on your PC.

If you want to run python on your PC,you need these softwares.      >Python.exe     >Python IDE Python:     Python is a interpreter for running python code.It is compulsory to run a Python code.        Python can be download from following link:         Download Python IDE:       Python IDE is program to edit python code.There are many IDE,s to edit code.        But some popular IDE,s are:             >Microsoft VS code.                     Download here.               >Pycharm                     Download here. Thanks...

Java

Java is a popular programming language, created in 1995. It is owned by Oracle, and more than  3 billion  devices run Java. It is used for: Mobile applications (specially Android apps) Desktop applications Web applications Web servers and application servers Games Database connection And much, much more! Why Use Java? Java works on different platforms (Windows, Mac, Linux, Raspberry Pi, etc.) It is one of the most popular programming language in the world It is easy to learn and simple to use It is open-source and free It is secure, fast and powerful It has a huge community support (tens of millions of developers) Java is an object oriented language which gives a clear structure to programs and allows code to be reused, lowering development costs As Java is close to  C++  and  C# , it makes it easy for programmers to switch to Java or vice versa

C/C++

C++ is an object oriented computer language created by notable computer scientist Bjorne Stroustrop as part of the evolution of the C family of languages. Some call C++ “C with classes” because it introduces object oriented programming principles, including the use of defined classes, to the C programming language framework. C++ is pronounced "see-plus-plus." When C++ was new, object oriented programming was just coming on the scene. This revolutionary type of computer programming transformed the coding world with its promise of more sophisticated virtual data types and objects. In object oriented programming, an object is a data type that has both data and functions inherent in its design. Prior to the advent of object oriented programming, programmers typically saw a codebase as composed of individual command line instructions. The identification of objects with data and functions built in led to a new way of packaging and automating code work. When C++ was new, object orie

Python

What is Python? Python is a special kind of computer language called a  scripting language . A scripting language is/has Built in memory management Good facilties for calling and communicating with other programs These properties are pretty geeky so let’s take each of them in turn and explain why they are desirable. Built in memory management. This one is easy. C is a wonderful programming language that is in many ways the the performance king of programming languages. But it requires you to allocate space in advance for all the components. This is a key feature in acheiving maximal performance but as programs grow and interact with other programs, there is a huge overhead in debugging arcane sounding problems such pointer aliasing, buffer overruns and memory leaks. Modern machines make paying the performance price required to eliminate a few of these headaches quite feasible. Hence the growing importance of scripting languages in a variety of domains. Good facilities for calling and c