What is coupling in oops?
No Answer is Posted For this Question
Be the First to Post Answer
Child cObj = new Parent() Wahts the output ?
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
what is the difference between function template and template of function?explain with example.
#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort
which are the 4 members functions in c++ objects that can either be declared explicitly by programmer or implementation if nt available.
What is abstraction oop?
How do you define social class?
JAVA is FULLY OBJECT ORIENTED PROGRAMING LANGUAGE?
How to call a non virtual function in the derived class by using base class pointer
what is the function of 'this' operator ?
In multilevel inheritance constructors will be executed from the .... class to ... class
Get me an image implementation program.