**C++**
plz use online
Q2: Write a main function that does the following: (25 marks) 1. Has array of lines, where array size is 18. Input using loop values inside the objects of lines array. Make your values as the following: for line 1 AAAAAA, for line 2 "BBBBBB, for line 3 "CCCCCC" and so on. (4 marks) 2. define an array of pages of size 6. add 3 lines per page from lines array defined in point 1. First 3 lines go to first page, second 3 lines go to second page and so on. (4 marks) 3. Define two book objects bl, and b2 where bl has first 2 pages while b2 has last 3 pages. Use AddPage function to add the specified pages for each book. (4 marks) 4. Print the pages inside b2. (1 marks) 5. Print the total number of pages added in both books (bl and b2) (1 marks) 6. Print which book has more pages, and which book has more lines B1 or B2. (4 marks) 7. Define book class pointer variable. Create a new book object and make the pointer point to it. Use AddPage function to add pages 2,3,4 and 5 to the book. ( 5 marks) 8. Delete last object that was created dynamically. (2 marks) o Q1: Implement the following classes: Line class, where each line has (22 marks) attribute content (as private string). (2 marks) Default and initializer constructors (4 marks) destructor, (2 marks) setters and getters (4 marks) Define print function that prints line contents. (2 marks) Void concat(line &12), which concatenates the two lines contents and empty the received one. (4 marks) HasSameContent(Line &12) which compares two objects and returns back true if they both have the same exact content. (4 marks) Page class where each page has (23 marks) two private members: 1) array of 30 lines and 2) page number. (2 marks) The constructor should initialize the lines to empty string and page number to 0. (2 marks) Destructor (2 marks) Setters (lines and page number) and one getter for page number (6 marks) AddLine member function that receives a line object and adds it to current page. The line will be added after last non-empty line. If number of lines is already 30, it will display a message "cannot add line, page is full". (4 marks) print function that prints page lines line by line. (3 marks) HasMoreLines(Page &p2) which compares the two pages and return back true if original object has more Lines than object p2. (4 marks) Book class, where each book has (30 marks) private attributes: 1)a dynamic array of pages, 2) the current number of pages. (2 marks) Constructor (2 marks) and copy constructor (4 marks) . Destructor (2 marks) Getter for number of pages(2 marks) AddPage member function. It receives a page object and adds it to the book. Each time a page is added, it is assigned a page number based on sequence of addition. (6 marks) Print function to print the book pages page by page, the function should print a separator line between every two pages. (4 marks) HasMorePages(Book &B2) which compares the two book objects and return back true if original object has more pages than object B2. (4 marks) HasMoreLines(Book &B2) which compares the two book objects and return back true if original object has more Lines than object B2. (4 marks)