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 |
Which is not a valid keyword a) public b) protected c) guarded
What is a singleton class c++?
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"?
what is oops
When do we run a shell in the unix system?
How to construct virtual constructor
6 Answers CIStems Software, Symphony,
What is the difference between "calloc" and "malloc"?
Define copy constructor.
What does namespace mean in c++?
What is scope operator in c++?
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];
Define 'std'.