• 16 January

    Beep beep kazino reģistrācija un bonuss – praktisks ceļvedis

    Ja meklējat uzticamu ceļvedi par Beep beep casino online, šis raksts aptver visu no reģistrācijas līdz pirmajai izmaksai. Pirms sākat Personu apliecinošs dokuments (ID, pase vai autovadītāja apliecība) Derīga e-pasta adrese un mobilā tālruņa numurs Interneta pieslēgums un moderna pārlūkprogramma Iepazīstieties ar bonusu noteikumiem – īpaši ar likmju izvirzīšanas prasībām (wagering) Reģistrācijas soli pa solim […]

  • 10 January

    Nv Casino Bonus Guide: So maximieren Sie Ihre Gewinne

    Bevor Sie sich bei Nv casino bonus registrieren, nehmen Sie sich fünf Minuten Zeit, um diesen Leitfaden zu lesen – er könnte Ihnen Zeit und Geld sparen. Ein Bonus mag auf den ersten Blick verlockend wirken, doch die versteckten Umsatzbedingungen entscheiden über Ihren tatsächlichen Vorteil. Dieser Leitfaden führt Sie durch die gesamte Bonusnutzung, von der […]

  • ConcurrentHashMap in java
    26 November

    ConcurrentHashMap in java

    ConcurrentHashMap was introduced in Java 5 with other concurrency utils such as CountDownLatch, CyclicBarrier and BlockingQueue. ConcurrentHashMap in java is very similar to HashTable but it provides better concurrency level. You might know , you can synchonize HashMap using Collections.synchronizedMap(Map). So what is difference between ConcurrentHashMap and Collections.synchronizedMap(Map)In case of Collections.synchronizedMap(Map), it locks whole HashTable […]

  • 19 July

    How HashSet works in java

    In this post, we will see about Hashset in java Java HashSet: [crayon-6a29a94377629882277562/] This is one of the frequently asked question in core java interview so in this post, we will see how HashSet works in java.We have already seen How hashMap works in java and also difference between HashMap and HashSet. Lets first see […]

  • 11 July

    Difference between sleep and wait in java

    One of the common interview question is “What is difference between sleep and wait in java”.Before we actually see differences,let me give you brief introduction of both. sleep It causes current executing thread to sleep for specific amount of time. Its accuracy depends on system timers and schedulers. It keeps the monitors it has acquired, […]

  • 10 July

    How to find prime factors of a number in java

    In this post, we will see how to find prime factors of a number in java. A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself. The prime factors of a number are all of the prime numbers that will exactly divide the given number. […]

  • 09 July

    java program to check prime number

    This is easy question. It may not be asked you directly, but you can use this program to create many other complex program. A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself. Program logic: If any number which is not divisible by any other […]

  • 09 July

    Palindrome program in java

    In this article, we will see how to implement palindrome program in java. A palindrome is a word, phrase, number, or other sequence of symbols or elements that reads the same forward or reversed. For example: 12121 is palindrome as it reads same forward or reversed. madam is also a palindrome . This is very […]

  • 07 July

    Reverse a linked list in java

    If you want to practice data structure and algorithm programs, you can go through data structure and algorithm interview questions. In this post, we will see how to reverse a linked list in java. This is one of popular interview question. Java Linked List Interview Programs: How to reverse a linked list in pairs How to […]