Many people ask me that 'Which programming language should I learn..?'
Well here are some programming languages with their uses. Choose yourself based on your interest.
📌Python -
🔸Artificial Intelligence
🔸Machine Learning
🔸Data analytics
🔸Data visualization
🔸Web development using the frameworks - Django, Pyramid, and flask
🔸Game development using python
🔸Python used in the field of Search Engine Optimisation (SEO)
📌C/C++ -
🔸Competitive coding in C++
🔸Operating system and system tools
🔸Game development
🔸Browsers are mostly used in C++ for rendering purposes
🔸Advance computation and graphics
🔸Compilers
🔸Embedded systems
🔸Enterprise software
📌Java -
🔸Enterprise Application development
🔸Desktop GUI Applications
🔸Game development using frameworks - LibGDX and OpenGL
🔸Big data technology
🔸IoT Application
📌Javascript -
🔸Rich Interactive web development
🔸Mobile applications using React Native
🔸Game development using game engines as PhysicsJS, Pixi.js
🔸Creating web servers using node.js
📌HTML+CSS+JS -
🔸For web development
📌C# -
🔸Application & Web Development Using .NET
🔸Game development (Ex - Unity game engine)
📌What are threads?
Threads allow a program to operate more efficiently by doing multiple things at the same time.
Every java application has at least one thread – the main thread. But from the application point of view – main is the first java thread and we can create multiple threads from it.
Multithreading refers to two or more threads executing concurrently in a single program
“In order to understand recursion, one must first understand recursion.”
📌Fun Activity
Google 'recursion' and you will find that Google will ask 'Did you mean: recursion'. Despite clicking on recursion from spell checker – Did you mean, Google will keep on displaying it. Though the spelling is right, Google keeps on telling it again and again.
📌What is inheritance?
When we want to create a new class and there is already a class that includes some of the code that we want, we can derive our new class from the existing class (and avoid the writing of the same code again). This is referred to as inheritance.
As a programmer you might have come across both these words- coding and programming but do you know the actual difference between the two
Let us look at the difference between both these terms now and let me clear your doubts.
Read to the end of the thread!
📌Coding
Coding is basically the act of translating codes from human language to machine-based language. It can also be called a subset of programming since it is the foundation of programming