display prime numbers between 1-100 in .net program By Mallikarjun A 18:13:00 Add Comment using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace PrimeNumber { class Program {... Read More
names sort in alphabetical order program in C# .net By Mallikarjun A 18:12:00 Add Comment using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Progr... Read More
XML interview Questions By Mallikarjun A 23:57:00 Add Comment 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 By Mallikarjun A 18:10:00 Add Comment 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 By Mallikarjun A 18:09:00 Add Comment 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 By Mallikarjun A 18:08:00 Add Comment 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 By Mallikarjun A 18:05:00 Add Comment using System; using System.Text.RegularExpressions; class Program { static void Main() { long a = countstr... Read More
Convert digits to word program in .net By Mallikarjun A 18:02:00 Add Comment 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 By Mallikarjun A 18:00:00 Add Comment <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 By Mallikarjun A 17:58:00 Add Comment <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 By Mallikarjun A 17:57:00 Add Comment <html> <body> <ul type="circle"> <li>cat</li> <li>dog</li> <li>cow</li... Read More
marquee tag in html By Mallikarjun A 17:54:00 Add Comment <marquee direction="down" onmouseover="scrollAmount=0" onmouseout="scrollAmount" style="position:abso... Read More
Basic tags in html program By Mallikarjun A 17:52:00 Add Comment <html> <head>Basic tags</head> <h1>abhi</h1> <h2>Abhi</h2> <h3>Abhi</h3> <h4... Read More
css universal selectors By Mallikarjun A 17:49:00 Add Comment <html> <head> <style> *{ color:green; } </style> </head> <body> <i>php</i> <p... Read More
html elements with class name in css By Mallikarjun A 17:48:00 Add Comment <html> <head> <style> big.x { background:red; } </style> </head> <body> <big class="x... Read More
Elements with Id selectors in css By Mallikarjun A 17:47:00 Add Comment <html> <head> <style> h3#A { background:red; ... Read More
Class Selectors in css By Mallikarjun A 17:46:00 Add Comment <html> <head> <style> .x { color:lightblue; background:red; } </style> </head> <body> <b ... Read More
Array Functions in Javascript By Mallikarjun A 17:40:00 Add Comment <html> <head> <title>Array Object</title> <script language="javascript" type="text/javascript... Read More
Array Object program in JavaScript By Mallikarjun A 17:38:00 Add Comment <html> <head> <title>Array Object</title> <script language="javascript" type="text/jav... Read More