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)
842Write a Program to find the sum of digits of a given number until the sum becomes a single digit.
870What 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; }
1244
how to use the GetTickCount() properly and what is that procedure for?
How to get Dynamically Linked Comboboxes Set?
What is data _null_? ,Explain with code when u need to use it in data step programming ?
Write a code snippet to display an integer in a binary format?
how to insert fname,lname,designation values into database while click on the submit button using windows authentication mode?
Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }
Code for Creating a Form Using PlaceHolder Controls?
How to swap two ASCII numbers?
Sir... please give some important coding questions asked by product companies..
Ask the user to input three positive integers M, N and q. Make the 2 dimensional array of integers with size MxN, where all the elements of I (I = 1,…,M) line will be members of geometrical progression with first element equal to the number of line (I) and denominator q.
How to export 2 datatables of a single dataset to 2 different worksheets of a single MSExcel file ?
How a web page can communicate with a web server while a user type characters in an input field.
1.What happens to a session object when the browser associated with it is closed? 2. Explain what happens when a servlet is sent a POST request? 3. Why does only one copy of a servlet get created? 4. Explain what happens when a browser requests a servlet? (for the first time) 5.How is information stored in a session object?
How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?
What are the special characters used in XML?