Thursday, May 4, 2017

Online Examination ASP.NET

<body>
    <form id="form1" runat="server">
    <div>
    Q1. Who is Primeminister of India?
        <asp:RadioButtonList ID="RadioButtonList1" runat="server">
            <asp:ListItem Value="A">Dr. Manmohan Singh</asp:ListItem>
            <asp:ListItem Value="B">Sonia Gandhi</asp:ListItem>
            <asp:ListItem Value="C">Rahul Gandhi</asp:ListItem>
            <asp:ListItem Value="D">Lal Bhadur Shstri</asp:ListItem>
        </asp:RadioButtonList><br/>
        Q2. Who is the captain of Indian Team?
        <asp:RadioButtonList ID="RadioButtonList2" runat="server">
            <asp:ListItem Value="A">Sehwag</asp:ListItem>
            <asp:ListItem Value="B">Dhoni</asp:ListItem>
            <asp:ListItem Value="C">Virat Kohli</asp:ListItem>
            <asp:ListItem Value="D">sachin</asp:ListItem>
        </asp:RadioButtonList><br/>
        Q3. Where is TajMahal?
        <asp:RadioButtonList ID="RadioButtonList3" runat="server">
            <asp:ListItem Value="A">Delhi</asp:ListItem>
            <asp:ListItem Value="B">Bihar</asp:ListItem>
            <asp:ListItem Value="C">Agra</asp:ListItem>
            <asp:ListItem Value="D">Jaipur</asp:ListItem>
        </asp:RadioButtonList><br/>
        Q4.How many byte in one bit?
        <asp:RadioButtonList ID="RadioButtonList4" runat="server">
            <asp:ListItem Value="A">8</asp:ListItem>
            <asp:ListItem Value="B">6</asp:ListItem>
            <asp:ListItem Value="C">7</asp:ListItem>
            <asp:ListItem Value="D">10</asp:ListItem>
        </asp:RadioButtonList><br/>
        Q5. Types of Memory?
        <asp:RadioButtonList ID="RadioButtonList5" runat="server">
            <asp:ListItem Value="A">4</asp:ListItem>
            <asp:ListItem Value="B">2</asp:ListItem>
            <asp:ListItem Value="C">3</asp:ListItem>
            <asp:ListItem Value="D">4</asp:ListItem>
        </asp:RadioButtonList>
        <asp:Button ID="Button1" runat="server" Text="Submit" onclick="Button1_Click" /><br/>
        <asp:Label ID="Label1" runat="server" Text=""></asp:Label>
    </div>
    </form>
</body>

No comments:

Post a Comment