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).
10700write a program that reads a series of strings and prints only those strings begging with letter "b"
3068Write 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 6627write a program that prompt the user to enter his height and weight,then calculate the body mass index and show the algorithm used
4814write a program that calculate the volume of cylinder after user enters radius and height and show the algorithm used
1 10477write a program to calculate the radius for a quadratic equation use modular programming(function abitraction)hint use quadratic function
1 4753write a program to convert temperature from fa height into celcius and vise versa,use modular programming
2980write 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
2817
Who is responsible for XML?
Devise a program to implement the Fibonacci sequence.
Write a python program to check if a number is a perfect number?
What is the best way to make wordpress plugin
Given a circular list of integers (when you reach the end of the list you come back to the beginning), what is the most efficient algorithm to find the smallest integer in the list? For example: circular_list = [22, 52, 66, 82, 5, 8, 12, 19].
function to combine two or more arrays
code to keep a page Out of the browser history
Write a program that will convert an integer pointer to an integer and vice-versa.
What is an attribute?
3. Program to find the Sum of give series. a. (1)+(1+2)+(1+2+3)+(1+2+3+4)+……………………………….. b. 1/1+1/9+1/25+1/49+……………...
Design a timer circuit using VHDL which has the following: input : start_timer(ST) output: long_time(LT) short_time(ST) when the timer is triggered by the ST(either 0 or 1) signal the timer should generate two timing signals accordingly.While the long time is going ON the other should be OFF and vice versa.
determine which Element received an Event
can everyone explain this code Private Sub DrawRect(rectSource As RECT, lngColour As Long) Line (rectSource.Left, rectSource.Top)-(rectSource.Left, rectSource.Bottom), lngColour Line (rectSource.Left, rectSource.Top)- (rectSource.Right, rectSource.Top), lngColour Line (rectSource.Right, rectSource.Bottom)- (rectSource.Right, rectSource.Top), lngColour Line (rectSource.Right, rectSource.Bottom)- (rectSource.Left, rectSource.Bottom), lngColour End Sub
How to encode and decode URL strings?
Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?