Given two strings like x=?hello? and y=?open?, remove any
character from string x which is also used in string y,
thus making the result x=?hll?.
Answer Posted / shilpa
x="hello", y="open"
so we have to remove e and o from x, so its hll
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
What are the 5 oop principles?
What is polymorphism and its types?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
What is encapsulation with real life example?
Can we override main method?
explain sub-type and sub class? atleast u have differ it into 4 points?
What is the real life example of polymorphism?
Please send ford technologies placement paper 2 my mail id
What is debug class?what is trace class? What differences are between them? With examples.
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 an example of genetic polymorphism?
Who invented oop?
Is oop better than procedural?
What is class and example?
What is inheritance write a program to show use of inheritance?