1) If there is one class template which has one static member variable that static variable will belong to a) Every instance of class template will
Latest Answer: For 1st question, answer is d) compilation errorHere is the sample program describes the scenario.#includeusing namespace std;templateclass x{ public : static T a;};int main(){ x ...