Tutor profile: Marvin D.
Questions
Subject: Python Programming
How is memory managed in python?
Python manages memory via the python private heap space. This means that all data structures and objects are located in the private heap which is inaccessible to the programmer, but available to the python interpreter. The heap space gets allocated and deallocated by the Python memory manager. Unused memory gets handled by the Python Garbage Collector.
Subject: Machine Learning
Machine Learning can be broken into categories of algorithms, what types of machine learning algorithms are there?
In Machine learning there are Supervised, Unsupervised, and Reinforcement based algorithms.
Subject: Javascript Programming
In Javascript nearly everything is considered an object, but what are the methods we have at our disposal to create objects?
We have several options available when creating objects in javascript, which are: 1. Object 2. creating a Class 3.creating a Method 4. Object Literals 5. creating a Function 6. Object Constructors