Create a list which contains float elements and then perform insert, delete, display, search and exit operations
You are given the temperature T of an object in one of Celsius, Fahrenheit, and Kelvin scales. Write a program to print T in all scales viz Celsius, Fahrenheit, and Kelvin. Formula to convert from Fahrenheit F to Celsius C is C = (F - 32) * 5 / 9. Formula to convert from Kelvin K to Celsius C is C = K - 273
Write a menu driven program to perform the following operations in a double linked list by
using suitable user defined functions for each case.
a) Traverse the list forward
b) Traverse the list backward
c) Check if the list is empty
d) Insert a node at the certain position (at beginning/end/any position)
e) Delete a node at the certain position (at beginning/end/any position)
f) Delete a node for the given key
g) Count the total number of nodes
h) Search for an element in the linked list
Verify & validate each function from main method.
Consider the following data:
Objective function to maximize: 300 X + 700 Y
Subject to Constraints:
150 X + 100 Y <= 2800
24 X <= 400
15Y <= 60
Find an optimal solution using:
Excel solver.
Corner point solution method.
Has to be solved using excel.