i want the NIC programmer-B model papaer pattren, iwant the
all model papers?
Answers were Sorted based on User's Feedback
Answer / rajesh
Could please forward to me also on rajeshsresume@gmail.com
| Is This Answer Correct ? | 3 Yes | 6 No |
Answer / naveen sangwan
Also send me the question papers on
navin.sangwan@gmail.com
Thanks in advance
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / obul reddy
Plz send me NIC programmer-B model papaer pattren , my mail id:obulreddy103@gmail.com
| Is This Answer Correct ? | 0 Yes | 5 No |
Answer / jaspreet
please also send to my emaiil id jaspreet802@gmail.com
| Is This Answer Correct ? | 5 Yes | 11 No |
Answer / me
plese frowared mmy mail id ramakanthreddy75@gmail.com
| Is This Answer Correct ? | 10 Yes | 19 No |
Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?
Will c++ be replaced?
How do you save a c++ program?
what is C++ objects?
What are the advantages and disadvantages of using inline and const?
2 Answers Polaris, TCS, Zimmer Biomet,
Write a String class which has: 1) default constructor 2) copy constructor 3) destructor 4) equality operator similar to strcmp 5) constructor which takes a character array parameter 6) stream << operator
2 Answers HCL, Lehman Brothers, Zoomerang,
What is the importance of mutable keyword?
Write a C++ Program to Multiply two Numbers
Difference between inline functions and macros?
What do you mean by translation unit in c++?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What is constructor c++?