Question: Can you create HBase table without assigning column family.
Answer : No, Column family also impact how the data should be stored physically in the HDFS file system, hence there is a mandate that you should always have at least one column family. We can also alter the column families once the table is created.
Question: In which file the default configuration of HBase is stored.
Answer : hbase-site.xml
Question: Please specify the command (Java API Class) which you will be using to interact with HBase table.
Answer: Get, Put, Delete, Scan, and Increment