Write a program to find the Fibonacci series recursively.
Is set c++?
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
What is the Maximum Size that an Array can hold?
55 Answers Adobe, FutureSoft, HCL, Infosys, Satyam, TCS, Wipro,
Explain what is polymorphism in c++?
Is it possible to have a recursive inline function in c++?
Difference between Top down and bottom up approaches for a given project ?
14 Answers BSNL, CSC, HCL, HP, IIT, Infosys, Siemens,
what you know about c++?
Which algorithm do you like the most? Why?
What is the difference between a copy constructor and an overloaded assignment operator?
4 Answers Belzabar, Citrix, Microsoft, Wipro,
Give an example of run-time polymorphism/virtual functions.
What is the default width for ouputting a long integer using the insertion operator?
Are there interfaces in c++?