python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How install new module in a Python library?
I have a Python library which works in a specific field, created to simulate several astronomical behaviours. This library it was made by my teacher, and now I've made another module with a new class ...
Gabriele Troviso
Votes: 0
Answers: 0
When should I make a subclass instead of instances of a class?
How do I know when to make something a class instead of an instance of a class? For example:
If I'm creating a space game (I'm not), and I want the environment to be the Universe, I'd write:
class Uni...
JakeSteffan
Votes: 0
Answers: 3
Store the details of employee and display the max salary using c++
I am trying to create a program that stores the data of employees and then displays the highest salary employee separately.
Here, What I had tried.
#include <iostream>
#include <limits>
#i...
ASHISH KUMAR
Votes: 0
Answers: 2
implementation of a C++ function of a class that uses other classes
typedef Map<int, char> StudentMap;
class SchoolManagementSystem
{
private:
SmarterArray<Student> studentList; //A SmarterArray to store the students in the school
SmarterArray<...
Subhranil Dey
Votes: 0
Answers: 1