Programming Languages Interview Questions
Questions Answers Views Company eMail

What is the difference between constant pointer and pointer to a constant. Give examples.

TCS,

4 11066

what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 6834

what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }

7 9193

In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?

4 5706

without selecting individually each field in Action Class from jsp,what is the best process to select as many as field at a time automatically from jsp page by using value object class.

1438

is it acceptable if we declare multiple exceptions in same overridden method.

2113

How to merge Action Form with Dyna Action Form in Struts.

1896

Which method protects back button to retrieve old value from previous page in Struts.

1455

will it allow to add same value in HashMap class.

1665

is try block possible without catch block?

3 4637

how do i add a column dynamically in a table by using java application?

1551

how do i create my own exception class which will restrict IO exception?

2303

what is best way to create a Thread class & why?

1592

how to avoid java script validation in client side validation?

2 3364

What should not contain a header file?

2 3794


Un-Answered Questions { Programming Languages }

What is php in simple words?

525


Tell me what library is used for pdf in php?

521


Purpose of "/" and "//" operator in python?

506


Is php a float?

543


What are the inheritance styles in django?

214






Explain what does the format %10.2 mean when included in a printf statement?

784


What is the need for Predictive Analysis in R?

59


How you can format a string without printing?

1


What is homestead in laravel?

422


an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational

817


If u need any fake experience certificate in software side, contact me at: vikramyadhav@gmail.com

7847


Is drupal a software?

63


How to install BDE network ?

1206


What is laravel dependency injection?

399


Multiply an Integer Number by 2 Without Using Multiplication Operator

326