Skip to main content

Featured

The STEM Revolution: From Classrooms to Code Camps

  In Nepal, the "STEM Revolution" represents a significant departure from memorization and a move toward experiential, hands-on science, technology, engineering, and math education. This approach recognizes that although traditional classrooms are fundamental, they frequently fail to provide students with the critical thinking and problem-solving abilities that the modern world requires.  It is motivated by a shared understanding that in order for Nepal's youth to prosper in the digital era, they must not only comprehend ideas but also learn how to use them creatively to address pressing issues. Making education relevant and enabling students to be creators of technology rather than merely consumers are the goals of this revolution. Dynamic, unofficial learning settings like maker spaces, robotics clubs, and programming camps are at the core of this movement. These programs, which are frequently run by neighborhood tech companies and non-profits, act as dynamic centers...

Which programming language should you learn at first?

There are many programming languages like C/C++, java, python, php etc. But the question is from which we can start that we can gain confidences that I can learn other programming language easily. Yes, this question is valid question. There are programming language but the easier and very fast to learn is python.

Python is one of popular programming language which allow you to create program in short code. For this let us take a example between python and C language to display "Hello world"

In C language to display "Hello world"

#include <stdio.h>

int main(){

printf("Hello world");

return 0;

In Python to display "Hello world";

print("Hello world")



From the above we can understand that by using python code is less. So we should not write very much of code to do something.

So, in my opinion we should learn python at first language. But if in your school or college other programming language has been taught that you should learn that first. You can learn python side wise.


Afterwards you can learn other programming language like java, php, etc.

Comments

Popular Posts