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)
901Write a Program to find the sum of digits of a given number until the sum becomes a single digit.
924What 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; }
1315
what is the structure of xml document ?
What is GUID anyway?
What is a StAX Parser?
What is the functionality of GetWindow?
What is xml schema?
How can you relate the function with the structure? Explain with an appropriate example.
Can we change the validator-rules.xml for our own validations in struts??
Can we run Applet in Web browser with security policy files
How can I include conditional statements in XML?
Write a Program for matrix multiplication.
How can a procedure fetch data from FTP? I need a general code for this..
How can i know that how many user are visited to my page in php?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is a cdata section in xml?