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 Languages Interview Questions
Questions Answers Views Company eMail

Have you ever interfaced with a database?

IBM,

2 6112


Given two strings like x=?hello? and y=?open?, remove any character from string x which is also used in string y, thus making the result x=?hll?.

IBM,

13 22242

1)#include int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?

5 8149

1 232 34543 4567654 can anyone tell me how to slove this c question

6 20511

Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;

ITCO, Wipro,

5 9704

What's diffrence between Get() and Post() Function

7 11353

What's the diff. between include() and Include_once().

Intrack,

5 10835

Use of Session

6 8288

int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?

TCS,

4 12758

Definition of class?

12 15875

What is your strongest programming language (Java, ASP, C, C++, VB, HTML,C#, etc.)?

Infosys, Microsoft, TCS,

24 46152

When is the last time you coded in C/C++? What is the most lines of original C/C++ code you have personally written in one project? How confident are you in your ability to write C or C++ without a reference?

Microsoft,

1 4179

How do you test your code?

Microsoft,

4 18071

Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.

Microsoft,

4 11035


Un-Answered Questions { Programming Languages }

How to integrate external scripts with zend framework ?

196


What is tuple when we have to use ?

860


List some database related query function used in cakephp.

3


How do I remove breadcrumbs from my drupal pages?

171


Explain heap and queue.

1104


What are the directory structure of yii 2.0 framework?

3


What are Features of Recursion?

83


Does wordpress involve coding?

155


Can I learn django without python?

478


What are the available Alternate security databases ?

1715


How to convert a list into a tuple?

925


How does run-time type information (rtti) work?

998


Dont ansi function prototypes render lint obsolete?

1146


How to use core folder in codeigniter?

546


If class D is derived from a base class B

789