Which programming language should I learn first?



Which programming language should I learn first?..

Answer / Harish Kumar Yadav

There isn't a definitive answer, but many suggest starting with a beginner-friendly language like Python or JavaScript.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Which is not a valid keyword a) public b) protected c) guarded

1 Answers  


What is a singleton class c++?

1 Answers  


Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?

6 Answers   CSC,


what is oops

2 Answers  


When do we run a shell in the unix system?

1 Answers  


How to construct virtual constructor

6 Answers   CIStems Software, Symphony,


What is the difference between "calloc" and "malloc"?

9 Answers   ADP,


Define copy constructor.

1 Answers  


What does namespace mean in c++?

1 Answers  


What is scope operator in c++?

1 Answers  


If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];

3 Answers  


Define 'std'.

1 Answers  


Categories