Provide the subnet, broadcast address and the valid host ranges for each of the following. i. 172.16.10.65/26 ii. 172.16.10.33/27 iii. 192.168.100.25/30 iv. 192.168.13.40/28 v. 200.10.40.23/25
Your organization network diagram is shown in the figure below. Your company has the class C address range of 199.11.33.0. You need to subnet the address into three subnets and make the best use of the available address space. Which of the following represents the address scheme you would apply to the New York office and Toronto Office?(A) 199.11.33.160/31 (B) 199.11.33.0/25 (C) 199.11.33.128/27 (D) 199.11.33.0/31 (E) 199.11.33.160/30 (F) 199.11.33.128/28
Provide the subnet, broadcast address and the valid host ranges for each of the following. i. 172.16.10.65/26 ii. 172.16.10.33/27 iii. 192.168.100.25/30 iv. 192.168.13.40/28 v. 200.10.40.23/25
Design four classes: Student, Exam ,Sports and Result. The Student class has data members such as reg. number, name. Create Exam by inheriting the Student. The Exam class adds data members representing the marks scored in 3 subjects. Create Sports by inheriting the Student. The Sports class adds data members representing the marks scored in indoor and outdoor games. Derive the Result from the Exam , Sports and Result has its own data member of Total mark. Write an interactive program with appropriate member functions to model this relationship.
create a person class with name as it's data member . provide 4 functions getname() to get input from user and putname() to display output. Write two virtual functions getdata() and outstanding() where both these functions takes no argument and getdata() returns no value but outstanding () returns a Boolean value. Derive student and professor from person.student class should contain GPA as its float type data member and overrides the virtual functions appropriately .in professor class provide number of publications as data member and overrides the virtual functions appropriately. write a main program to declare an array of pointers to person object and depending on the choice from user create a student object or professor object and store it in person array for n persons. display the details along with whether the person is outstanding or not
Create a class called bMoney. It should store money amounts as long doubles. Use the function ms_to_ld() to convert a money string entered as input into a long double, and the function ld_to_ms() to convert the long double to a money string for display. You can call the input and output member functions getmoney() and putmoney().
Overload the operators +,-,*,/ appropriately.
create a class Matrix the stores it in a safe 2D array .that is it it should check for array index bounds .a constructor should allow the programmer to specify the actual dimensions of the matrix. define number functions : putel() for taking 3 argument row index , column index and the element storing it in the corresponding location. getel() for taking 2 arguments row and column indexes and returns the elements from that location . overload the operators +,-,and * appropriately
Create a class angle that includes three member variables: an int for degrees, a float for minutes, and a char for the direction letter (N, S, E, or W). Write member functions to get input from user, to display the output in 120.36°N format and use a constructor to initialise the object. Write a main() program for demonstrating the above