Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



Code Snippets Interview Questions
Questions Answers Views Company eMail

What is XML Element?

661

What is a well formed XML document?

545

Which tag is used to find the version of XML and the syntax?

655

What is a valid XML document?

571

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)

InterGraph,

842

Write a Program to truncate a given floating point value (e.g.16.25=16).

InterGraph,

891

Write a Program to find the sum of digits of a given number until the sum becomes a single digit.

InterGraph,

870

Write a Program to find whether the given number is a Armstrong number.

InterGraph,

837

Devise a program to implement the Fibonacci sequence.

Tech Mahindra,

929

Write a Program to find the number of words in a sentence.

InterGraph,

889

How can you print an address of a variable?

TCS,

898

Write a program to Print the Pascal triangle

InterGraph,

845

Write a Program for matrix multiplication.

InterGraph,

921

Write a Program to find the reverse of a given number.

InterGraph,

841

What 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


Un-Answered Questions { Code Snippets }

how to use the GetTickCount() properly and what is that procedure for?

3162


How to get Dynamically Linked Comboboxes Set?

2453


What is data _null_? ,Explain with code when u need to use it in data step programming ?

3364


Write a code snippet to display an integer in a binary format?

845


how to insert fname,lname,designation values into database while click on the submit button using windows authentication mode?

2545


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(); } }

2112


Code for Creating a Form Using PlaceHolder Controls?

2835


How to swap two ASCII numbers?

3053


Sir... please give some important coding questions asked by product companies..

2279


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.

3883


How to export 2 datatables of a single dataset to 2 different worksheets of a single MSExcel file ?

2442


How a web page can communicate with a web server while a user type characters in an input field.

1060


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?

2441


How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?

2559


What are the special characters used in XML?

607