Posts

Oracle Ceritified Java 8 Programmer Exam Experience

Hi All, I feel privileged to share my experience of OCPJP with you all. I cleared this certification in July, 2017. I would like to help you all in doing preparation of OCPJP. It took me one month to do preparation for exam. First, i go through theoretical concepts covered in this exam. Followed the book Oracle Certified Professional Java SE 8 Programmer II Study Guide by Jeanne Boyarsky and scott Selikoff .  Then, i have gone through dumps of enthuware for OCPJP 8. Taken almost every test of dumps. First, i had covered syllabus through topic wise test, then the complete tests of two and half hour. We should concentrate on two and half hour test before going for actual exam. Dumps are really helpful to attain that. GOOD LUCK for all the java aspirants !!! You can directly reach to me for further information at kavitagupta972@gmail.com Link to purchase Oracle exam : http://pearsonvue.com/oracle/ https://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?pag...

How to sort Map data based on values in treemap.

How to sort Map data based on values in treemap. Here is the solution with java8 and without java8. In Java8, we have direct method for sorting. Before Java8, we need to iterate through entryset to achieve the required result. https://github.com/kavitagupta972/MyWork/blob/master/Sorting%20Map.zip

jUnit Test Life Cycle

Common Git commands for ease of developer

git config Sets configuration values for your user name, email, gpg key, preferred diff algorithm, file formats and more. Example: git config --global user.name "Name" git config --global user.email "abc@domain.com" cat ~/.gitconfig [user] name = My Name email = user@domain.com git init Initializes a git repository – creates the initial ‘.git’ directory in a new or in an existing project. Example: cd /home/user/my_new_git_folder/ git init git clone Makes a Git repository copy from a remote source. Also adds the original location as a remote so you can fetch from it again and push to it if you have permissions. Example: git clone git@github.com:user/test.git git add Adds files changes in your working directory to your index. Example: git add . git rm Removes files from your index and your working directory so they will not be tracked. Example: git rm filename git commit Takes all of the changes written in the index, creates a new commit object pointi...

MVP vs MVC

What is MVP - Model View Presenter.

Use of wait() and notify() in producer/consumer problem