What is servlets.

Answer Posted / dillip

servlet is a java program that runs inside a web
container,It is a server side program which is used to
develope web-application.

Is This Answer Correct ?    14 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is crud operations in java?

468


What is cache in java?

504


Why bean class is used in java?

446


What is jep in java?

468


How do I install jdk?

455






What is a static method?

521


What is meant by code profiling?

496


What are the types of cookies in java?

495


What is stateless object in java?

511


How do I open the java control panel?

500


What is type_scroll_insensitive in java?

479


Can we use lambda without functional interface?

502


What is a delimiter in java?

486


Are streams faster than for loops?

495


Write a program for the problem: the array of inetegers indicating the marks of the students is given, U have to calculate the percentile of the students aaccording to this rule: the percentile of a student is the %of no of student having marks less then him. For eg: suppose Student Marks A 12 B 60 C 80 D 71 E 30 F 45 percentile of C = 5/5 *100 = 100 (out of 5 students 5 are having marks less then him) percentile of B = 3/5*100 = 60% (out of 5, 3 have markses less then him) percentile of A = 0/5*100 = 0%.

1690