I have project on round robbin scheduling so I want any real life example that is related to round robbin scheduling with c++ source cde
The possible denominations of currency notes are 100, 50, 20 and 10. The amount A to be withdrawn is given as input. Write a program to break the amount into minimum number of bank notes.
Input
The first line of input is an integer A
Output
The output should be a string representing number of 100, 50, 20, 10 notes possible.
Explanation
if amor
no
am
9 if amo
18
Write a PHP/HTML script and design MySQL database to achieve the following;
Create a user database with two fields (i.e. studid and pwd) and populate it with four records.
Create HTML form to accept StudentIDs and Passwords.
Create a Cookie and add these four records (i.e. Student IDs and passwords) to this Cookie.
Read the student IDs and passwords entered in the login page and authenticate with the values (i.e. Student IDs, Password) available in the cookies. The Student should be welcomed by Student ID if both Student ID and Password match else the script should reject the user with an error message.
Director office requires applications from students for the award of scholarship. Each student is required to submit reg no, name, semester and capa in the last semester. The form recived are placed one over the other initially the administration don't know how many student will apply After reciving all the applications the administration check each application and formulate a list of students whose cgpa is more than 3.8 This list contains the student on top who applied first You are required to implement this senarioin C++ Assuming primitive functions are already given.
Given the definition of Laptop class as follows:
public class Laptop
{
private String brand; //HP, Acer, ASUS
private double price; //price per unit
private int RAM; // memory space in GigaByte(GB),e.g:2,4
private int USBport; //number of USB port e.g:2, 3, 4
//normal constructor: public Laptop (String, double, int, int)
//processor method: upradeRAM(int)
//accessors: getBrand (), getPrice(), getRAM(), getUSB()
}
A processor method named upragedRAM(int) that receive the size of RAM to be upgraded as its parameter. This method will determine and return the price of RAM based on the following table:
RAM Size Price(RM)
8GB 98.00
16GB 299.00
3. Write main program :
a. Declare an array of objects named Laptops that store 10 laptop objects.
b. Ask user to enter all information required and store the data in the array above.
c. Calculate and display the total price of all Acer laptops
d. Display the brand of laptop thatt provides 4 USB ports
We've had enough about numbers, so why don’t we try evaluating characters now?
If you know how to identify what the vowel letters are, and you know how to count up to 5, then you’re good to go!
Instructions:
arr1 = ["january","february","march","april","may","june"]
arr2 = ["july","august","septmber","october","november","december"] print first 3 array items
Write a function called area_circumference_generator that takes a radius of a circle as a function parameter and calculates its circumference and area. Then returns these two results as a tuple and prints the results using tuple unpacking in the function call accorrding to the given format.
[Must use tuple packing & unpacking]
Create a database console application to perform the following applications.
a) Define a dictionary to store details for library books consisting of book id or title author name, year of publication and publisher.
b) Show how the information can be stored in a SQLite or MySQL database named books, retrieved by book id or author name, update using any book id or title and deleted using book id or title.
c) Handle all exceptions and validate data entry.