Posts

WINDOWS 11

Image
  WINDOWS 11                               The official information tends that the pre-installed windows 11 pc's will be in the market from later this year and the accessories will be compatible only " If your accessories worked with Windows 10 and meet the Windows 11 requirements, they should work with Windows 11. If you want to be sure, please check with your accessory manufacturer."                                   At present we may upgrade to windows 11 by satisfying this minimum system requirements... Processor 1 gigahertz or faster with 2 or more cores on a compatible 64-bit processor Memory 4 GB RAM Storage 64 GB or larger storage device System firmware UEFI, Secure Boot capable TPM TPM version 2.0 Minimum system requirements Graphics card DirectX 12 compatible graphics / WDDM ...

Python Programming Examples

Image
   INTRODUCTION TO PYTHON                          Python is a programming language,which is famous in machine learning and data science.  PYTHON DATATYPES                      There are 5 datatypes in python. Numeric  lists or sequence Boolean sets dictionaries   SOME EXAMPLE PROGRAMS IN PYTHON ARE  TO CHECK WHETHER A GIVEN YEAR IS A LEAP YEAR OR NOT  CODE :  OUTPUT :  AND THERE ARE MANY EXAMPLES ONE OF THE IMPORTANT CONCEPT OF THE PYTHON IS EXCEPTIONS :  SOME OF THE EXCEPTIONS DURING THE PROGRAM ARE 0/0 DIVISION ERRORS  This Exceptions are mainly used for an user friendly environment between an user and the application as shown in the below code CODE :  OUTPUT :  WILL COMING BACK WITH SOME MORE EXAMPLES STAY SAFE,BE HAPPY

ARTIFICIAL INTELLIGENCE

Image
INTRODUCTION TO AI: In computer science, artificial intelligence, sometimes called machine intelligence, is intelligence demonstrated by machines, in contrast to the natural intelligence displayed by humans and animals. In computer science  artificial intelligence  ( AI ), sometimes called  machine intelligence , is intelligence demonstrated by machines, in contrast to the  natural intelligence  displayed by humans and animals. Leading AI textbooks define the field as the study of "intelligent agents": any device that perceives its environment and takes actions that maximize its chance of successfully achieving its goals.Colloquially, the term "artificial intelligence" is often used to describe machines (or computers) that mimic "cognitive" functions that humans associate with the human mind, such as "learning" and "problem solving".  As machines become increasingly capable, tasks considered to require "intel...

Web design in HTML

<!doctype html> <html> <head> </head> <body>   <meta name= "viewport" content= "width=device-width, initial-scale= 1.0 " >   <title>    Page Title    </title>   <link href= "https://fonts.googleapis.com/css?family=Material+Icons|Ubuntu|Montserrat|Noto+Sans&amp; display=swap" rel= "stylesheet" >   <header>    <p class= "material-icons left" onclick= "nav()" > menu </p>    <p class= "material-icons left" onclick= "search()" > search </p>    <input type= "text" id= "search" >    <p class= "material-icons" id= "right" onclick= "more()" > more_vert </p>   </header>   <h1> Hello, World! </h1>   <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ornare mauris ac eros ultricies convallis. Donec eu ante et velit ...

Tic tac toe in Python

Tic tac toe in Python: Let's start: board = [ "-" , "-" , "-" ,          "-" , "-" , "-" ,          "-" , "-" , "-" ] game_still_going = True winner = None current_player = "X" def play_game():   print ( "\n            TIC TAC TOE GAME \n" )   print ( "Note : Use the numpad to enter X or O in \n respective fields.\n" )   display_board()   while game_still_going:     handle_turn(current_player)     check_if_game_over()     flip_player()   if winner == "X" or winner == "O" :     print ( "PLAYER" ,winner, "IS THE WINNER !!." )   elif winner == None :     print ( "Tie." )   print ( "\nT H A N K S   F O R   P L A Y I N G !!!" ) def display_board():   print (board[ 0 ] + " | " + board[ 1 ] + " | " + board[ 2 ]...

Incredible Indian Railways

Image
Incredible  Railways            Our Indian ministry has been running the Railways from many years. For the convenience of their management the Indian railways had divided into North zone and South zone, these are mainly named as South Central railway (SCR) and North Central railway (NCR) based on this division the jobs will also differ and separated.                        Interaction will there between these two railways as the Railways will connect all over the India. The Railways area mainly concentrate on the people's comfort and their safety. The Railways are mainly facilitating the passengers for their level best. For example the Railways are providing free Wi-Fi for the each and every station.                       Across by 2022 the Railways are planning to have a facility of television in the trains it can be a time taking ...

The magic of thinking big

                         Facts to know Our brain is more creative when it is tired. Every person you see in dreams have come across your real life.Our brain can't create faces The secret of good sleep is to convince the brain that you had a good sleep (so, we have to know that how to convince our brain) A person can take 21days to form a habit. When you are hungry you can drink water because our brain will send wrong signals when the water content is less. Closing our eyes can remember things. A person usually makes a lot of hand gestures when telling a true story. When telling a lie, a person’s hands will stay noticeably still. Saying "Thank you" makes people see you as a warmer person, a study found. Be thankful for all the struggles you go through. They make you stronger, wiser and humble. Don't let it break you let it make you. The larger your signature the larger your esteem. When you are talking to your...