Answer:
sympathetic
Explanation:
If you will have a go at Beowulf, you will find that Grendel is a dangerous demon for whom humanity means nothing, and people for him are just like something that is to be eaten. However, when you will have a go at Grendel, you will find that he is not just a beast without the brain, as he does have affection and conception.
I think it’s 92 I mean yh
Answer:
The solution of this question is given below in the explanation section.
Explanation:
To design a database for a new soccer club, the following sequence of activities will be carried out.
_____8_____Create the application programs.
_____4_____ Create a description of each system process.
_____9_____ Test the system. Load the database.
____7______ Normalize the conceptual model.
___1_______ Interview the soccer club president.
___6_______ Create a conceptual model using ER diagrams.
___2_______ Interview the soccer club director of coaching.
____7______ Create the file (table) structures.
____3______ Obtain a general description of the soccer club operations.
____5______ Draw a data flow diagram and system flowcharts.
The correct orders of activities the to design a soccer club database is given below:
- Interview the soccer club president.
-
Interview the soccer club director of coaching.
- Obtain a general description of the soccer club operations.
-
Create a description of each system process.
-
Draw a data flow diagram and system flowcharts.
- Create a conceptual model using ER diagrams.
- Create the file (table) structures.
- Normalize the conceptual model.
- Create the application program
- Test the system. Load the database.
#include <iostream>
#include <vector>
using namespace std;
class Student
{
public:
Student(int mark)
{
this->mark = mark;
if (mark >= 90 && mark <= 100)
grade = 'A';
else if (mark >= 80 && mark <= 89)
grade = 'B';
else if (mark >= 70 && mark <= 79)
grade = 'C';
else if (mark < 70 && mark >= 0)
grade = 'D';
else
cout << "Invalid mark, grade not assigned";
}
int getMark()
{
return mark;
}
char getGrade()
{
return grade;
}
private:
int mark;
char grade;
};
int main()
{
vector<Student> students;
int num, mark;
cout << "Enter number of students: ";
cin >> num;
if (num <= 0)
cout << "Invalid number of students, exiting";
else
{
for (int i = 1; i <= num; i++)
{
cout << "Enter marks for student " << i << ": ";
cin >> mark;
Student s(mark);
students.push_back(s);
}
}
// do whatever you like with the vector from here onwards, such as:
/*
for (int i = 0; i < students.size(); i++)
{
cout << "Student " << i + 1 << " grade: " << students[i].getGrade() << endl;
}
*/
return 0;
}