The Insurance Company has to find the minimum and maximum incentive given for their LIC Agents. Develop a C++ program to implement this using templates with exception handling.
* If the input value is 0 thrown an exception, print "An exception occurred!"
Define a class Array which can hold 5 elements of type int. Define a member function int Get(int index); which returns the indexth element of the array if index is between 0 to 4 and throws an exception if index is out of bounds. Catch the exception in the main program and print an error
Design a template function to find least amount of purchase from the quoted tender document. [Note: Amount in lakhs]
Develop a C++ programs on BANKING SYSTEM have Customer class with name, address and phoneno. Create derived class account class with data members like account number, name, deposit, withdraw amount and type of account. A customer can deposit and withdraw amount in his account. Develop a C++ program to display the details of a customer and the remaining balance amount. [Note: Use virtual function]
Do you ever see Denial of Service attacks while using the internet? If yes, share your event where you face this. If no, what is the possible event, where you would be facing this attack
What kind of network related attacks can be possible for university networks? How can we
achieve security to prevent those security loopholes? Share your thoughts.
What type of cyber attacks need to be considered by the banking sector. List those attacks and how they can threaten the banking system?
How do you see three important security aspects (Confidentiality, Integrity, Availability) while using social media apps like facebook, whatsapp etc? Which of these three is most important to consider? Share your thoughts.
Design a pay roll system to find the employee total salary using single inheritance. The base class employee consisting of data members such as emp_number and emp_name. The derived class salary consisting of data members such as Basic_pay, HRA, DA, PF, Net_pay.
Runtime Input :
1200
Raja
12500
1200
1500
1800
Output :
1200
Raja
12500
1200
1500
1800
17000
Define a class string. Use different constructors and do the following [20 marks]
- Create un-initialized string objects
- Create objects with string constants
- Concatenate two strings
- Display desired strings