Showing posts with label Coding. Show all posts
Showing posts with label Coding. Show all posts

Friday, 9 June 2023

Which programming language is the most demanding?

According to the 2022 Stack Overflow Developer Survey, the most demanding programming languages are:

  • JavaScript: JavaScript is the most popular programming language in the world, and it is used for both front-end and back-end development. It is also a very in-demand language, with over 69% of developers using it.
  • Python: Python is another popular language that is used for a wide variety of tasks, including data science, machine learning, and web development. It is also a very in-demand language, with over 41% of developers using it.
  • Java: Java is a more established language that is used for a wide variety of tasks, including enterprise development, mobile development, and web development. It is also a very in-demand language, with over 38% of developers using it.
  • C/C++: C and C++ are older languages that are still very popular for low-level development, such as operating systems and embedded systems. They are also very in-demand languages, with over 33% of developers using them.

These are just a few of the most demanding programming languages. There are many other languages that are also in demand, such as PHP, Ruby, and Swift. Ultimately, the most demanding programming language for you will depend on your interests and career goals.

Here are some of the reasons why these languages are so demanding:

  • They are used for a wide variety of tasks. This means that there is a lot of demand for developers who know these languages.
  • They are complex and challenging to learn. This means that there is a lot of demand for experienced developers who know these languages.
  • They are constantly evolving. This means that developers who know these languages need to keep up with the latest changes in order to stay relevant.

If you are interested in learning a demanding programming language, there are many resources available online and in libraries. You can also find many online courses and bootcamps that can teach you the basics of these languages.

Friday, 10 October 2014

Simple Coding Rules

1. Code should be proper indented.
2. Meaning full name of variables and constants.
3. Meaning full name of methods and classes.
4. No duplicate code.
5. No inline css.
6. No inline java script.
7. Html, css and java script code also be indented.
8. No html code should come with java services.
9. If you find a code two times in a class than make a separate method using that code.
10. If you find same code in two or more classes than make a separate class using that code and use       that class.