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...



Programming Code Interview Questions
Questions Answers Views Company eMail

Code for Using Keyboard Events?

2612

Code for Working with Files under a Directory?

1 5418

How to Create Files by Using the FileInfo Class?

1 6270

Code for Reading and writing from a file?

IBM, Xoriant,

2722

How to Split Strings with Regex in Managed C++ Applications?

Microsoft,

3683

Code for Method of Handling Factorials of Any Size?

2491

Code for Easily Using Hash Table?

3046

Code for Two Classes for Doing Gzip in Memory?

3277

Code for Small C++ Class to Transform Any Static Control into a Hyperlink Control?

Wipro,

3070

Code for Document Validation in XML.NET?

TCS,

2386

Code for a Simple Way to Write XML in .NET (XmlTextWriter)

1 4680

How to Bind Nested XML to a Repeater Control with Container.DataItem?

3642

Code for Presenting Parent/Child Data in a Data Grid Row?

TCS,

2561

Code for Communicating over Sockets?

2375

How to use a Multidimensional SAFEARRAY to pass data across from COM objects ?

Infosys,

1 6616


Un-Answered Questions { Programming Code }

Beautiful is for 012345678 9 and a code for similar word containing the same alphabets

6278


design a class car having variables model, yr_of_manufacture, owner,reg_no. Design methods for assigning the values, Printing the values( you decide gui,control, any other methods if require)

2145


an on-line examination application using html jsp servlet and jdbc. including session management and cookies

4880


We need to write the function to check the password entered is correct or not based on the following conditions.. a) It must have atleast one lower case character and one digit. b)It must not have any Upper case characters and any special characters c) length should be b/w 5-12. d) It should not have any same immediate patterns like abcanan1 : not acceptable coz of an an pattern abc11se: not acceptable, coz of pattern 11 123sd123 : acceptable, as not immediate pattern adfasdsdf : not acceptable, as no digits Aasdfasd12: not acceptable, as have uppercase character

4485


i want run following code on button click of view. i am trying to retrieve data from isc_order_details table and isc_product table. but after retriaval of data i m getting error like FIELD MUST BE ENTERED!! DECLARE m number; n number; CURSOR order_details IS SELECT PRODUCT_ORDER_QUAN,PRODUCT_ID FROM isc_order_details WHERE order_id=:isc_order_master.order_id; amount NUMBER (8,2):=0.0; alert number; BEGIN go_block('isc_order_details'); first_record; m:=:system.cursor_record; last_record; n:=:system.cursor_record; OPEN order_details; --for i in m..n loop FETCH order_details INTO :ISC_ORDER_DETAILS.PRODUCT_ORDER_QUAN,:ISC_ORDER_DETAIL S.PRODUCT_ID; IF order_details%FOUND THEN SELECT order_value,order_date INTO :ISC_ORDER_MASTER.ORDER_VALUE,:ISC_ORDER_MASTER.ORDER_D ATE FROM isc_order_master WHERE order_id=:ISC_ORDER_MASTER.ORDER_ID; SELECT product_desc,product_price INTO :ISC_ORDER_DETAILS.PRODUCT_DESC,:ISC_ORDER_DETAILS.PROD UCT_PRICE FROM isc_product WHERE product_id=:ISC_ORDER_DETAILS.PRODUCT_ID; next_record; END IF; EXIT WHEN order_details%NOTFOUND; END LOOP; last_record; CLOSE order_details; EXCEPTION when NO_DATA_FOUND then alert:=SHOW_ALERT('ENTER_DATA'); Go_Item('isc_order_master.order_id'); END;

2269


Write a program that will convert an integer pointer to an integer and vice-versa.

904


A suduco given & u hv 2 check if it is incomplete(blanks left),or correct or incorrect

2890


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

889


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


How can you print an address of a variable?

898


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

2559


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

891


how to write a program that opens a file and display in reverse order?

3073


In a gymnastic competition, scoring is based on the average of all scores given by the judges excluding the maximum and minimum scores. Let the user input the number of judges, after that, input the scores from the judges. Output the average score. Note: In case, more than two judges give the same score and it happens that score is the maximum or minimum then just eliminate two scores. For example, if the number of judges is 5 and all of them give 10 points each. Then the maximum and minimum score is 10. So the computation would be 10+10+10, this time. The output should be 10 because 30/3 is 10.

2966


What is the functionality of EnumChildWindows?

494