using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PrimeNumber { class Program {...
Read More
Home / Archive for March 2016
names sort in alphabetical order program in C# .net
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Progr...
Read More
XML interview Questions
Extensible Markup Language (XML) 1. What is Extensible Markup Language (XML). XML is a simple and flexible markup language in the text...
Read More
Reverse an array program in C# .net
using System; class Program { static void Main() { int[] array = { 1, 2, 3,4,5,6,7,8,9,10 }; foreach (int a ...
Read More
Calculate the Length of a string program in c# .net
using System; class Program { static void Main() { string s1 = "Logic"; Console.WriteLine("The...
Read More
Number of lines in the string program in c# .net
using System; using System.Text.RegularExpressions; class Program { static void Main() { long a = countstring("T...
Read More
Count Lines in a String program in C# .net
using System; using System.Text.RegularExpressions; class Program { static void Main() { long a = countstr...
Read More
Convert digits to word program in .net
using System; public class ConvertDigitsToWords { public static void Main() { int num; int nextdigit; int numdigits; int[] n...
Read More
dl, dt, dd tags program in html
<html> <body> <dl> <dt>Html</dt> <dd>hyper text mark up lang</dd> <dt>Css</dt> ...
Read More
Sample ol (ordered list ) program in html
<html> <body> <ol type=a start=2> <li>orange</li> <li>apple</li> <li>banana</li>...
Read More
Sample ul (un order list) program in html
<html> <body> <ul type="circle"> <li>cat</li> <li>dog</li> <li>cow</li...
Read More
marquee tag in html
<marquee direction="down" onmouseover="scrollAmount=0" onmouseout="scrollAmount" style="position:abso...
Read More
Basic tags in html program
<html> <head>Basic tags</head> <h1>abhi</h1> <h2>Abhi</h2> <h3>Abhi</h3> <h4...
Read More
css universal selectors
<html> <head> <style> *{ color:green; } </style> </head> <body> <i>php</i> <p...
Read More
html elements with class name in css
<html> <head> <style> big.x { background:red; } </style> </head> <body> <big class="x...
Read More
Elements with Id selectors in css
<html> <head> <style> h3#A { background:red; ...
Read More
Class Selectors in css
<html> <head> <style> .x { color:lightblue; background:red; } </style> </head> <body> <b ...
Read More
Array Functions in Javascript
<html> <head> <title>Array Object</title> <script language="javascript" type="text/javascript...
Read More
Array Object program in JavaScript
<html> <head> <title>Array Object</title> <script language="javascript" type="text/jav...
Read More
Subscribe to:
Posts
(
Atom
)