Programming Code (840)
Scripts_Markup Code (257) Write out a function that prints out all the permutations of a string. For example, abc would give you abc, acb, bac, bca, cab, cba. You can assume that all the characters will be unique.
5 22904Write a prog to accept a given string in any order and flash error if any of the character is different. For example : If abc is the input then abc, bca, cba, cab bac are acceptable, but aac or bcd are unacceptable.
5 15413code to detect versions of different browsers like internet explorer, netscape, mozilla, opera etc
HCL,
2171
Can I replace HTML with XML?
How can manage theme in php?
What is data _null_? ,Explain with code when u need to use it in data step programming ?
Devise a program to implement the Fibonacci sequence.
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What is the functionality of EnumWindows?
How can restrict user to type upto 8 characters in textbox in php?
Write a python program to find the second largest number in a list?
Write a code snippet to display an integer in a binary format?
Write a python program to count the number of digits in a number?
how to use the GetTickCount() properly and what is that procedure for?
What output does this program generate as shown? Why? class A { A() { cout << "A::A()" << endl; } ~A() { cout << "A::~A()" << endl; throw "A::exception"; } }; class B { B() { cout << "B::B()" << endl; throw "B::exception"; } ~B() { cout << "B::~B()"; } }; int main(int, char**) { try { cout << "Entering try...catch block" << endl; A objectA; B objectB; cout << "Exiting try...catch block" << endl; } catch (char* ex) { cout << ex << endl; } return 0; }
write a c program which takes 20 numbers in an array as input from user and rearrange them in two different array defining even or odd
Write a Program to find the sum of digits of a given number until the sum becomes a single digit.
How to get one hasmap value in another hashmap ,only value not key