We now have remedies for both of these issues. For this program we will create a bunch of student objects, and we’ll have a dictionary that holds a collection of these student objects. That is, the dictionary will represent a course the students are enrolled in. Using a class will allow us to keep both …
Category: Computer science and IT assignments
Python assignment
Submitted a .txt file with 10 different languages, each one on a new line.Submitted a python file that demonstrates:A linear search for a specific world language.An insertion sort function.A print() command that shows how the list has been sorted in alphabetical order.
Hashing Assignment
The solutions for each part just needs to follow the guidelines in the pdf provided. I will provide the pdf file which contains the assignment itself and what to do, and c++ files of code to go along with the pdf. In some cases you will just need to modify the code and in others …
Create Ethereum token, smart contract, metamask
1. Refer to the Power point and PDF is uploaded. Will need to follow steps. 2. Create your own Crypto-token and smart contract, following the step by step procedures given in the book, and upload screenshots of your Ether token and contract address using etherscan.io and the metamask plugin. 3. When creating accounts for me …
Ruby console project
Implement a Bread making machine. Each machine has a brand and a name. A machine has the possibility to select from a few pre-established bread types: white, with grains and integral. In the bread composition there is flour, water and yeas. To these it can be added oil, milk, salt, sugar or dried fruits. There …
ELF Loader
The explanation for the task (in Romanian, translate in English)https://ocw.cs.pub.ro/courses/so/teme/tema-3 Skeleton which they gave us is in 3-loader. The file to be modified is loader.chttps://github.com/systems-cs-pub-ro/so-assignments What I have done by now I uploaded as an attachment.
Operating Systems class: A program to compare the performance of the Round Robin, non-preemptive Shortest Job First, and SRTF scheduling algorithms
Objectives: Write a program to compare the performance of the Round Robin, non-preemptive Shortest Job First, and SRTF scheduling algorithms. Details: Input: A file of processes and related CPU burst times and arrival times. There will be no header in the file and each line will be of the form, “<processID> <burst time> <arrival time>” …
Python polymorphism
About: Python polymorphism Task: Numerical simulation of orbits The task is to simulate orbits through numerical integration (described below). By swapping one object with another, you can change behavior without changing the other objects. The system will consist of two components: – Function objects. These represent the function to be integrated. In this exercise you …
class Exercise 01
ProblemWrite Java class for a Tree class. This class must have methods to default constructorset and get the type (coniferous, deciduous, dead)set and get the variety (for example apple, maple, etc.)set and get the ageset and get the heightset and get the valuetoString method that returns all of the tree information as a stringRemember you …
unit converter using c language
Design and write a C language program that can be used as a unit converterapplication. Your unit converter should contain at least four unit categories,for example: length, mass, temperature, and time.The program should display the main menu that contains unit categories that areavailable, and the user will be prompted to select a unit category first. …