Sponsored Links

Interview Questions



INTERVIEW QUESTIONS C++ OBJECT ORIENTED PROGRAMMING IN C++ DETAILS

Question: How to write a program to read sequences of integer from keyboard.program should sum all even and odd numbers?

Answer: ANSWER IN THE FORM OF A SMALL PROGRAM :
#include<iostream.h>
#define MAX 50
void main()
{
int a[MAX],i,n,seven=0,sodd=0;
cout<<"
How many nos u wish to enter (max=50)";
cin>>n;
for(i=0;i<n;i++)
{
cin>>a[i];
}
i=0;
while(i!=n)
{
if(a[i]%2==0)
seven=seven+a[i];
else
sodd=sodd+a[i];

i++;
}
cout<<"
RESULT IS :";
cout<<"
Even sum is:"<<seven;
cout<<"
Odd sum is :"<<sodd;
getch();
}

Category Object Oriented Programming in C++ Interview Questions & Answers - Exam Mode / Learning Mode
Rating (0.3) By 6519 users
Added on 6/26/2013
Views 69919
Rate it!

Question: How to write a program to read sequences of integer from keyboard.program should sum all even and odd numbers?

Answer:

ANSWER IN THE FORM OF A SMALL PROGRAM :
#include<iostream.h>
#define MAX 50
void main()
{
int a[MAX],i,n,seven=0,sodd=0;
cout<<"
How many nos u wish to enter (max=50)";
cin>>n;
for(i=0;i<n;i++)
{
cin>>a[i];
}
i=0;
while(i!=n)
{
if(a[i]%2==0)
seven=seven+a[i];
else
sodd=sodd+a[i];

i++;
}
cout<<"
RESULT IS :";
cout<<"
Even sum is:"<<seven;
cout<<"
Odd sum is :"<<sodd;
getch();
} Source: CoolInterview.com

Answered by: SWAPNA SONI | Date: 6/30/2008 | Contact SWAPNA SONI Contact SWAPNA SONI

#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int n,i,x,even=0,odd=0;
printf("enter the number of integers to be entered:");
scanf("%d"&n);
for(i=0;i<n;i++)
{
printf("enter number %d:",i);
scanf("%d",&x);
if((x%2)==0)
even=even+x;
else
odd=odd+x;
}
printf("sum of all even numbers:%d",even);
printf("
sum of all odd numbers:%d",odd);
getch();
} Source: CoolInterview.com

Answered by: sumana | Date: 7/1/2008 | Contact sumana Contact sumana

#include<stdio.h>
#include<conio.h>

void main()
{
int a[10],i,es=0,os=0;
clrscr();
printf("Enter 10 elements
");
for(i=0;i<10;i++)
scanf("%d",&a[i]);
for(i=0;i<10;i++)
{
if(a[i]%2==0)
es+=a[i];
else
os+=a[i];
}
printf("Even Sum = %d
Odd Sum = %d
",es,os);
getch();
} Source: CoolInterview.com

Answered by: Naushad | Date: 7/2/2008 | Contact Naushad Contact Naushad


If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
  • There should not be any Spelling Mistakes.
  • There should not be any Gramatical Errors.
  • Answers must not contain any bad words.
  • Answers should not be the repeat of same answer, already approved.
  • Answer should be complete in itself.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification Enter the above shown code: *
Inform me about updated answers to this question

Related Questions
View Answer
As an electric engineer choose a suitable electric engine to work in an electric metro. the power of engine is velated to the maximum speed of the metro as folloe:
0<v_max<=50km/hr. ip=0,5v_max^(2)
50<v_max<=100km/hr. ip=0,25 v_max^(2,5)+200
100<v_max. ip=2v_max^(3)
choose the suitable motor and state the corre speeding power of the motor.
View Answer
What is the object-oriented design,inheritance and dynamic polymorphism in c++?
View Answer
A positive integer entered through the keyboard. Write a function to obtain the prime factors of this number.
For example : prime factors of 24 are 2,2,2 and 3,, where as prime factor of 35 are 5
View Answer
When do we use abstract.h?Give an example with a small program.
View Answer
Write a program on abstract class.
View Answer
Write a C++ program that contains a structure named “Student” having two data members

1) Name

2) CGPA
Declare array of structure “Student” of size 10 .Populate this array by taking data from file inputFile.txt.File inputFile.txt contains Name and CGPA of the students for current semester. There is a single space between the Name and CGPA.

Display the un-sorted list of students on screen. Compare the CGPAs of all the students and sort Student List with respect to CGPA in ascending or descending order.

Display the sorted list of students, highest CGPA and lowest CGPA on screen and also write the result in File outputFile.txt with tab characters between the Name and CGPA.
Sample InputFile.txt
Ahmer 4.0

Aasim 3.5
Usman 3.4
Maria 2.4
Anila 3.0
Humza 2.6
Junaid 3.0
Talaal 3.8
Haris 3.9
Saira 2.6
Sample OutputFile.txt

Sample outputFile.txt





Name CGPA

===============

Maria 2.4

Humza 2.6

Saira 2.6

Anila 3.0

Junaid 3.0

Usman 3.4

Aasim 3.5

Talaal 3.8

Haris 3.9

Ahmer 4.0

===============

Highest CGPA = 4.0

Lowest CGPA = 2.4

































Sample output of screen:



Unsorted List of Students

Name CGPA

Ahmer 4.0

Aasim 3.5

Usman 3.4

Maria 2.4

Anila 3.0

Humza 2.6

Junaid 3.0

Talaal 3.8

Haris 3.9

Saira 2.6



Sorted List of Students

Name CGPA

===============

Maria 2.4

Humza 2.6

Saira 2.6

Anila 3.0

Junaid 3.0

Usman 3.4

Aasim 3.5

Talaal 3.8

Haris 3.9

Ahmer 4.0

===============

Highest CGPA = 4.0
Lowest CGPA = 2.4
View Answer
create six large matrices in subprogram (100*100) two static and three stack dynamic ...fill two static,two stack matrices with random numbers 1 to 100 ..the code in subprogram must perform large matrix multiplication on static matrices and should repeat this with stack dynamic ...compare and explain result?
View Answer
How can I set the background in flash like camera?( black color that some times for a specific time your background becomes white)
View Answer
HI, THIS PROGRAM MUST BE SUBMMITED AS SOON AS POSSIBLE.MAY YOU PLEASE HELP ME TO TACKLE IT ? I’LL BE VERY PLEASE IF I CAN GET HELP.





MULTICHOICE VIDEO RENTAL SHOP needs an Object Oriented program that process the following information about ten (10) videos in their stock
• The title, the director, the year produced and a list of main actors for each video. (If there are more than five main actors, include only the five most famous actors)
• The function setVideo that input information into each video object
• The function getVideo that displays information of a particular video on the screen
• A customer (identified by ID) plus his full names and address can borrow at most 2 videos @ R12.50 per day. A penalty of 10% per day is charged if returned late. The borrow period is at most 7 days
• Video titles should not exceed 25 characters in length. If that happens, truncate the length to a most 25 characters
• A video should be checked if is not rented out before borrow transaction is processed. If borrowed out the customer should either be requested for the second choice or be advised when the video is expected back in the shop
• Failure for the shop to receive the video back within 7 days, is considered permanent loss and the customer is liable to a R400.00 compensation fee
• Information about the number of films in stock at any point in time should be readily available
• At the end of business, a report should be generated showing
o Which films are rented out and when are they due
o To which customers they are borrowed to
o Which videos are left in stock
o How much money was collected for the day
Generate your own test data that will test all cases to illustrate the accuracy and consistency of your program

View Answer
what are the disadvantages of copy constructor??
View Answer
Can the structures contain the constructor?
If yes, then how?
View Answer
What is an object?


View Answer
What will happen if I say delete this


View Answer
What are the different types of polymorphism?



View Answer
How can we define a dynamic memory allocation in UNIX operating system?

View Answer
What is abstraction?
View Answer
What do you mean by binding of data and functions?
View Answer

Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.

View All Object Oriented Programming in C++ Interview Questions & Answers - Exam Mode / Learning Mode



User Options
India News Network

Latest 20 Questions
Payment of time- barred debt is: (a) Valid (b) Void (c) Illegal (d) Voidable
Consideration is defined in the Indian Contract Act,1872 in: (a) Section 2(f) (b) Section 2(e) (c) Section 2(g) (d) Section 2(d)
Which of the following is not an exception to the rule, "No consideration, No contract": (a) Natural love and affection (b) Compensation for involuntary services (c) Completed gift (d) Agency
Consideration must move at the desire of: (a) The promisor (b) The promisee (c) The promisor or any other party (d) Both the promisor and the promisee
An offer which is open for acceptance over a period of time is: (a) Cross Offer (b) Counter Offer (c) Standing Offer (d) Implied Offer
Specific offer can be communicated to__________ (a) All the parties of contract (b) General public in universe (c) Specific person (d) None of the above
_________ amounts to rejection of the original offer. (a) Cross offer (b) Special offer (c) Standing offer (d) Counter offer
A advertises to sell his old car by advertising in a newspaper. This offer is caleed: (a) General Offer (b) Special Offer (c) Continuing Offer (d) None of the above
In case a counter offer is made, the original offer stands: (a) Rejected (b) Accepted automatically (c) Accepted subject to certain modifications and variations (d) None of the above
In case of unenforceable contract having some technical defect, parties (a) Can sue upon it (b) Cannot sue upon it (c) Should consider it to be illegal (d) None of the above
If entire specified goods is perished before entering into contract of sale, the contract is (a) Valid (b) Void (c) Voidable (d) Cancelled
______________ contracts are also caled contracts with executed consideration. (a) Unilateral (b) Completed (c) Bilateral (d) Executory
A offers B to supply books @ Rs 100 each but B accepts the same with condition of 10% discount. This is a case of (a) Counter Offer (b) Cross Offer (c) Specific Offer (d) General Offer
_____________ is a game of chance. (a) Conditional Contract (b) Contingent Contract (c) Wagering Contract (d) Quasi Contract
There is no binding contract in case of _______ as one's offer cannot be constructed as acceptance (a) Cross Offer (b) Standing Offer (c) Counter Offer (d) Special Offer
An offer is made with an intention to have negotiation from other party. This type of offer is: (a) Invitation to offer (b) Valid offer (c) Voidable (d) None of the above
When an offer is made to the world at large, it is ____________ offer. (a) Counter (b) Special (c) General (d) None of the above
Implied contract even if not in writing or express words is perfectly _______________ if all the conditions are satisfied:- (a) Void (b) Voidable (c) Valid (d) Illegal
A specific offer can be accepted by ___________. (a) Any person (b) Any friend to offeror (c) The person to whom it is made (d) Any friend of offeree
An agreement toput a fire on a person's car is a ______: (a) Legal (b) Voidable (c) Valid (d) Illegal



Fresher Jobs | Experienced Jobs | Government Jobs | Walkin Jobs | Company Profiles | Interview Questions | Placement Papers | Companies In India | Consultants In India | Colleges In India | Exams In India | Latest Results | Notifications In India | Call Centers In India | Training Institutes In India | Job Communities In India | Courses In India | Jobs by Keyskills | Jobs by Functional Areas

Testing Articles | Testing Books | Testing Certifications | Testing FAQs | Testing Downloads | Testing Interview Questions | Testing Jobs | Testing Training Institutes

Gate Articles | Gate Books | Gate Colleges | Gate Downloads | Gate Faqs | Gate Jobs | Gate News | Gate Sample Papers | Gate Training Institutes

MBA Articles | MBA Books | MBA Case Studies | MBA Business Schools | MBA Current Affairs | MBA Downloads | MBA Events | MBA Notifications | MBA FAQs | MBA Jobs
MBA Job Consultants | MBA News | MBA Results | MBA Courses | MBA Sample Papers | MBA Interview Questions | MBA Training Institutes

GRE Articles | GRE Books | GRE Colleges | GRE Downloads | GRE Events | GRE FAQs | GRE News | GRE Training Institutes | GRE Sample Papers

IAS Articles | IAS Books | IAS Current Affairs | IAS Downloads | IAS Events | IAS FAQs | IAS News | IAS Notifications | IAS UPSC Jobs | IAS Previous Question Papers
IAS Results | IAS Sample Papers | IAS Interview Questions | IAS Training Institutes | IAS Toppers Interview

SAP Articles | SAP Books | SAP Certifications | SAP Companies | SAP Study Materials | SAP Events | SAP FAQs | SAP Jobs | SAP Job Consultants
SAP Links | SAP News | SAP Sample Papers | SAP Interview Questions | SAP Training Institutes |




Copyright ©2003-2024 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions