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

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...

#FibonacciNumberSeries Write a program of Fibonacci Number Series|| Fib...

Fibonacci Number Series ============================================ 0 1 1 2 3 5 8 13............. a=0; b=1; i=2; printf(a,b); while(i<=n){ c=a+b; printf(c); a=b; b=c; i++; } =========================================================================== import java.util.Scanner; class Fibonacci { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int n=sc.nextInt(); int a=0,b=1,c; System.out.print(a+" "+b); for(int i=2;i

In a new programming language how can store multiple types of data in a single variable OR is it possible how can store multiple types of data in a single variable in programming langauge

In a new programming language how can store multiple types of data in a single variable  OR is it possible how can store multiple types of data in a single variable in a programming language Here In a new programming language how can store multiple types of  data in a single variable   help you make the new  concepts, you are learning a programming  Languages really very important: Ideally Yes. If you create an Array of objects. Then it's possible to store any data type with it as an object is the base class. ArrayList can hold multiple types of data, but array doesn't. Variables Variables can be thought of as ‘containers’ for data. Each variable has to  have a unique name, so that you can refer back to it in the program. By using variables, we can refer to values that have not yet been defined.  For example, we can refer to the speed of the ball in different parts of the  game code, but calculate the ball speed later based on different input...