Skip to main content

Posts

Showing posts from June, 2014

What Is (Are) Your Strengths? - Interview Answers

This is a simple and popular interview question. Generally people answer it in two ways. There are people who simply state their strength like “I am Young, Dynamic, Intelligent, Smart and so on…”. Such answer is neither right nor wrong but does not help u in any way also. Secondly there are peoples who state their strengths and explain them how he can use his strength for the job and industry. Do not simply state your strength. Everyone has some strength, all you need is to convert them into benefits. In short, try to advertise yourself by converting your features into strengths. “EVERYONE CLAIM THEY ARE HONEST, HARDWORKING, SMART AND SO ON….. BUT WITH AN EXAMPLE IT IS MUCH MORE BELIEVABLE.” Your answers can be : 1) I am a hard worker and because of this ability I can work for additional hours to accomplish my tasks.I am commitment oriented and hence I always enjoy the trust and confidence of my team mates which enables me to perform my duties very easily. 2) I am a

Where Do You See Yourself Five (5) Years From Now? - Interview Answers

Well this is a similar question to the short term goals question but you need to answer them differently. Your answer can be: 1) I see myself as a Senior Software Engineer in your esteemed organization where by with all my enhanced learning and skill, I shall be able to make up a valuable and meaningful contribution to your organization. 2) In five years , I want to be a senior analyst (Senior Software Engineer/Manager/Lead). I want to expertise to directly impact the company in a positive way. 3) Although I really enjoy working as a Software Engineer, I want to eventually become a manager . I want to continue gaining experience, and after learning many different aspects, I see myself in management. ALSO READ THE ANSWERS FOR: - Tell Me Something About Yourself ? - What Are Your Strengths? - What Are Your Weaknesses? - How Do You Handle Pressure / Can You Work Well Under Pressure? - What are your short term goals/career aspirations? - What are your long te

C++ Program On Multilevel Inheritance-Accept & Display Details Of Employee/Student.

This is a sample C++ program on multilevel inheritance. Using Multilevel Inheritance, this program accept input from the user and displays the details of a student or employee. #include <iostream.h> #include <conio.h> #include <stdio.h> #include <math.h> class person {     private:        int age;        char name[20];     public:        void read()          {             cout<<" Enter Age & Name: ";             cin>>age;             gets (name);          }        void disp()          {             cout<<'\n'<<'\n'<<" ******Details Of Person****** "<<'\n'<<'\n';             cout<<" Age: "<<age<<'\n';             cout<<" Name: ";             puts (name);          } }; class student: public person {     private:        int rollno, clss, marks;     public:        void read()    

C++ Program On Inheritance-Accept Details Of A Student & Print Marks Percentage.

This is a sample C++ Program. using inheritance. Using Inheritance, this program accepts details of a student and print marks and percentage using inheritance. #include <iostream.h> #include <conio.h> class person {     private:         char name [20];         long int phone;     public:         void read ( )            {                cout << " Enter Name & Phone Number ";                cin >> name >> phone;            }         void show ( )            {                cout << "\n Name Is: " << name;                cout << "\n Phone Number Is: " << phone;            } }; class student : public person {     private:          int rollno;          char course [20];     public:          void read ( )            {                person :: read ( );                cout << " Enter The Roll Number & Course Name ";                cin >>

C++ Program On Hybrid Inheritance-Display Mark Details Of A Student.

This is a sample program using Hybrid Inheritance. Using Hybrid Inheritance, this program display mark details of a student. #include <iostream.h> #include <conio.h> class student {     private:         int rollno;         char name [20];     public:         void read ( )            {               cout << "\n Enter The Roll Number & Name: ";               cin >> rollno >> name;            }         void show ( )            {               cout << "\n Roll No = " << rollno;               cout << "\n Name = " << name;            } }; class exam_internal : public student {     protected:         int sub1_marks;         int sub2_marks;     public:         void read_marks ( )            {               cout << " Enter Internal Marks Of Subject 1 = ";               cin >> sub1_marks;               cout << " Enter Internal Marks Of S

C++ Program On Multiple Inheritence-Display Marks Of A Students.

This is a sample C++ program on Multiple Inheritance. Using Multiple Inheritance, this program will display marks of a students. #include <iostream.h> #include <conio.h> class student {     protected:         int rno,m1,m2;     public:         void get()           {               cout<<" Enter The Roll No: ";               cin>>rno;               cout<<" Enter The Marks Gained In Two Subjects: ";               cin>>m1>>m2;           } }; class sports {     protected:         int sm;     public:         void getsm()           {               cout<<"\n Enter The Marks Gained In Sports: ";               cin>>sm;           } }; class statement:public student,public sports {     int tot,avg;     public:         void display()           {               tot=(m1+m2+sm);               avg=tot/3;               cout<<"\n\n\t Roll No: "<<rno<<&qu

C++ Program On Function Overloading-Find Area of Cube, Sphere.

This is a sample C++ program on function overloading. Using function overloading, this program can find area of figure like Cube, Sphere. #include <iostream.h> #include <conio.h> #include <math.h> void volume (int); void volume (float); void main() {     int a, r,ch;     cout<<" *********MENU********* "<<'\n';     cout<<" 1. Cube "<<'\n';     cout<<" 2. Sphere "<<'\n';     cout<<" Enter Choice: ";     cin>>ch;     if (ch==1)        {            cout<<" Enter Side: ";            cin>>a;            volume(a);        }     else if(ch==2)        {            cout<<" Enter Radius: ";            cin>>r;            volume(r);        }     getch(); } void volume(int a)     {        cout<<" Volume Of Cube = "<<a*a*a<<'\n';     } void volume(

C++ Program On Operator Overloading-Cube Of A Number.

This is a sample C++ Program on Operator Overloading. Using Operator Overloading, this program will find Cube of a number. #include <iostream.h> #include <conio.h> class Calc {     public:        int operator ( ) (int num)          {              int cb = num * num * num;              return (cb);          } }; int main ( ) {     clrscr ( );     Calc cube;     int a, res;     cout<<" Enter A Number: ";     cin>>a;     res = cube (a);     cout<<" Cube Of " << a << " Is = " << res ;     getch ( );     return 0; } OUTPUT: Enter A Number: 6 Cube Of 6 Is = 216

C++ Program Using Operator Overloading-Add Complex Numbers

This is a sample program on operator overloading. Using operator overloading, here we add two complex numbers. #include <iostream.h> #include <conio.h> #include <iomanip.h> class complex {     private:        double real, img;     public:        complex ( )          {              real = img = 0.0;          }        void read ( )          {              cout<<"\n Enter Real & Imaginary Part: ";              cin >> real >> img;          }        complex operator + (complex cc2)          {              complex temp;              temp.real = real + cc2.real;              temp.img = img + cc2.img;              return (temp);          }        void show ( )          {              cout<<" The Sum Is: "<<'\n';              if (img > 0)                   cout<<real << "+" << img << "i" << endl;              else      

C++ Program On Operator Overloading-Compare Two Strings.

This is a sample program on operator overloading. Using operator overloading, here the user enters a string and compare it with a predefined string. #include <iostream.h> #include <conio.h> #include <string.h> class string {     char st [30];     public:        string ( )          {              strcpy (st, " ");          }        string (char s [ ] )          {              strcpy (st, s);          }        void display ( )          {              cout << st;          }        int operator >= (string);        void read ( )          {              cin >> st;          } }; int string :: operator >= (string ss2) {     if (strcmp (st, ss2.st) >= 0)        return (1);     else        return (0); } int main ( ) {     clrscr ( );     string s1 =" Hello World ";     string s2;         cout<<" Enter String: ";     s2.read ( );         if ( s1 >= s2)

C++ Program On Operator Overloading-Concatenate Two Strings.

This is a sample C++ program on Operator Overloading. Using Operator Overloading, here we will concatenate two strings. #include <iostream.h> #include <conio.h> #include <string.h> #define SIZE 40 class string {     char st [SIZE];     public:       string ( )         {            strcpy (st, " ");         }       string (char s[ ] )         {            strcpy (st, s);         }       void show ( )         {            cout << st;         }     string operator+ (string); }; string string :: operator+ (string ss2) { string temp; strcpy (temp.st, st); strcat (temp.st, ss2.st); return (temp); } int main ( ) { clrscr ( ); string s1 = "Good"; string s2 = "Day :)"; string s3; cout << " The Strings Before Concatenation Is \n "; cout << "String1 = "; s1.show ( ); cout << " \n String2 = "; s2.show ( ); s3 = s1 + s2; cout <&l

C++ Program On Constructor Overloading-Calculate Area Of Rectangle

This is a sample C++ program on Constructor Overloading. Using Constructor Overloading, here we calculate area of rectangles with default values. #include <iostream.h> #include <conio.h> class rectangle {     private:        int length, breadth;     public:        rectangle ( )         {             length = breadth = 0;             cout<<" Constructor With Zero Parameter Called .\n";         }        rectangle (int a)         {             length = breadth = a;             cout<<" Constructor With One Parameter Called. \n";         }        rectangle (int a, int b)         {             length = a; breadth = b;             cout<<" Constructor With Two Parameters Called. \n";         }        int area ( )         {             return (length*breadth);         } }; int main ( ) {     clrscr ( );     rectangle r1;     rectangle r2 (10);     rectangle r3 (10, 15);     cout<<

C++ Program On Friend Class-Find Mean Of Two Numbers.

This is a sample program On using Friend Classes. Using Friend class, here we try to find the mean of two numbers. #include <iostream.h> #include <conio.h> class num {     int a,b;     public:        void read()          {             cout<<" Enter Two Numbers: ";             cin>>a>>b;          }        friend void mean(num x)          {             int k;             k=(x.a+x.b)/2;             cout<<" Arithmetic Mean: "<<k;          } }; void main() {     clrscr();     num n;     n.read();     mean (n);     getch(); } OUTPUT: Enter Two Numbers: 18 12 Arithmetic Mean: 15

C++ Program Using Friend Class-Add Two Time Together.

This is a sample program using Friend Classes. Using Friend Classes, here we add two different time together & display the final time. #include <iostream.h> #include <conio.h> class time {     private:        int h, m, s;     public:        void read()          {              cout<<" Enter Time In Hours:Minutes:Seconds \n";              cin>>h>>m>>s;          }        friend void add(time t1, time t2, time t3)          {              t3.h=t1.h+t2.h;              t3.m=t1.m+t2.m;              t3.s=t1.s+t2.s;              if (t3.s>=60)                {                    t3.m+=t3.s/60;                    t3.s=t3.s%60;                }              if(t3.m>=60)                {                    t3.h+=t3.m/60;                    t3.m=t3.m%60;                }              cout<<"\n New Time: "<<t3.h<<" Hours "<<t3.m<<" Minutes "<&

C++ Program Using Encapsulation-Display Student Details.

This is a sample C++ Program On Encapsulation. Using Encapsulation, here we ask the user to input details and then display the details of a student. #include <iostream.h> #include <conio.h> #include <stdio.h> class student {    private:       int roll;       char name[25];    public:       void read()         {             cout<<" Enter Roll Number & Name Of The Student ";             cin>>roll;             gets(name);         }        void print()         {             cout<<" Roll Number & Name Of The Student Is: ";             puts(name);             cout<<roll;         } }; void main() {     clrscr();     student S;     S.read();     S.print();     getch(); } OUTPUT: Enter Roll Number & Name Of The Student: 25 Amrita Roll Number & Name Of The Student: 25 Amrita

C++ Program To Calculate Net salary.

This is a sample C++ Program to calculate net salary. Calculate net salary on the basis of basic salary (HRA & DA). #include <iostream.h> #include <conio.h> #include <stdio.h> class Emp {     char na[10];     int code, basic;     public:       void read()         {             cout<<" Enter Name, Code & Basic Salary: ";             gets (na);             cin>>code>>basic;         }       float cal()         {             float net;             float da,hra;             hra=basic*0.5;             da=basic*0.4;             net=basic+hra+da;             return(net);         }       void print()         {             cout<<'\n'<<" Details Of Employee: "<<'\n';             cout<<"********************"<<'\n';             cout<<" Code: "<<code<<'\n';             cout<<" Name: "&l

C++ Program Using Encapsulation-Display Book Details & Compute Costs.

This is a sample program on encapsulation, Using encapsulation here we display the details of a book and compute costs. #include <iostream.h> #include <conio.h> #include <stdio.h> class book {     int bookno;     float price;     char booktitle[100];     float total_cost(int n)       {          return (price*n);       }   public:     void input()       {          cout<<" Enter Book Number, Price & Name Of Book ";          cin>>bookno>>price>>booktitle;       }     void purchase()       {          int n;          cout<<" Enter Number Of Copies: ";          cin>>n;          cout<<" Total Cost: "<<total_cost(n);       } }; void main() {     clrscr();     book B;     B.input();     B.purchase();     getch(); } OUTPUT: Enter Book Number, Price & Name Of Book 15422 50 Two States Enter Number Of Copies:  2 Total Cost: 100

C++ Program To Output Details Of A Box Using Classes.

This is a sample program to output details of a box using classes. #include <iostream.h> #include <conio.h> #include <stdio.h> class box {    private:        int code;        char mat[10];        char col[10];        float price;    public:        void read();        void print(); }; void box::read() {     cout<<" Enter Code, Material, Colour & Price ";     cin>>code;     gets(mat);     gets(col);     cin>>price; } void box::print() {     cout<<" Code Of Box Is "<<code<<'\n'<<" Colour Is "<<col<<'\n'<<" Material Is "<<mat<<'\n'<<" Price Is "<<price; } void main() {     clrscr();     box b;     b.read();     b.print();     getch(); } OUTPUT: Enter Code, Material, Colour & Price 1128 Cloth Blue 35 Code Of Box Is 1128 Colour Is Blue Material Is Clo

C++ Program Using Encapsulation-To Find Area & Volume Of A Cube.

This is a sample program on encapsulation. Using encapsulation, here we find the characteristics of a cube. #include <iostream.h> #include <conio.h> class Cube {   int side;   int area, volume;   public:     void read()       {          cout<<" Enter The Side Of Cube: ";          cin>>side;       }     void print()       {          cout<<" *********Characteristics Of Cube********* "<<'\n';          cout<<" Area: "<<6*side*side<<'\n';          cout<<" Volume: "<<side*side*side;       } }; void main() {    Cube C;    C.read();    C.print();    getch(); } OUTPUT: Enter The Side Of Cube:9 *********Characteristics Of Cube********* Area: 486 Volume: 729