Sapient Interview Questions

Answers were Sorted based on User's Feedback



Sapient Interview Questions..

Answer / jitendra narang

Sapient Interview Questions
It will be an online test of 42 questions. The test is
arranged with the help of a consultancy known as

IKM (International Knowledge Measurement) which arranges the
test.

Question 1. What will be the output of the following program?
public class Example {
public static void main(String... args) {
for(int x=0,y=0; x>y; x--,y++){
System.out.println(x + " " + y + " ");
}
}


Question 2. What will be the output of the following program?
public class Sample {
public static void main(String... args) {
int i=0, j =0;
while(i++ < 2)
{
do{
System.out.println(j + " ");
}while(j++ < 2);
}
}
}
Question 3. What will be the output of the following program?
public class Test {
public static void main(String... args) {
List lst = new ArrayList();
for(int i = 1; i < 5; i++)
lst.add(i);
Iterator iter = lst.iterator();
for(Object e : lst)
System.out.println(e);

Question 4 : Which of the following is correct definition of
doGet() method of a http servlet?

a) public void doGet(HttpServletRequest request,
HttpServletResponse response) throws

ServletException, IOException {

b) public void doGet(ServletRequest request, ServletResponse
response) throws httpServletException,

IOException {

c) public void doGet(HttpServletResponse response,
HttpServletRequest request ) throws

ServletException, IOException {

d) private void doGet(ServletResponse response,
ServletRequest request ) throws

HttpServletException, ServletException {


Question 5 : Which of the following will not compile?

a) execute() method on callable statement
b) executeQuery() method on statement
c) executeQuery() method of prepared statement.
d) execute() method of statement.


Question 6 : Which of the following are not valid methods of
EJBContext?

a) abstract public EJBHome getEJBHome();
b) abstract public EJBLocalHome();
c) abstract public EJBRemote getEJBRemote();
d) abstract public Properties getenvironment();

Question 7 : Which of the following piece of code is used to
the update the checked radio buttons

unchecked?
options were like document.frm.test.selected = false;

Question 8 : Which of the following helps increase the Tight
Encapsulation of a class?

Question 9 : Which of the following SQL query can be used to
fetch the customers from customer table

where zip is either '23' or '456' and unique last name?

Answer : select distinct last_name from customers where zip
in ('23', '456');

Question 10 : Creating a stateless session bean contains
calls of which of the following methods.

Question 11 : Which of the following methods can be used to
determine if current HttpSession object

came from a cookie or from an encoded URL ?

Options were like isSessionIdFromCookie() etc

Question 12 : this() and super() constructors can be used at
the same time or in the same constructor or

one below the other or cannot be used at the same time?

Question 13 : There was a question on 'OnMouseOver' event in
Java Script.

Question 14 : Scalar Functions in DBMS.
test
Which of the following are displayed in window status bar?


Question 15 : Which of the following can be used with switch
case :

switch case
a) float double
b) float char
c) byte char
d) char int
e) int char

Question 16 : What will be the output of the following piece
of code?
public class Sample {
public static void main(String... args) {
List lst = new ArrayList();
lst.add("1");
lst.add("2");
lst.add("1","3");
lst.add("2", "4");
System.out.println(lst);
}
}

Is This Answer Correct ?    98 Yes 29 No

Sapient Interview Questions..

Answer / manveer

Answer of Question 16:

Compile time error : The method add(int, Object) in the type List is not applicable for the arguments (String, String).

Is This Answer Correct ?    25 Yes 3 No

Sapient Interview Questions..

Answer / niharika

Answer to Question 6 : Which of the following are not valid
methods of
EJBContext?
Ans:
getEJBRemote

Is This Answer Correct ?    26 Yes 6 No

Sapient Interview Questions..

Answer / dd

Is This Answer Correct ?    8 Yes 2 No

Sapient Interview Questions..

Answer / akshay

in first question answer is terminated without print any thing

Is This Answer Correct ?    6 Yes 0 No

Sapient Interview Questions..

Answer / vipul

Answer 1 no output

Is This Answer Correct ?    2 Yes 0 No

Sapient Interview Questions..

Answer / vipul

Answer 2 output is
0
1
2
3

Is This Answer Correct ?    2 Yes 1 No

Sapient Interview Questions..

Answer / saurav

0
1
2
Output for q2

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More J2EE Interview Questions

What is Document Object Model?

0 Answers  


how many external variables are there in jsp ?

1 Answers  


What is java ee architecture?

0 Answers  


What is j2ee component?

0 Answers  


What is advance java?

0 Answers  






What is java used for in technology?

0 Answers  


Every field has setter and getter methods.what is happening in this methods.

2 Answers  


Is java is a technology?

0 Answers  


you are to choose between two procedures,both of which copute the minimum value in an array of integers.one procedure returns the smallest integer if its array argument is empty. the other requires a nonempty array.which procedure should you choose and why?

0 Answers  


Why is java called technology?

0 Answers  


What is a j2ee container?

0 Answers  


What are the four types of J2EE modules?

0 Answers  


Categories