Answer:
A piece of code hidden in spread sheet
Acceleration of Car = 10 ms⁻²
Explanation:
Step 1:
The basic formula of acceleration is a = (v-u)/t ms⁻²
where, v- final velocity
u- initial velocity
t= time taken
Step 2:
Here v = 70 ms⁻¹
u = 50 ms⁻¹
t = 5 s
∴ a = ( 70 - 20)/5
a = 10 ms⁻²
Answer:
Explanation:
Given that,
The area of glass
= 
The thickness of the glass 
The area of the styrofoam 
The thickness of the styrofoam 
The thermal conductivity of the glass 
The thermal conductivity of the styrofoam 
Inside and outside temperature difference is ΔT
The heat loss due to conduction in the window is

The heat loss due to conduction in the wall is

The net heat loss of the wall and the window is

The percentage of heat lost by the window is

Answer:

Explanation:
We know that relationship between fatigue and stress concentration factor

Where
=fatigue concentration factor
=stress concentration factor
q=Notch sensitivity
Here D/d=2 and r/d=0.125
Now from standard design data book 
For Sut=440 MPa and r= 4 mm
q=0.8
Now by putting the values



Answer: Statement "E" is true
Explanation:
A - Statement is not true because, though static methods can not directly access any instance variables or methods. But they can access them by using their object reference.
B - Statement is not true because a non static method can also access a static variable.
C - Statement is not true because according to the rules for instance variables in java, it can be marked as final.
D - Statement is not true because though it can be declared as final by initialization of variable mandatory and initialization of class loading, there is no rule that says it must be declared as final.
E - This statement is true because in the constructor, static variables are not associated with each object of the class since it is shared by each object. Therefore, if you initialize static variable into constructor, it means that you are trying to associate with a particular member of class and it's not possible to do so!