You have been appointed as IT Head of a soon to be opened bank in India by the name of “People’s bank” which will have branches all over India. People’s bank is a private sector bank. Highlight atleast 5 security threats that a bank may face in today’s times and suggest 5 innovative IT security mechanisms to ensure that such threats do not harm your bank & that your systems remain as secure as ever.
#include <iostream>
using namespace std;
class bank {
public:
bank(): m_name(""), m_location("") { }
bank(string name): m_name(name), m_location("") { }
bank(string name, string location): m_name(name), m_location(location) { }
void set_name(string name) {
m_name = name;
}
string get_name() const {
return m_name;
}
void set_location(string location) {
m_location = location;
}
string get_location() const {
return m_location;
}
private:
string m_name;
string m_location;
}
Comments
Leave a comment