Programming Code (840)
Scripts_Markup Code (257) Write a Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
834Write a Program to find the sum of digits of a given number until the sum becomes a single digit.
859What output does the following code generate? Why? What output does it generate if you make A::Foo() a pure virtual function? class A { A() { this->Foo(); } virtual void Foo() { cout << "A::Foo()" << endl; } }; class B : public A { B() { this->Foo(); } virtual void Foo() { cout << "A::Foo()" << endl; } }; int main(int, char**) { A objectA; B objectB; return 0; }
1229
For printing a message we use System.out.println in normal programs. We use String msg="text....."; Can't we use String msg=" " in normal programs and System.out.println("........") in applets. Please answer this question?
Code for Adding Scripting Support to an Application?
Write a python program to check if a string is a palindrome or not?
Write a program to find sum of the digits of a number in python?
Coding for .NET Delegates?
What is a well formed XML document?
Write a function that takes an array of integers and efficiently calculates and returns the Least Common Multiply in python.
Could u please tell me any UNIX scripts that 'll lead to find the network latency of the servers.?or else any unix command to find the network latency of a server?Thnx in advance...
how to take time as input in the format (12:02:13) from user so that controls remains between these columns?
1+1/2!+1/3!+...+1/n!
how to copy form data between different pages
write a program to convert temperature from fa height into celcius and vise versa,use modular programming
how to test the orientation of the layout in android.to note any changes in the ui design when change orientation
I have multiple datasets and I have to search a particular string in all of them at a single time. Please suggest a full jcl or rexx tool for it.
What is a markup language?