This specification is intended to provide enough information for BIOS developers to Implement the
necessary extensions to allow their product s hardware and other system-related information to be
accurately determined by users of the defined interfaces.
Refer to the UML diagram above and Implement the Course class. After you define the Course class, you must create a Course object with the following details:
Programming I, WXES1114, taught by SMT.
Besides, your program must test all the accessor and mutator methods you had defined and the toString() method. toString() method is a special method inherited from the Object class. You have to override this method to display all the information about a course.
Implement the following integer methods:
a) Method celsius returns the Celsius equivalent of a Fahrenheit calculation
celsius = 5.0 / 9.0 * ( fahrenheit - 32 )
b) Method fahrenheit returns the Fahrenheit equivalent of a Celsius the calculation
fahrenheit = 9.0 / 5.0 * celsius + 32
c) Use the methods from parts (a) and (b) to write an application either to enter a Fahrenheit temperature and display the Celsius or to enter a Celsius temperature and display the Fahrenheit equivalent.
Bubble Oscillation Algorithm. It is used to Implement balancing load traffic, which is similar to what a semi-smart antenna can do. This algorithm was figured out by Lin Du who obtained PHD in Queen Mary, University of London.
Tasks
Read the textbook about the details of Vigenére Cipher.
Implement the algorithm by C or C++.
Requirements
You do this lab in a group of two students.
Your program should have input and output as follows:
csci>a.out
--> Please input the key:
receptive
--> Please input the plain text:
wearediscoveredsaveyourself
--> The cipher text is :
nicvtwqngfzgvtwavzvcqyglmgj
-->The original message is:
wearediscoveredsaveyourself
• You should test your program with several runs.