Posts

Showing posts with the label Souvik Kumar Parui

Tutorial Blog 2 : Concepts of Virus & Worms (Ethical Hacking)

Image
  Concepts of  Virus & Worms ( Ethical Hacking )              👷  Posted By  Souvik Kumar Parui Introduction to Virus : Computer viruses have the potential to wreak havoc on both business and personal computer. Worldwide , most businesses have been infected at some point . A virus is a self replicating program that produces its own code by attaching copies of it into other executable codes. This virus operate without the knowledge of desire of the user .Like a real virus, a computer virus is contagious and can contaminate other files.  However virus can infect outside masons only with the assistance of computer users .Some virus affect computers as soon as their code is executed ; other viruses life dormant until a pre-determined logical circumstances it met . There are three categories of malicious programs ::        >    Trojans and rootkits        >    vi...

Tutorial Blog 1 : Basic Concepts of Reversible Circuits ( Quantum Computing)

Image
 Basic Concepts of Reversible Circuits ( Quantum Computing )                           - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -                        👷 Posted By Souvik Kumar Parui              Introduction : In recent years, the research community has shown considerable intentness towards the reversible logic due to its potential to minimize the power dissipation in the VLSI circuits to design a power efficient circuit. The reversible logic holds the key feature of designing the information lossless circuits and it may lead to zero-energy dissipation in the ideal case.     Reversible Logic :                      A function is called reversible if it has equal numbers of inputs and outputs and there e...

Html Images tag :##lesson 3

Image
1. HTML Image Tag:    HTML <img /> tag is insert image into a web document.  HTML image path define/declare inside <img /> tag.  The <img /> tag is empty tag, that mean's no closing tag.  <img /> tag have some attributes are use for display image on web page.  The src attribute, src stands for "source", that is path of image URL  Alt Attribute used to define an "alternate text" for an image. This specifies text to be identified in the image name.  Width and Height specifies the size of image to display on webpage. Example : Image alignment (Right side) : <html> <head>  </head> <body>   <img src="images\img_nat.png" width="120" height="80" alt="Natural" align="right"/>   <p>Natural resources (economically referred to as land or raw materials) </p> </body>  </html> Image alignment (Wrap around):  <html...

Basic Html Tags: ##lesson 2

Image