100% de satisfacción garantizada Inmediatamente disponible después del pago Tanto en línea como en PDF No estas atado a nada 4.2 TrustPilot
logo-home
Examen

COS3711 Assignment 2 (COMPLETE ANSWERS) 2024 - DUE 18 July 2024

Puntuación
-
Vendido
1
Páginas
34
Grado
A+
Subido en
16-07-2024
Escrito en
2023/2024

Exam study book Advanced Programming Methodologies of Gianna Cioni, Andrzej Salwicki - ISBN: 9781483265452 (Guaranteed Success)

Institución
Grado











Ups! No podemos cargar tu documento ahora. Inténtalo de nuevo o contacta con soporte.

Libro relacionado

Escuela, estudio y materia

Institución
Grado

Información del documento

Subido en
16 de julio de 2024
Número de páginas
34
Escrito en
2023/2024
Tipo
Examen
Contiene
Preguntas y respuestas

Temas

Vista previa del contenido

COS3711 Assignment 2 (COMPLETE ANSWERS) 2024 - DUE 18 July 2024

Question 1

Study the following UML class diagram: The UML class diagram is an initial

design of classes for a conference registration application. There are three

types of registration allowed for the conference: standard registration, student

registration and invited guests registration. The standard registration fee is the

standard fee (stored in STANDARD_FEE). For those registered as students,

the conference fee is half the price of the standard registration fee. For those

registered as guests, the conference fee is 10% of the standard registration

fee. An instance of RegistrationList contains a list of Registration*. No two

registrations are allowed to have attendees with the same e-mail addresses,

unless the names are different. You should be able to query a RegistrationList

whether a person (by the name) is already registered for the conference. A

RegistrationList can also return the number of attendees that are registered

for the conference from an institution. Similarly, you can request the total

registration fees for a type (“Registration”, “StudentRegistration”,

“GuestRegistration” or “All”) of registration. You are expected to use Qt’s

metaobject system to access the type of a Registration in RegistrationList.

Downloaded by Corona Virus () lOMoARcPSD| Write a GUI application that

allows users to register for a conference. The GUI should display the current

list of registrations, including the respective registration fees, in the


For assistance with assignments whatsapp +254702715801

,RegistrationList at all times, using a table widget. The interface should also

allow users to request and view the results of the various operations

supported by the RegistrationList class. You are allowed to add new features

to the classes given in the UML diagram, although you are not allowed to

delete or change the given functions. You can decide on the design of the

GUI, and it can be done manually or using Qt Designer. You are expected to

follow good programming principles.

### Step 1: Define the Classes and Inheritance



Based on the UML diagram description, you will have the following classes:



1. **Registration** (base class)

2. **StandardRegistration** (inherits from Registration)

3. **StudentRegistration** (inherits from Registration)

4. **GuestRegistration** (inherits from Registration)

5. **RegistrationList** (manages a list of registrations)



Each class will have attributes and methods corresponding to the

requirements.



### Step 2: Implement the Classes


For assistance with assignments whatsapp +254702715801

,#### Registration Class

```cpp

class Registration {

public:

Registration(const QString &name, const QString &email);

virtual ~Registration() = default;

QString getName() const;

QString getEmail() const;

virtual double getFee() const = 0; // Pure virtual function

protected:

QString name;

QString email;

};



Registration::Registration(const QString &name, const QString &email) :

name(name), email(email) {}



QString Registration::getName() const { return name; }

QString Registration::getEmail() const { return email; }

```


For assistance with assignments whatsapp +254702715801

, #### StandardRegistration Class

```cpp

class StandardRegistration : public Registration {

public:

StandardRegistration(const QString &name, const QString &email);

double getFee() const override;

private:

static constexpr double STANDARD_FEE = 100.0; // Example fee

};



StandardRegistration::StandardRegistration(const QString &name, const

QString &email) : Registration(name, email) {}



double StandardRegistration::getFee() const {

return STANDARD_FEE;

}

```



#### StudentRegistration Class

```cpp


For assistance with assignments whatsapp +254702715801
$2.60
Accede al documento completo:

100% de satisfacción garantizada
Inmediatamente disponible después del pago
Tanto en línea como en PDF
No estas atado a nada

Conoce al vendedor
Seller avatar
timothykiage

Conoce al vendedor

Seller avatar
timothykiage Chamberlain College Of Nursing
Seguir Necesitas iniciar sesión para seguir a otros usuarios o asignaturas
Vendido
1
Miembro desde
2 año
Número de seguidores
1
Documentos
7
Última venta
1 año hace

0.0

0 reseñas

5
0
4
0
3
0
2
0
1
0

Recientemente visto por ti

Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes