Programming Code (840)
Scripts_Markup Code (257) Consider the following markup:
How can i know that how many user are visited to my page in php?
Teta-Omeg-Big-Oh Show that f(n) = n2 + 3n3 is ;(n3).
What are nested elements in XML?
1+1/2!+1/3!+...+1/n!
Write a python program to find the second largest number in a list?
how to write a program that opens a file and display in reverse order?
write a program that can LOCATE and INSERT elements in array using c++ programming languages.
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 change winform look?
How to access oralce10g data from server to client in LAN?
Write a program that implements a date class containing day, month and year as data members. Implement assignment operator and copy constructor in this class.
What is the functionality of GetWindowText?
Write a script to delete all the files in a folder except one desired file.
can any one give me code to keyed a flat file and used chain in RPGLE to search any item
We need to write the function to check the password entered is correct or not based on the following conditions.. a) It must have atleast one lower case character and one digit. b)It must not have any Upper case characters and any special characters c) length should be b/w 5-12. d) It should not have any same immediate patterns like abcanan1 : not acceptable coz of an an pattern abc11se: not acceptable, coz of pattern 11 123sd123 : acceptable, as not immediate pattern adfasdsdf : not acceptable, as no digits Aasdfasd12: not acceptable, as have uppercase character