Programming Code (840)
Scripts_Markup Code (257) write a c program to Create a registration form application by taking the details like username, address, phone number, email along with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 5 users and display the details. In place of password display “****”. (Use Structures).
10794write a program that reads a series of strings and prints only those strings begging with letter "b"
3130Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
2 6768write a program that prompt the user to enter his height and weight,then calculate the body mass index and show the algorithm used
4867write a program that calculate the volume of cylinder after user enters radius and height and show the algorithm used
1 10614write a program to calculate the radius for a quadratic equation use modular programming(function abitraction)hint use quadratic function
1 4876write a program to convert temperature from fa height into celcius and vise versa,use modular programming
3024write a program to calculate the amount of investment after a period n years if the principal investors was p and interest is calculated using compound interest,formular=a=p(1+r)^n
2864
What is xml schema?
how exactly is the lngColour used?
What is XSNL?
why nlogn is the lower limit of any sort algorithm?
Can someone please explain more about how the XML Gateway works and what its purpose is?
Given a spherical surface, write bump-mapping procedure to generate the bumpy surface of an orange
i don't know about working of nested for loop can any one help me
code to detect availability of cookies
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); } }
Write a Program to find whether the given number is a Armstrong number.
Code for Document Validation in XML.NET?
what is main difference between array_push and array_pop?
Can you write a program to find the average of numbers in a list in python?
write a function that allocates memory for a single data type passed as a parameter.the function uses the new operator and return a pointer to the allocated memory.the function must catch and handle any exception during allocation
Code for Creating a Form Using PlaceHolder Controls?