Isopropyl is: CH3 - CH - CH3
|
Heptane is: CH3 - CH2 - CH2 - CH2 - CH2 - CH2 - CH3
Then 2,2 isopropyl heptane is:
CH3 - CH - CH3
|
CH3 - C - CH2 - CH2 - CH2 - CH2 - CH3
|
CH3 - CH - CH3.
There you can count that the longest carbon chain has 8 carbon atoms.
So the right name is of an octane.
I will rearrange the chain to show the 8 carbon chain in a row:
CH3 CH3
| |
CH3 - CH - C - CH2 - CH2 - CH2 - CH2 - CH3
|
CH3 - CH - CH3
Now, you can see that the right name is 3 isopropyl - 2, 3 dimethyl octane
Answer:
Hope this helps.
//HGTTU.java
public interface HGTTU {
int universalConstant = 42;
public int getNormilazedIntValue();
}
//MyInt.java
public class MyInt implements HGTTU {
int instanceFiled;
Override
public int getNormilazedIntValue() {
return instanceFiled+universalConstant;
}
}
Explanation:
Answer:
RAM (Random access memory)helps in reading aswell as writing data.
Explanation:
Random access memory is a computer memory that can be read and written.Where as ROM (read only memory) can only be read and cannot be written.RAM contains circuits with multiplexers and demultiplexers to connect the datalines to the addressed data for reading or writing.There are majorly two types of RAM .They are SRAM(static random access memory) and DRAM(dynamic random access memory).