Answer to Question #307342 in C++ for MAN

Question #307342

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.



1
Expert's answer
2022-03-08T16:53:14-0500
#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;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog