Sunday 31 January 2021

Best Budget Gigabit Router India | Tp-link, Tenda & D-link Routers | 2021

Adv Blocker

Tp-Link

Tenda

D-link

Thursday 24 December 2020

Application Form for "West Bengal Krishak Bandhu Scheme" | পশ্চিমবঙ্গ সরকারের কৃষক বন্ধু প্রকল্পের আবেদন পত্র



West Bengal Government West Bengal Government

Application Form for "West Bengal Krishak Bandhu Scheme"



পশ্চিমবঙ্গ সরকারের কৃষক বন্ধু প্রকল্পের আবেদন পত্র




Preview of the Form

পশ্চিমবঙ্গ সরকারের কৃষক বন্ধু প্রকল্পের আবেদন পত্রপশ্চিমবঙ্গ সরকারের কৃষক বন্ধু প্রকল্পের আবেদন পত্র










Monday 14 December 2020

Old Age Pension, Widow Pension, Disability Pension Scheme - Government of West Bengal - Form | বার্ধক্য ভাতা , বিধবা ভাতা , অক্ষমতার ভাতার জন্য আবেদন পত্র | Application Form for Old Age Allowance , Widow Allowance & Disability Allowance


Application Form for Old Age Allowance , Widow Allowance & Disability Allowance 

Government of West Bengal


বার্ধক্য ভাতা , বিধবা ভাতা , অক্ষমতার ভাতার জন্য আবেদন পত্র 

পশ্চিমবঙ্গ সরকার



NEW FORMS


OLD FORMS


 

Saturday 17 October 2020

What returns by "if" Condition Statement in Java ?

What returns by "if" Condition Statement in Java ? 

 Answer: - "if" condition returns a true which is a boolean data when condition is true and provide false which also is a boolean when condition is false. 

Example Code is here:

import java.util.*;
public class ReturnofIf {
public static void main(String[] args) throws java.io.IOException
{
boolean tf;                 //boolean tf is maid
if(tf = (char) System.in.read() >= 'M') 
{
System.out.println("Given Value is:" +tf);
}
else
{
System.out.println("Given Value is:" +tf);
}
}
}


_________________________________________________________________________________ 

Input : A 
Output : Given Value is:false 

Input : N 
Output : Given Value is:true

Sunday 11 October 2020

What is JAVA ? | History Of JAVA | Java Versions

 Java

Java is a class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. It is a general-purpose programming language intended to let application developers write once, run anywhere (WORA),

meaning that compiled Java code can run on all platforms that support Java without the need for recompilation.

Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM) regardless of the underlying computer architecture. The syntax of Java is similar to C and C++, but it has fewer low-level facilities than either of them. As of 2019, Java was one of the most popular programming languages in use according to GitHub.

History of Java

Java was originally developed by James Gosling at Sun Microsystems (which has since been acquired by Oracle) and released in 1995 as a core component of Sun Microsystems' Java platform. The original and reference implementation Java compilers, virtual machines, and class libraries were originally released by Sun under proprietary licenses. As of May 2007, in compliance with the specifications of the Java Community Process, Sun had relicensed most of its Java technologies under the GNU General Public License. Oracle offers its own HotSpot Java Virtual Machine, however the official reference implementation is the OpenJDK JVM which is free open source software and used by most developers including the Eclipse IDE and is the default JVM for almost all Linux distributions.

Java was originally designed for interactive television, but it was too advanced technology for the digital cable television industry at the time. The history of Java starts with the Green Team. Java team members (also known as Green Team), initiated this project to develop a language for digital devices such as set-top boxes, televisions, etc. However, it was suited for internet programming. Later, Java technology was incorporated by Netscape.

The principles for creating Java programming were "Simple, Robust, Portable, Platform-independent, Secured, High Performance, Multithreaded, Architecture Neutral, Object-Oriented, Interpreted, and Dynamic". Java was developed by James Gosling, who is known as the father of Java, in 1995. James Gosling and his team members started the project in the early '90s.

  • James Gosling, Mike Sheridan, and Patrick Naughton initiated the Java language project in June 1991. The small team of sun engineers called Green Team.
  • Initially designed for small, embedded systems in electronic appliances like set-top boxes.

  • After that, it was called Oak and was developed as a part of the Green project.

  • Firstly, it was called "Greentalk" by James Gosling, and the file extension was .gt .

List of Java / JDK Versions

  1. JDK Alpha and Beta (1995) 
  2. JDK 1.0 (23rd Jan 1996)
  3. JDK 1.1 (19th Feb 1997)
  4. J2SE 1.2 (8th Dec 1998)
  5. J2SE 1.3 (8th May 2000)
  6. J2SE 1.4 (6th Feb 2002)
  7. J2SE 5.0 (30th Sep 2004)
  8. Java SE 6 (11th Dec 2006)
  9. Java SE 7 (28th July 2011)
  10. Java SE 8 (18th Mar 2014)
  11. Java SE 9 (21st Sep 2017)
  12. Java SE 10 (20th Mar 2018)
                                                        ***--Data form javaTpoint.
    VersionDate
    JDK Beta1995
    JDK1.0January 23, 1996 [40]
    JDK 1.1February 19, 1997
    J2SE 1.2December 8, 1998
    J2SE 1.3May 8, 2000
    J2SE 1.4February 6, 2002
    J2SE 5.0September 30, 2004
    Java SE 6December 11, 2006
    Java SE 7July 28, 2011
    Java SE 8March 18, 2014
    Java SE 9September 21, 2017
    Java SE 10March 20, 2018
    Java SE 11September 25, 2018 [41]
    Java SE 12March 19, 2019
    Java SE 13September 17, 2019
    Java SE 14March 17, 2020
    Java SE 15September 15, 2020
                                                                 ***-- Table Data form Wikipedia.

For More Informations Please Visit : https://www.javatpoint.com/java-versions
                                                               https://en.wikipedia.org/wiki/Java_(programming_language)#Versions

Resources From : https://www.javatpoint.com/ 
                              https://en.wikipedia.org/

Wednesday 15 July 2020

Code My Clock

<!doctype html>
<html lang="en">
  <head>
    
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> 
    <title>My Clock KAD</title>
    <script>
      let a;
      let date;
      let time;
      let time1;
      const options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric'};
      setInterval(() => {
        a = new Date();
        date = a.toLocaleDateString(undefined, options);
        <!-- For AM & PM -->
        var hours = a.getHours(); 
        var minutes = a.getMinutes(); 
        var seconds = a.getSeconds();
        var formattedSeconds = ("0" + seconds).slice(-2);
         // Check whether AM or PM 
        var newformat = hours >= 12 ? 'PM' : 'AM';  
        // Find current hour in AM-PM Format 
                hours = hours % 12;  
        // To display "0" as "12" 
                hours = hours ? hours : 12;  
                minutes = minutes < 10 ? '0' + minutes : minutes;
        time1 = hours + ':' + minutes + ':' + formattedSeconds + ' ' + newformat;
        <!---->
        time = a.getHours() + ':' + a.getMinutes() + ':' + a.getSeconds();
        document.getElementById('time').innerHTML = time1 + "<br>" + time + "<br> on " + date;
      },1000);
    </script>
  </head>
  <body>
    <nav class="navbar navbar-expand-lg navbar-light bg-light">
      <a class="navbar-brand" href="#">On Clock</a>
      <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
        <span class="navbar-toggler-icon"></span>
      </button>
      <div class="collapse navbar-collapse" id="navbarNav">
        <ul class="navbar-nav">
          <li class="nav-item active">
            <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
          </li>
          <li class="nav-item">
            <a class="nav-link" href="#">Features</a>
          </li>
          <li class="nav-item">
            <a class="nav-link" href="#">Pricing</a>
          </li>
          <li class="nav-item">
            <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
          </li>
        </ul>
      </div>
    </nav>
<div class="container my-4">
  <div class="jumbotron">
    <h1 class="display-4">Current Time is: <span id="time"> </span> </h1>
    <p class="lead">Thsi is a Clocked developed by me Aka Anupam Dutta Just For Fun.</p>
    <hr class="my-4">
    <p>Upgration In process</p>
    <a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a>

  </div>
</div>
    <!-- Optional JavaScript -->
    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
    <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
  </body>
</html>