|
INTERVIEW QUESTIONS
C++
C++ BASICS
DETAILS
Question: 1.write a grading program for a class a. there are two quizzes,each graded on the basis of 10 points b. there is one midterm exam and one final exam,each graded on the basis of 100 points c. the final exam for 50% of the grade,the midterm counts for 25%,and the two quizzes togather count for a total of 25%.(do not forgat to normalize the quiz scores they should be converrted before are averaged in.) define and use a class for the student record.
Answer: No answer available currently.
|
|
|
Category |
C++ Basics Interview Questions & Answers -
Exam Mode /
Learning Mode
|
Rating |
(0.3) By 6380 users |
Added on |
6/3/2018 |
Views |
56397 |
Rate it! |
|
|
Question:
1.write a grading program for a class a. there are two quizzes,each graded on the basis of 10 points b. there is one midterm exam and one final exam,each graded on the basis of 100 points c. the final exam for 50% of the grade,the midterm counts for 25%,and the two quizzes togather count for a total of 25%.(do not forgat to normalize the quiz scores they should be converrted before are averaged in.) define and use a class for the student record.
Answer:
No answer available currently. Be the first one to reply to this question by submitting your answer from the form below.
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.
|
|
Related Questions |
View Answer |
|
write aprogram in c++ to read the tokens in one at a time ,if it is integer,push it on stack, if it is binary operator, pop two elements from the stack, apply the operator to the two elements and push the result back on the stack??
|
View Answer
|
|
write function push () of stack that it doubles the length of the array when the array is full
|
View Answer
|
|
How do you specify a custom attribute for the entire assembly (rather than for a class)?
|
View Answer
|
|
I was trying to use an out int parameter in one of my functions. How should I declare the variable that I am passing to it?
|
View Answer
|
|
What is meant by software development method?
|
View Answer
|
|
What do you meant by static and dynamic modeling?
|
View Answer
|
|
Why generalization is very strong?
|
View Answer
|
|
What are the advantages of OOPL?
|
View Answer
|
|
What are inner class and anonymous class?
|
View Answer
|
|
What is a default constructor?
|
View Answer
|
|
How do you link a C++ program to C functions?
|
View Answer
|
|
What is abstraction?
|
View Answer
|
|
What is a class?
|
View Answer
|
|
What is the difference between an object and a class?
|
View Answer
|
|
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?
|
View Answer
|
|
What is Boyce Codd Normal form?
|
View Answer
|
|
Explain term POLIMORPHISM and give an example using eg. SHAPE object: If I have a base class SHAPE, how would I define DRAW methods for two objects CIRCLE and SQUARE
|
View Answer
|
|
What is the difference between class and structure?
|
View Answer
|
|
Define a constructor - What it is and how it might be called (2 methods).
|
View Answer
|
|
Write a short code using C++ to print out all odd number from 1 to 100 using a for loop
|
View Answer
|