Skip to content

Latest commit

 

History

History
25 lines (25 loc) · 787 Bytes

README.md

File metadata and controls

25 lines (25 loc) · 787 Bytes

The repository has the following

java/src

  • has custom implementation of java.util.concurrent.* constructs
    • CountDownLatch
    • CyclicBarrier
    • Exchanger
    • ReentrantLock
    • ReadWriteLock
    • Semaphore
    • ThreadPool
    • BlockingQueue - producer consumer
  • has custom implementation of some collection classes
  • has example code for
    • Volatile
    • Deadlock
    • java.util.concurrent.Phaser construct
    • Executors
    • Print ODD, EVEN numbers using separate threads
    • Printing numbers from three different threads
    • SecurityManager
    • ForkJoinPool Construct
    • Delete ODD, EVEN numbers in a list using two threads
    • Synchronous queue

other

  • interview questions and their solutions