C++ program to find the factorial of a number using a constructor and destructor (generating the message "you have done it").
Configure the network as follows:
1) Configure Host Names
2) Shut down unused interfaces.
3) Configure enable password and vty passwords of cisco
4) Use VTP mode transparent and domain ccna
5) Add VLANS 10,20,30,100 to the VLAN database
6) Configure ports between switches as trunks
7) Configure access ports on links to PCs
Write the Python code of a program that reads an integer, and prints the integer it is a multiple of either 2 or 5 but not both. If the number is a multiple of 2 and 5 both, then print "Multiple of 2 and 5 both
write a python function which take list A as input and return five lists, one contains all prime numbers in A, second one contains composite numbers in A, the third list contains all numbers in A which are neither divisible by 2, fourth and fifth list contains number divisible by 3 and 5 respectively.
Develop a C++ program to design a College Course class includes fields representing department, course number, credit hours, and tuition. Its child, Lab course, includes one more field that holds a lab fee charged in addition to the tuition. Create appropriate functions for these classes, and write a main () function that instantiates and uses object of each class.
Develop a C++ program implementing hierarchical inheritance upon a base class "Employee", and derived classes "Full-time" containing basic salary and allowances for calculating the salary of the employee and
Develop a C++ program implementing hierarchical inheritance upon a base class "Employee", and derived classes "Full-time" containing basic salary and allowances for calculating the salary of the employee and
Write a c++ program to add two objects using binary plus(+) operator overloading .create a class NUM in which contains data members as n and member functions are (i) getNum(int)-get input value(ii)dispNum(int)-print result (iii) operator+(NUM)-perform the addition operation
Develop c++ program with a class complex containing data members real and imaginary .Overload'+' operator and '-: operator to perform complex number addition and subtraction
Develop a C++ program implementing hierarchical inheritance upon a base class "Employee", and derived classes "Full-time" containing basic salary and allowances for calculating the salary of the employee and "Part-time" containing rate_per_day and no. of days worked for calculating the pay.