randomposts
Powered by Blogger.

Recent Posts

Create a web page that should display the Student Result Sheet Using HTML.

No comments
• Create a web page that should display the Student Result Sheet Using HTML. <html>                 <head>                                ...Read more

Create a web page that should display the following equations.

No comments
(adsbygoogle = window.adsbygoogle || []).push({}); • Create a web page that should display the following equations. <html>      <head>            <hr size=6% color="#330099">           ...Read more

Create an html page showing your own bio data in the following format.

No comments
• Create an html page showing your own bio data in the following format. Self-Learning ...Read more

Create an attractive web page that shows your college information with College logo as background image. (Web page should display information like College Name, Courses, Address, Contact Number & Email Address)

No comments
• Create an attractive web page that shows your college information with College logo as background image. (Web page should display information like College Name, Courses, Address, Contact Number & Email Address)  <html>      <head>           ...Read more

Create an html page that will show your name and address in a proper format with following title and heading. Title = “ Welcome to my Home Page” Heading = “ This is my First Page HTML PAGE” Write HTML CODE

No comments
  Create an html page that will show your name and address in a proper format with following title and heading. Title = “ Welcome to my Home Page” Heading = “ This is my First Page HTML PAGE” Write HTML CODE <html>      <head>           ...Read more

Write a program to print following triangle. a. Get input from user to print n number of line.

No comments
Write a program to print following triangle. a. Get input from user to print n number of line. e.g. (n=5)  * * * * *  * * *  * *  *  * # Program Code Here Note: *Remove the sentence___(Don’t Missing Syntax Required) #include<iostream.h> #include<conio.h> class...Read more

Write a program to print following triangle. (Use getdata() for get n value & display() for print triangle)

No comments
Write a program to print following triangle. (Use getdata() for get n value & display() for print triangle)       Get input from user to print n number of line.      e.g. (n=5) *    *  * *  * *...Read more

Write a program to print n step of the following series, 1, 3, 6, 11, 18, 29… Code in Java Programming

No comments
Write a program to print n step of the following series, 1, 3, 6, 11, 18, 29… Code in Java Programming Here... import java.util.*; ___(Don't Missing Syntax required) class series {      public static void main(String args[])___(Don't Missing Syntax...Read more