Showing posts with label Mini Projects. Show all posts
Showing posts with label Mini Projects. Show all posts

Thursday, February 10, 2022

How to convert binary to decimal

Binary to decimal converstion program given code below:

We know that binary digit have only two bit '0' or '1' bit for executing all operatin in computer.
if let have a binary digit : 1011001 
than what will be out of the given binary code in decimal
than follow given code to convert in decimal

Binary to decimal output

Monday, February 7, 2022

Intersection operation perform in c programming

if set A = {2,5,6} and set B = {3,5,2,6}
Than Intersection of A and B is intersection = {2,5,6}

Output of the intersection operation


Intersection output


This code to perform Intersection operation in C programming ๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡



Union Operation perform in c programming

if set A = {2,5,6} and set B = {3,5,2,6}
Than union of set A and B is Union = {2,3,5,6}

Output of the Union operation


Union output




This code to perform Union operation๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡




Monday, July 20, 2020

How to make chess board using html

 html ka prayog karke chess board kaise banaye


    เคนाเคฏ เคฆोเคธ्เคคों เค†เคœ เคนเคฎ เค†เคช เคฒोเค— เค•ो เคฌเคคाเคจे เคตाเคฒे เคนैं เค•ि เค†เคช เค•ेเคตเคฒ เคเคšเคŸीเคเคฎเคเคฒ เค•ोเคก เค•ा เคช्เคฐเคฏोเค— เค•เคฐเค•े เคšेเคธ เคฌोเคฐ्เคก เค•ैเคธे เคฌเคจा เคธเค•เคคे เคนैं เคœी เคนां เคฆोเคธ्เคคों เค‡เคธเคฎें เค†เคชเค•ो เคœ्เคฏाเคฆा เคฎेเคนเคจเคค เค•เคฐเคจे เค•ी เคœเคฐूเคฐเคค เคจเคนीं เคนै เค•्เคฏोंเค•ि เคฏเคน เคฌเคนुเคค เคนी เคธเคฐเคฒ เคนै เค†เคช เค‡เคธे เคฌिเคจा เคธीเคเคธเคเคธ เค•े เคฌเคจा เคธเค•เคคे เคนैं। 
เคœिเคธเค•ा เค†เค‰เคŸเคชुเคŸ เคนเคฎ เค†เคชเค•ो เคจीเคšे เคฆिเค–ा เคฆिเค เคนैं เคฏเคน เค•ेเคตเคฒ เคเคšเคŸीเคเคฎเคเคฒ เค•ा เคช्เคฐเคฏोเค— เค•เคฐเค•े เคฌเคจाเคฏा เค—เคฏा เคนै เค”เคฐ เคฏเคฆि เค†เคช เค‡เคธ เคธเคญी เค•ोเคฐ्เคŸ เค•ो เคกाเค‰เคจเคฒोเคก เค•เคฐเคจा เคšाเคนเคคे เคนैं เคคो เค‡เคธเค•ा เคนเคฎ เคเคšเคŸीเคเคฎเคเคฒ เคซाเค‡เคฒ เคญी เคฒिंเค• เค•เคฐ เคฆेंเค—े เคœिเคธे เค†เคช เคกाเค‰เคจเคฒोเคก เค•เคฐ เคธเค•เคคे เคนैं เค”เคฐ เค‡เคธเค•ा เค•ोเคก เคญी เค†เคช เคจीเคšे เคฆेเค– เคธเค•เคคे เคนैं। 


Chess board image


เคšेเคธ เคฌोเคฐ्เคก เคฎें เคœो เคธเคญी เค—ोเคŸिเคฏां เคนोเคคे เคนैं เค‰เคธे เคญी เคฌिเคจा เค•िเคธी เค‡เคฎेเคœ เค•े เคฒिंเค• เคฆिเค เค†เคช เคšेเคธ เคฌोเคฐ्เคก เคฎें เค‰เคจ เคธเคญी เค—ोเคŸिเคฏां เค•ो เคธेเคŸ เค•เคฐ เคธเค•ेंเค—े। 
เค‡เคธเค•े เคฒिเค เค‰เคจ เคธเคญी เคšेเคธ เคฌोเคฐ्เคก เค•े เคœो เค˜เคŸिเคฏा เคนोเคคे เคนैं เค‰เคธเค•ा เคเคšเคŸीเคเคฎเคเคฒ เค•ोเคก เคฒिเค–เค•เคฐ เค‰เคจ เคธเคญी เคฌूเคŸिเคฏों เค•ो เค‰เคธเคฎें เคธेเคŸ เค•เคฐ เคธเค•เคคे เคนैं। 


<html> 
    <head>
        <title>Chess Board</title>
    </head>
    <body>
        <center>
            <table border = "5px" bordercolor = "black" height = "43%" width = "43%" cellspacing = "0px" cellpadding = "3px">
            <caption ><u><b><em><mark><font size = "44px">CHESS BOARD</font></mark></em></b></u></caption>
            <tr>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9820</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9822</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9821</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9819</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9818</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9821</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9822</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9820</font></td>
            </tr>
            <tr>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9823</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9823</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9823</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9823</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9823</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9823</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9823</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9823</font></td>
            </tr>
            <tr>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9820</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9822</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9821</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9819</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9818</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9821</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9822</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9820</font></td>
            </tr>
            <tr>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9822</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9821</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9819</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9818</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9821</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9822</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9820</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9823</font></td>
            </tr>
            <tr>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9820</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9822</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9821</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9819</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9818</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9821</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9822</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9820</font></td>
            </tr>
            <tr>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9822</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9821</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9819</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9818</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9821</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9822</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px" color = "white">&#9820</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px" color = "red">&#9823</font></td>
            </tr>
            <tr>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9817</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9817</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9817</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9817</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9817</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9817</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9817</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9817</font></td>
            </tr>
            <tr>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9814</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9816</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9815</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9813</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9812</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9815</font></td>
                <td bgcolor = "white" align = "center"><font size = "10px">&#9816</font></td>
                <td bgcolor = "red" align = "center"><font size = "10px">&#9814</font></td>
            </tr>
        </table>
        <caption ><u><b><em><del><font size = "44px">USING ONLY HTML BY <mark>VIKAS</mark></font></del></em></b></u></caption>
    </center>
    </body>
</html>


๐Ÿ‘‰๐Ÿ‘‰ Click Here:- Download Chess Board.html


เคจिเคตेเคฆเคจ:-

             เค†เคชเค•ो เคนเคฎाเคฐा เคชोเคธ्เคŸ (Post) เค•ैเคธा เคฒเค—ा เค‡เคธे เค•เคฎेंเคŸ (Comment) เค•เคฐเค•े เคœเคฐूเคฐ เคฌเคคाเคं เค”เคฐ เคนเคฎाเคฐे เค‡เคธ เคชोเคธ्เคŸ เค•ो เค…เคชเคจे (Freind) เคฆोเคธ्เคคों เค•े เคชाเคธ เคœเคฐूเคฐ เคถेเคฏเคฐ (Share) เค•เคฐें। 

Popular Posts