Lists the attributes of the dataset reuters grain-train.arff grouped by attribute type (numeric, nominal…)
Describes the "reuters grain-train.arff "dataset in weka . In the description include who donated it, the purpose of creation, previous uses in scientific articles, description of attributes.
Write a program for the memory management.
Write c++ program that
(1) Write a program that declares a single-dimensional arrays named num.
(2) The numbers to be stored in num are 45, 86, 12, 37, 28, 113.
(3) Sum odds and evens separately.
(4) Finally, give the results that will be displayed on the screen.
(5)run test it in main
Write a program that reads in a sequence of characters and prints them in reverse order (Use a stack).
Given an array array[], its starting position l and its ending position r. Sort the
array using Bucket Sort algorithm.
8
Input: N = 10
array[] = {10 9 7 8 6 2 4 3 5 1}
Output: 1 2 3 4 5 6 7 8 9 10
Write a program on write an algorithm to find the total number of units of memory allocated or dellocated by the senser 1 after processing all the request
School Library system
Problem Statement
You are a young tech-entrepreneur who provides technology solutions to challenges faced in the education sector of your country. You decide to build a school library management system that will allow a student to get registered, request to borrow a book from the library through the system and also put in a request to return the book, and a Librarian who will be there to approve requests and accept/check in returned books and update the system.
Required
1.
A Librarian should be able to do all the minimum roles stated, which are:
e.Change/Updatetheirownloginpassword.
f. Fine the students by debiting their library account balance if they have exceeded the number of days that they were to return book. (optional functionality)
Problem Statement
You are a young tech-entrepreneur who provides technology solutions to challenges faced in the education sector of your country.You decide to build a school library management system that will allow a student to get registered,request to borrow a book from the library through the system and also put in a request to return the book, and a Librarian who will be there to approve requests and accept/check in returned books and update the system.
Required
1.A Librarian should be able to do all the minimum roles stated, which are: a. Login to the system. b. Register a student user to the system i. On top of basic personal details (username and password), it is a must to have student deposit a flat fee of 1000 shillings in the student’s library account. c. Approve student’s request to borrow/rent out a book d. Accept returned book and update system.
Create a class “patient” with data members Patient_id and Oxygen_level.
Create another class “covid” with character data member “test” (this can take value either ’p’ or ‘n’). Data members of both the classes should be initialized using constructor.
Class “oxygen_supply” is inherited from both the above classes. Include member function eligibility_supply which checks whether a patient needs oxygen supply or not.
If the patient has tested to positive(‘p’) and Oxygen_level is below 90, then print “patient needs oxygen supply”.
If the patient has tested to negative(‘n’) and Oxygen_level is below 90, then print “patient needs oxygen supply”.