Answer:
2. <em>A reference of type A can be treated as a reference of type B</em> - False
Base class or its objects are not related to their derived class (or its objects).
Explanation:
class A {
    int a;
    public A() {
        a = 7;
    } 
}
class B extends A {
    int b;
    public B() {
        b = 8; 
    } 
}
///////////////////////////////////////////////////////////////////////////////////////////////////////
1. <em>After the constructor for class B executes, the variable a will have the value 7 </em>- True.
When an object of a derived class is declared, the constructor of base class is called before the constructor of derived class (is called).
3. <em>Both variables a and b are instance variables </em>- True.
Classes can have instance, or member, variables and methods.
4.<em> After the constructor for class B executes, the variable b will have the value 8</em> - True.
When object of class B is declared, its constructor was called, which initialized variable b to 8.
 
        
             
        
        
        
Answer:
do what the directions say and you should be able to figure out the answer if not contact me through brainly 
Explanation:
 
        
             
        
        
        
Properly scanning the computer and deleting any viruse. this is Answer
Some of the feedback I hear from new developers working on a programming problem revolves around uncertainty of where to start. You understand the problem, the logic, basics of the syntax, etc. If you see someone else’s code or have someone to guide you, you can follow along. But maybe you feel uncertain about doing it yourself and have trouble turning your thoughts into code at first even though you understand the syntax or logic. Here’s my process and some tips to tackling a sample problem that hopefully some of you may find helpful in your journey.
HOME
Some of the feedback I hear from new developers working on a programming problem revolves around uncertainty of where to start. You understand the problem, the logic, basics of the syntax, etc. If you see someone else’s code or have someone to guide you, you can follow along. But maybe you feel uncertain about doing it yourself and have trouble turning your thoughts into code at first even though you understand the syntax or logic. Here’s my process and some tips to tackling a sample problem that hopefully some of you may find helpful in your journey.
        
                    
             
        
        
        
There’s 3 main ones accelerometer, gyroscope, and magnetometer.
        
             
        
        
        
Answer:
  The main difference between the c and the C++ programming language are as follows: 
- The C language is the type of procedure programming language and on the other hand, C++ is the combination of object oriented (OOPS) and the procedure programming language. 
 - The C programming language does not support any type of object and class in the system. While the C++ programming language is also known as hybrid programming language. 
 - The C programming language does not support any type of operator overloading and function. On the other hand, the C++ programming language supported both the function overloading and the function.