CIS 247 DEVRY FINAL EXAM 4 DIFFERENT VERSIONS
Visit Below Link, To Download This Course: http://bit.ly/2zxGtPg CIS 247 DeVry Final Exam (4 Different Versions) CIS247 CIS 247 DeVry Final Exam (4 Different Versions) Version 1 1. Design a class named Fan to represent a fan. The class contains: an int data field named speed that specifies the speed of the fan. A fan has three speeds indicated with a value 1, 2, 3. A bool data field named on that specifies whether the fan is on. A double data field named radius that specifies the radius of the fan. A no-arg constructor that creates a default fan with speed = 1, and radius = 10 The accessor and mutator functions for all the data fields. NOTE: JUST CREATE fan.h and fan.cpp – no need to create the main.cpp – I just want to see the design of the class. (Points : 18) 2. Create a class called person that can hold a person’s name and age – also use dateType from class exercises to hold the person’s birthday in the person class. Create the necessa...