Question
c++ What operator would you use to turn on a bit? Select one: a. | b. & c. < < d. ~ What happens if
c++
What operator would you use to turn on a bit?
Select one:
a. |
b. &
c. <<
d. ~
What happens if you shift an on bit out of range?
Select one:
a. The shift won't allow it
b. It falls off but can be shifted back
c. The program crashes
d. It falls off and is replace by a zero
Which of the following will create a dynamic array that will hold dynamic char pointers?
Select one:
a. char* S[32];
b. char** temp;
c. char S[32];
d. int* temp;
Which of the following is true of templated classes?
Select one:
a. You may not declare anything in the header
b. You may not have dynamic memory
c. There is no cpp file
d. There is no header file
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started