The month of October in 2010 has five Fridays, five Saturdays, and five Sundays. The task Write a program to show all months that have this sa
Continue ReadingC++: Menu
Given a list containing a number of strings of which one is to be selected and a prompt string, create a function that: Print a textual menu form
Continue ReadingBest C Questions
[pt_view id="73f49b1b41"]
Continue ReadingC++: Display Color Bars
The task is to display a series of vertical color bars across the width of the display. The color bars should either use the system palette, or the se
Continue ReadingC++: Function Definition
A function is a body of code that returns a value. The value returned may depend on arguments provided to the function. Write a definition of a fun
Continue ReadingC++: Hello World Graphical
In this User Output task, the goal is to display the string "Goodbye, World!" on a GUI object (alert box, plain window, text area, etc.). Library:
Continue ReadingC++: Long Multiplication
In this task, explicitly implement long multiplication. This is one possible approach to arbitrary-precision integer algebra. For output, display t
Continue ReadingDifferences Between HashMap and Hashtable?
What are the differences between a HashMap and a Hashtable in Java? Which is more efficient for non-threaded applications? dmanxiii Answer: Th
Continue ReadingC++ Math
[pt_view id="28cf82d7fe"]
Continue ReadingC++: Enumerations
Create an enumeration of constants with and without explicit values. enum fruits { apple, banana, cherry }; enum fruits { apple = 0, b
Continue Reading




