11- Create an instance of the following class and call its methods. template class Array2D { D arr [I] [J]; public: D set (const int i, const int j, const D val) { arr[i] [i] D get (const int i, const int j) { return arr[i] [i]; } }; = val; }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
i need the answer quickly
Q₁: Answer all of the following:
1- How many arguments can a C++ function have?
a) One.
b) Two.
c) Three.
d) Unlimited
2- What is a variable scope?
3- If the following lines of code have errors, correct them; otherwise, write "no
errors"
float 1_b=5.5;
int a_1=b;
cout<<a
return 0;
4- Is it possible to call a function from inside a function? (Yes or No)
5- When de we need to use private keyword in C++ class?
6- A derived class can be a base class for other classes. (True or False)
7- Return by value is better than return by reference (True, False or it depends
on the case)
8- Is it possible to alter the address that the reference points to? (Yes or No)
9- We can write as many copy constructor in a C++ class as we want. (True or
False)
10-Syntax error is
logical errors (harder than, equal in difficulty to,
simpler than)
11- Create an instance of the following class and call its methods.
template <class D, int I, int J>
class Array2D {
D arr [I] [J];
public:
D set (const int i, const int j,
const D val) (arr[i] [i] = val; }
D get (const int i, const int j) { return arr[i] [i]; }
};
12- What is a null pointer?
13- Every C++ class has a default constructor. (True or False)
14- In C++, every line must end with a semicolon. (True or False)
15- What is template specialization?
Transcribed Image Text:Q₁: Answer all of the following: 1- How many arguments can a C++ function have? a) One. b) Two. c) Three. d) Unlimited 2- What is a variable scope? 3- If the following lines of code have errors, correct them; otherwise, write "no errors" float 1_b=5.5; int a_1=b; cout<<a return 0; 4- Is it possible to call a function from inside a function? (Yes or No) 5- When de we need to use private keyword in C++ class? 6- A derived class can be a base class for other classes. (True or False) 7- Return by value is better than return by reference (True, False or it depends on the case) 8- Is it possible to alter the address that the reference points to? (Yes or No) 9- We can write as many copy constructor in a C++ class as we want. (True or False) 10-Syntax error is logical errors (harder than, equal in difficulty to, simpler than) 11- Create an instance of the following class and call its methods. template <class D, int I, int J> class Array2D { D arr [I] [J]; public: D set (const int i, const int j, const D val) (arr[i] [i] = val; } D get (const int i, const int j) { return arr[i] [i]; } }; 12- What is a null pointer? 13- Every C++ class has a default constructor. (True or False) 14- In C++, every line must end with a semicolon. (True or False) 15- What is template specialization?
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education