Skip to main content

Deep Blue (chess computer)



On Feb. 10, 1996, a computer won a game of chess against a world champion for the first time.
The computer was Deep Blue, a machine designed by IBM capable of computing 100 million positions per second
The champion was 32-year-old Russian Grandmaster Garry Kasparov, who had first been named world champion at age 22.

(after 20 years deep blue watch : https://www.youtube.com/watch?v=wdns2fVUEeE)

The game was the first in a match of six held in Philadelphia. Kasparov rebounded in the following five games, fighting the computer to two draws and three victories, winning the overall match. 







  1. Thank You So Much................

Comments

Popular posts from this blog

Naming Convention

  Naming Convention : A naming convention is  a convention for naming things: Please find below the table for naming conventions: Naming Convention Format Example Camel Case camelCase 🐪aBcD Kebab Case kebab-case 🍢a-b-c-d Snake Case snake_case 🐍a_b_c_d Pascal Case PascalCase 🧑‍🦳AbCd Flat Case flatcase 📏abcd Upper Flat Case UPPERFLATCASE ABCD Screaming Snake Case SCREAMING_SNAKE_CASE 🐍A_B_C_D Camel Snake Case camel_Snake_Case 🐪🐍ab_Cd Pascal Snake Case Pascal_Snake_Case Ab_Cd Train Case Train-Case 🚃Ab-Cd Cobol Case COBOL-CASE 🍢AB-CD

Fibonacci series

  Fibonacci series Code: import java.util.Scanner; class Main{     public static void main(String anyVar[]){         Scanner sc=new Scanner(System.in);         System.out.println("Enter any number till that yu want Fibonacci series:");         int num=sc.nextInt();         System.out.println("Fibonacci series till "+num+"is as follows:");         int num1=1,num2=1,num3=0;         for(int i=0;i<num;i++){            if(i==0||i==1)             System.out.print(1);             else{                 //Fibonacci number is sum of previous two Fibonacci number                 num3=num1+num2;                 num1=num2;           ...

NVL

 NVL: The NVL function allows you to replace null values with a default value.  Simple explanation: if( first parameter's value==null ) then return second parameter value if( first parameter's value!=null) then return first parameter as is Example: nvl("xyz","")---->return xyz nvl(null,'xyz') ------------>return xyz