What's the hardest coding language?



What's the hardest coding language?..

Answer / Yogesh Shukla

The difficulty of learning a programming language can vary greatly depending on one's background and previous experience. Some languages are considered challenging due to their syntax, complexity, or specific use cases. Examples include Assembly, Lisp, and Prolog.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is the error in the code below and how should it be corrected?

1 Answers  


What is null pointer and void pointer?

1 Answers  


what is data Abstraction

2 Answers  


What is the difference between global variables and local variable

1 Answers  


class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable

1 Answers  


Explain one-definition rule (odr).

1 Answers  


If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?

1 Answers  


Where do I find the current c or c++ standard documents?

1 Answers  


What is the importance of mutable keyword?

1 Answers  


which is best institue to learn C/C++ IN AMEERPET OR MAITHRIVANAM OR SR NAGAR, PLEASE HELP. THANKS IN ADVANCE

5 Answers  


What is anonymous object in c++?

1 Answers  


In java a final class is a class that cannot be derived. How can you make a similar class in C++

1 Answers  


Categories