• 16 February

    Privacy Policy

    What information do we collect? On this website, you are required to : enter your email address to get the latest updates from this blog directly into your email box for free enter your name, email, and the website you own, when you put a comment on any post Apart from this, you are not […]

  • 22 July

    Manage C Sharp Homework Assignment at Ease Online

    In this post, we will see how to manage C sharp homework assignment online. Who can do my c# assignment fast? The question often arises in students who know little about programming languages. If you try to find the service to help you with c# tasks, you have come to the right place. Professional c# […]

  • 22 October

    How is java distributed

    Introduction Java is considered to be the most secure platform and programming language. Java was developed in 1995 by Sun Microsystems. It is the most commonly used language among developers, which is easy to understand and code. Java enables you to build several applications. It allows you to run those applications on a single machine […]

  • 21 April

    How to view HTTP headers in Google Chrome?

    In this post, we will see how to view HTTP headers in Google Chrome. Here are the steps to view HTTP headers in google chrome. Right-click on the webpage and select Inspect. Click on Network tab. Pick any HTTP request from left panel and click on headers to view HTTP header. You will be able […]

  • 26 March

    Java boolean default value

    In this post, we will see what is default value of boolean and Boolean in java. 💡 Did you know? The Default value of boolean is false and wrapper class Boolean is null. Here is the example to demonstrate the same. [crayon-66278c6e3d3ca201131676/] Output: Default value of boolean: false Default value of Boolean(Wrapper): null As you […]

  • 22 December

    Caesar Cipher in Java

    In this post, we will see about Caesar Cipher in Java. In cryptography, we used to study different algorithms or techniques to encrypt and decrypt a different sets of messages to gain confidentiality, integrity or say some kind of security. Usually, these things are achieved by implementing such kind of techniques, sometimes clubbed with other […]

  • 11 April

    System.out.println in java

    In this post, we will see about System.out.println in java and how it works. Did you use system.out.println before? I think this is first statement every java developer compiles. It is generally called by the acronym "SOP". What is System.out.println? System.out.println is Java statement which prints argument passed to console. System is a class out […]

  • 01 April

    Java float vs double

    In this post, we will see the difference between float and double data types in java. As you might know, float and double both can be used to represent floating point number in java. We will see the difference between float and double and also when to use double vs float. Similarities between double and […]

  • 28 October

    How to take input from user in java

    In this post, we will see how to take input from user in java. There are times when you want to take input from user and run program according to user input. There are many ways to take input from user and some of them are: Using Scanner Using BufferReader Using  Scanner class Scanner class […]