Akamai Interview Question
42 Interview Reviews |
Back to all Akamai Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Senior Software Engineer at Akamai:
Helpful Question?
Yes |
No
Inappropriate?
0 of 1 people found this helpful
by Interview Candidate:
{
private:
Singleton() {}
static Singleton* m_single_instance;
public:
static Singleton* getInstance()
{
return m_single_instance;
}
};