What is the hardest coding language to learn?



What is the hardest coding language to learn?..

Answer / Md Akram

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 general form of pure virtual function? Explain?

1 Answers  


Can we run c program in turbo c++?

1 Answers  


Can we make any program in c++ without using any header file and what is the shortest program in c++.

1 Answers   MCN Solutions,


class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.

2 Answers   Quark,


Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?

1 Answers  


Explain mutable storage class specifier.

1 Answers  


Explain the differences between private, public and protected and give examples.

1 Answers  


What are the unique features of C++.

1 Answers  


What are the main features of c++?

1 Answers  


What is the purpose of the noexcept keyword?

1 Answers  


What is an action class?

1 Answers  


int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}

1 Answers  


Categories