Skip to main content

What should I do after knowing computer languages like C,Java ,Python?

What should I do after knowing computer languages like C, Java, Python?


Here...What should I do after knowing computer languages like C, Java, Python?
             help you make the new concepts, you are learning a programming 
             Languages are really very important.





1.The field is wide, don't limit yourself to just programming knowledge 
  now in this era as if see future for the next 10 years, Data Mining 
  and Analytics, Artificial Intelligence, etc have great scope to dive in.


  You have got great deep knowledge of these programming languages so 
  now focus on how to optimize programs that you are 
  coding, likewise time optimization, code optimization, etc.




2.It depends on how much you understood that language and how you can use it.

  If you love the android app then build it with java.

  If you want automation and ai then do it with python.

  Basically learn Algorithm and Data structure build
   application and contribute to open source projects



3.You don’t learn to program if you only learn a number of programming languages. Practice your knowledge - write Software in C.

   You will gain experience and you will find reasons to learn something else. 
   I switched to C++ when I had problems I could not satisfying solved in C. In 
   C++ I found a lot of solutions to my problems. I also learned Java and 
   Python, but I am still a C++ developer in the profession and at private projects.

   C++ solves most problems I have. It has many advantages in larger projects. 
   I am calling about projects about several 100kLOC to millions of lines of code. 
   For small scripts and small projects, python is very expressive and the developer is able to keep track of it. Java has a huge standard framework.

   I have large projects and therefore it has no relevant cost to include external libraries.
   In all languages, you learn object-oriented programming.

   Learning Python is learning to call library functions in an expressive way. 
   Learning Java is learning a huge standard framework. Learning C++ is learning to build projects and OOP. And if you want generative programming and/or template meta programming and/or building software architectures with multiple and/or virtual inheritance. 
   And/Or protecting software with const correctness. And/Or working and thinking in a 
   much more nuanced way. All of this helps to secure larger projects and software reliability.



4.Well, C++ is like most basic language for programming and is a must for 
   programmers. Once you have a good grip on the same, do 
   check the following (preferably same order):

  C
  JAVA
  Python ( preferably with Django Framework)
  C# (preferably with .NET)
  PHP (for Web Development)
  HTML, XML (for Web Development)
  Java (for Web Development)

  If you find JAVA interesting, do go for J2EE as it is really trending up 
  in the industry along with evergreen Android Development as it uses JAVA!

  Python is also known as the king of automation and really widens the scope. Personally, it's a must!



5.I will say don't waste your time by learning a new programming language. 
   Start developing something. Maybe you start with C++ since C++ is  closer to C. Exactly you can use C library function calls in C++. So just start 
   developing something in C++ meanwhile if you find some difficulties then 
   you can consult your best friends( book, online resources, friend e.t.c.)

  Learning a new language is like a learning new syntax since all widely used programming languages have the same philosophy. They differ in syntax and library ( How rich their libraries are and how easy to use e.t.c. ).




Conclusion-In this tutorial you will have learned, What should I do after knowing computer languages like C, Java, Python 
                Explain step by step Programming Language,
                So hope you liked these tutorials. If you have any questions or suggestions 
                related to any programming language, please comment below and let us know.
                Finally, if you find this post informative, then share it with
                your friends on Facebook, Twitter, Instagram. 

 Thank you...


Comments

Popular posts from this blog

Spring Boot With MySQL Database connection with Examples | MySQl Database Configuration with Spring Boot Projects

 ðŸ˜ƒ MySQL Database Configuration with Spring Boot Projects  In this article, we are going to introduce How to connect MySQL Database with the Spring Boot project. pom.xml   org.springframework.boot spring-boot-starter-data-jpa org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-devtools runtime true mysql mysql-connector-java runtime org.projectlombok lombok true    application. properties   server.port=8025 spring.datasource.url=jdbc:mysql://localhost:3306/princedb spring.datasource.username=root spring.datasource.password=root spring.jpa.hibernate.ddl-auto=create-drop MySqlWithSpringBootApplication.java   package com.app; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class MySqlWithSpringBootApp...

Generate Documentation for Spring Boot API with swagger and Open API 3

 ðŸ˜‚ How to Generate Documentation for Spring Boot API project Make sure your Project having a swagger or open API 3 Dependency then only you get proper Documentation for your Service. ---------------------------------------------------------------------------- Every method or API above you have to Write Like that then only you get proper Documentation If you do everything in your Application and Run your Application and go to browse and search. . http://localhost:8080/v3/api-docs/ if you want to learn more go with this one.  Open API-3   1. For Return List of Object then you have to use this API operation  @Operation(summary = "This will fetch List of Patient Detailas base on Hospital Name") @ApiResponses(value = { @ApiResponse(responseCode = "200", description = "Successfully fetch All Patient Details from Database ", content = {  @Content(mediaType = "application/json" ,array = @ArraySchema(schema =@Schema(implementation =PatientDe...

How can we create Auto generated field or ID for mongodb using spring boot

😂 How can we create an Auto-generated field or ID for MongoDB using spring boot? First Create One Application Like Mongodb_sequence-id-generator Pom.XML org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-data-mongodb de.flapdoodle.embed de.flapdoodle.embed.mongo User.java package com.app; import org.springframework.data.annotation.Id; import org.springframework.data.annotation.Transient; import org.springframework.data.mongodb.core.mapping.Document; @Document(collection = "users_db") public class User { @Transient public static final String SEQUENCE_NAME = "users_sequence"; @Id private long id; private String firstName; private String lastName; private String email; public User() { } public User(String firstName, String lastName, String email) { this.firstName = firstName; this.lastName = la...