Posts
Showing posts from January, 2017
Common Git commands for ease of developer
- Get link
- X
- Other Apps
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...
Use of wait() and notify() in producer/consumer problem
- Get link
- X
- Other Apps
Difference between run and start method of thread - Java Multithreading
- Get link
- X
- Other Apps
Difference between start() and run() method : In case of run() method, thread.run() doesn't call on newly created thread. But, it executes run() method on currently running thread. But, in case of thread.start(), it starts new thread, and calls run() method on newly created thread. Below is the example with output by calling run() and start() methods.
Oracle Ceritified Java 8 Associate Exam Experience
- Get link
- X
- Other Apps
Hi All, I have taken exam of OCAJP 8 in December, 2016. Cleared the exam with 87% score. I would like to share my experience to help java seekers around the world. 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 Associate Java SE 8 Programmer I Study Guide by Jeanne Boyarsky and scott Selikoff . -------------- Then, i have gone through dumps of enthuware for OCAJP 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. You can directly reach to me for further information at kavitagupta972@gmail.com GOOD LUCK for all the java aspirants !!! Link to purchase Oracle exam : http://pearsonvue.com/oracle/ https://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?pag...