Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

HP Interview Questions
Questions Answers Views Company eMail

How would your co-workers/classmates/friends describe you?

16 33568

What are Storage Classes in C ?

32 115767

How the processor registers can be used in C ?

7 16038

What is an volatile variable?

15 34814

How to access or modify the const variable in c ?

16 36447

What is structure padding ?

3 30333

What is structure packing ?

2 13708

How to implement call back functions ?

3 9906

What is an anonymous union and where to apply that ?

3 9847

How to implement variable argument functions ?

1 8363

What are advantages and disadvantages of recursive calling ?

12 97680

How the C program can be compiled?

11 20077

What are the preprocessors?

9 16415

what are the various memory handling mechanisms in C ?

4 11467

What is OOPS and How it is different from Procedural Programming ?

23 65736

Post New HP Interview Questions


HP Interview Questions


Un-Answered Questions

What is UIL(user interface language)

509


What are the attributes of category?

1


What is http middleware?

431


Name the various communication channels in web service?

333


What is geo-synchronous point, and its specialty?

478






Hi Can any one Tell me in Detail from Starting Like i have finished the FI Part,now Soon after this How am i going to start the CO Part from where to where & how to link(Just give T.Codes i will understand) and when to Finish. Thanks in Advance.

1505


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2157


What is java ee technologies?

463


Do blue boxes still work?

1


What is the web part?

440


Can static class have constructor?

580


What is map in angular?

491


Explain what is the extension of file to save template?

505


What is used to measure process performance and for generating mi (management information)?

141


What is the use of accessors and mutators in eloquent?

391