i want the NIC programmer-B model papaer pattren, iwant the
all model papers?
Answers were Sorted based on User's Feedback
Answer / deeps
drop me a mail at tech.ddinkar@gmail.com.
i would send u some sample paper for NIC.. u can also find the same on net.
~Deeps
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / appar agarwal
plz send me nic programmer-B model paper pattern, my email
id : apparagarwal@gmail.com
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / monu
please forward me also in pilot.foru@gmail.com..thanks in advance
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sourav joshi
please forword me on my mail-id jsourav98@yahoo.com
or joshisourav3@gmail.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / priya
Please forward the model question papers for nic
My MailId:dharshini12@gmail.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / tamanna
please forward thes papers to me also on
tamannakhanna01@gmail.com
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sneha singh
Plz send me NIC programmer-B model papaer pattren , my mail
id:sneha.singhbaghel@gmail.com
| Is This Answer Correct ? | 1 Yes | 2 No |
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
How do you clear a buffer in c++?
Why is c++ difficult?
You want to link a c++ program to c functions. How would you do it?
Which one between if-else and switch is more efficient?
Write a C program to calculate the salary of each employee in your company. You need to input the hours worked and the hourly rate. The company pays 1.5 times the hourly rate for all hours worked in excess of 48 hours. Use the formulas below to calculate the salary: if employee worked less than 48 hours salary = hours * rate; if employee worked more than 48 hours salary = 48.0 * rate + ( hours − 48.0 ) * rate * 1.5; You are required to use a loop to produce the sample output as given below.
How Virtual functions call up is maintained?
What is the difference between method and message?
what is pre-processor in C++?
You're given an array containing both positive and negative integers and required to find the sub-array with the largest sum (O(N) a la KBL). Write a routine in C for the above.
Write a program to find the Factorial of a number
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }