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 |
What is general form of pure virtual function? Explain?
Can we run c program in turbo c++?
Can we make any program in c++ without using any header file and what is the shortest program in c++.
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.
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
Explain mutable storage class specifier.
Explain the differences between private, public and protected and give examples.
What are the unique features of C++.
What are the main features of c++?
What is the purpose of the noexcept keyword?
What is an action class?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}