what's the basic's in dot net
No Answer is Posted For this Question
Be the First to Post Answer
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
what is a binary overloading
WHEN A COPY CONSTER IS CALL ?
when my application exe is running nad i don't want to create another exe what should i do
What is polymorphism programming?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
1. Define a class.
//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
What is difference between class and object with example?
What is the difference between class and structure?
Program to check whether a word is the first word of the sentence.