I have successfully installed Oracle 11g R2 version. I don’t have good knowledge about Oracle database. SQL developer needs a Database Connection.

I don’t know how to create this. Searching through the Internet, I found this page
According to this site, there is HR user and HR database. Also there is some predefined tables. What are these tables and other things. Does Oracle comes with this default database? Can’t I create database with different name? And how to create this database connection in right way?
These tables are not my creations

I think you have not unlocked your
scott user accountwhile installation,please follow the steps below to unlock you scott account .When you started installing oracle ,it asked for
global database nameanddatabase passwordthat password is used for thesys system sysman dbsnmp account.SQL> conn user/password;
SQL> conn scott/tiger;
Error message is displayed: the account is locked.
Try to login as
"system"– passSQL> conn system/password;Unlock “scott”
SQL> alter user scott account unlock;Can change
"tiger":SQL> alter user scott identified by tiger;scott accountis locked in 11g due to security thinking,Now you can type
Connection Name :ORCL,username:Scott,password:tigerto login