Programming Code (840)
Scripts_Markup Code (257)
write a simple calculator c program to perform addition, subtraction, mul and div.
How to get Dynamically Linked Comboboxes Set?
write a program that creates a sequenced array of numbers starting with 1 and alternately add 1 and then 2 to create the text number in the series , as shown below. 1,33,4,6,7,9,............147,148,150 Then , using a binary search , searches the array 100 times using randomly generated targets in the range of 1 to 150
write a program in java to find the moving average of all prime numbers between 2 and 100.
write a program to convert temperature from fa height into celcius and vise versa,use modular programming
Hello Sir, Thanks for the Solution but, can you pls. Explain the coding for the Static Function & static variable from the below coding....waiting for Ans. class fact { public static void Main() { fact f=new fact(); int x=1; //Declaration of x as 1 int k=Convert.ToInt32(Console.ReadLine()); for(int i=1;i<=k;i++) { x= x *i; } System.Console.WriteLine(x); } }
Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }
Write a python program to check if a number is an armstrong number?
write a program that reads a series of strings and prints only those strings begging with letter "b"
Write a program that print in screen a tree with its height taken from user by entering number of 4 digits and find the odd numbers then calculate the sum of odd numbers so he get the height of tree?
can you please write a program for deadlock that can detect deadlock and to prevent deadlock.
advance the focus to next consecutive fields when Enter Key is pressed
Write a script to delete all the files in a folder except one desired file.
What is data _null_? ,Explain with code when u need to use it in data step programming ?
Code for Using Keyboard Events?