| Back to Questions Page |
| |
| Question |
what is sendredirect? |
Rank |
Answer Posted By |
|
Question Submitted By :: Gopalraop |
| This Interview Question Asked @ TCS |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | sendRedirect is used in JSP pages for transfering to any
other jsp page with all the request parameters intact with
the request.
While in case of forward the parameters are not send with
the request only the url is send for transferring to any
other jsp page.  |
| Shahnawaz Sheikh |
| |
| |
| Answer | opposite is rite.....
incase of forward the request parameter will also go with
the url.
incase of sendredirect all the parameter in the request will
be killed.  |
| Ajay Dhingra [Techmatics] |
| |
| |
| Question |
how can i cal servlet from jsp page?how can i pass
variablesfrom the jsp that servlet can access? |
Rank |
Answer Posted By |
|
Question Submitted By :: Gopalraop |
| This Interview Question Asked @ Verizon |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | By using JSP forward attriputes within the html tag we can
just forward our page to servlet.or by using
response.sendRedirect()method we can call servlet page.
for example
-----------
<jsp:forward page="/relativepath/YourServlet" /> or
response.sendRedirect("http://path/YourServlet").
We can also pass the parameters in the same way to the
servlet
for example
-----------
<jsp:forward page=/relativepath/YourServlet>
<jsp:param name="name1" value="value1" />
<jsp:param name="name2" value="value2" />
</jsp:forward>
You may also pass parameters to your servlet by specifying
response.sendRedirect("http://path/YourServlet?
param1=val1").
 |
| Ranjani |
| |
| |
|
|
| |
| Question |
what is request dispatcher and how does it work? |
Rank |
Answer Posted By |
|
Question Submitted By :: Gopalraop |
| This Interview Question Asked @ CTS |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Request dispatcher is used to transfer the same rquest to
another page/servlet without user interaction.
Exampe:
Suppose we have 2 servlets.
Write the below code in first Servlet
----
----
RequestDispatchet rd = request.getRequestDispatcher
("/secondServlet");
rd.forward(request, response);
//or rd.include(request, response);
---
----
Similar thing can be done in JSPs also
Write the below code in one.jsp
<js:forward page="two.jsp"/>
or
<jsp:include page="two.jsp");
If we use "forwad" then request will transfered to the
second page but not returned back to first page. We can see
only the second page's output.
If we use "include" then the sencond page itself will be
included in the first page. Then the output is the
combination of both the pages.  |
| Mahesh Bolla |
| |
| |
| Question |
what is servlet filter? |
Rank |
Answer Posted By |
|
Question Submitted By :: Gopalraop |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | In http servlet contains doget,dopost methods etc and it
takes two parameters only namely as
HttpServletRequest,HttpServletResponse and in Filter
concept contain one method has doFilter method .it takes 3
parameters namely as
HttpServletRequest,HttpServletResponse,FilterChain.the
Filter chain is use to convert one filter to another filter
Filters are mainly used for filtering the components and we
can do any modifications using Filters.  |
| Dileep |
| |
| |
| Question |
What are the advantages of using sql server over ms access
or why should one use sql instead of ms access |
Rank |
Answer Posted By |
|
Question Submitted By :: Anil |
| This Interview Question Asked @ Impetus |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Some SQL Server 2000 and Access 2000 products limits:
Feature SQL Server 2000 Access 2000
database size 1,048,516 TB 2 GB plus
linked tables size
objects in a database 2,147,483,647 32,768
user name length 128 20
password length 128 14
table name length 128 64
column name length 128 64
index name length 128 64
Number of concurrent users limited 255
columns per table 1024 255
table size limited 1 GB
number of indexes in a table 250 32
number of columns in an index 16 10
bytes per row 8060 2000
number of tables in a query 256 32
columns per SELECT statement 4096 255
nested subqueries 32 50
number of enforced relationships 253 32  |
| Ramakrishna |
| |
| |
| Question |
java can provide security ,how can provide? |
Rank |
Answer Posted By |
|
Question Submitted By :: Gopalraop |
| This Interview Question Asked @ IBM |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Java doesn't allow direct access to memory like C/C++.
Memory access violations are the root cause of 90% (approx,
maybe more) of all software bugs/problems. This is also the
root cause of many viruses, etc. But there are many more
reasons why Java is secure...
Java provided with FireWall between a networked application
and your computer.
objects have access levels(private,public,protected)
class file is in bytecode format(ie. encrypted)  |
| Vatti |
| |
| |
| Answer | java is a secure language because of ByteCode.
A bytecode is a just like as machine code, whenever we
compile a src program in java, compiler creates a .class
file this .class file is called as bytecode. Then with the
help of this byte code java application luncher runs the
program and create's exe of a program....
java doesn't provide acess to memory directly that's why
it's also called a Robustic language.  |
| Gaurav [Techmatics] |
| |
| |
| Question |
Why do u want to change the job? |
Rank |
Answer Posted By |
|
Question Submitted By :: Snehagirish |
| This Interview Question Asked @ Minecode |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Just for career growth and better opportunity.  |
| Neha |
| |
| |
| Answer | better prospectous.  |
| Vish |
| |
| |
| Question |
What are the qualites should tester have? |
Rank |
Answer Posted By |
|
Question Submitted By :: Snehagirish |
| This Interview Question Asked @ Minecode , Wipro |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | A tester should have a strong "test-to-break" attitude.
He/She should be able to get complete picture of the system
being developed. He should be able to think intuitively of
actions to be performed to break the system(should be
creative in breaking the system).  |
| Vijay Kumar |
| |
| |
| Answer | communication skills, Knowledge of testing types, ability to
analyze requirements, documentation skill, leadership quality,
analytical and judging skill  |
| Anpo |
| |
| |
| Answer | In addition to the above, the tester should not develop any
hostility with the development team but only help them
identifying the bug/error/defect in other words he/she
should do the job perfectly. The tester should render
his/her services.  |
| Vijay Kumar |
| |
| |
| Answer | tester should think like customer
then he will get bugs tester are the first customers to the
product so feel like customer and test the project  |
| Ravi |
| |
| |
| Answer | A good test engineer has a 'test to break' attitude.
An ability to take the point of view of the customer
A strong desire for quality, and an attention to detail.
Tact and diplomacy for maintaining a cooperative
relationship with developers.
Testers are fundamentally honest and incorruptible
Last but not the least is “Patience  |
| Sudhakar8 |
| |
| |
| Answer | A good test engineer has a 'distructive' attitude, an
ability to take the point of view of the customer, a strong
desire for quality, and an attention to detail. Tact and
diplomacy are useful in maintaining a cooperative
relationship with developers, and an ability to communicate
with both technical (developers) and non-technical
(customers, management) people is useful. Previous software
development experience can be helpful as it provides a
deeper understanding of the software development process,
gives the tester an appreciation for the developers' point
of view, and reduce the learning curve in automated test
tool programming. Judgement skills are needed to assess
high-risk areas of an application on which to focus testing
efforts when time is limited.  |
| Dasaradh |
| |
| |
| Question |
Why do u choose Testing as ur career? |
Rank |
Answer Posted By |
|
Question Submitted By :: Snehagirish |
| This Interview Question Asked @ Minecode |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | the possibility of getting a job is tooooooooooooo high
because company has only development on java or only on .net
both the companies require testers
does not depend on technology today java tommorow kava
kidding
consistent job  |
| Praveen |
| |
| |
| Answer | You can tell in this fashion....
1.Testing is a process where tester has to think a lot,and
I am a kind of guy who want to imagine and think a
lot...and only after imagination analysis comes...and this
two are the main objective of testing...that is imagine and
analyse the defect...
2.10 yrs back there was no seperate field for
testing....developers usually did that...but now there is
special field called testing...in which specialised or
frsher can think of a diffrent unique line in IT
industry..So to achieve new kind of experience I like to
join testing
3.The future market prospective of testing or I can say the
job prospect is high in future for testing.  |
| Rudraneel |
| |
| |
| Question |
Write the testcase for pen |
Rank |
Answer Posted By |
|
Question Submitted By :: Snehagirish |
| This Interview Question Asked @ Minecode |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | color of the pen
color of the cap
whether the cap is easily removed or not
check the color ofte refill
chek for the smoothness of writing
whether it is able to write on smooth paper or not
whether it can write on hard surface  |
| Praveen |
| |
| |
| Answer | The basic requirement for the pen is writing....
check whether the pen is writng R not.
check the inkcolour whats ur need.
check out the compny's name.
check the pen is for refillng R not.
check the colour of the pen
chek for the smootsihness of writing
whether it is able to write on smooth paper or not
whether it can write on hard surface  |
| Vishnu |
| |
| |
| Answer | check whether the pen size is holdable within the fingers.
check whether thr it can write on the smooth paper or the
oiled paper.
check whether the ink colour is as prefered by the user.
check whether it is ball or ink niddle?  |
| Satish |
| |
| |
| Answer | Along wid the prev answer i wld like 2 add 1 more step...
if you keep the pen in water for a period of time..check
whether u can still able to write or not!!!
Thanks
Bib
Mail me@ chikun.acharya@gmail.com  |
| Bib |
| |
| |
| Answer | Functional Test cases
1) It should be able to write on paper
Use different types of papers - e.g. normal writing
paper,butter paper.
2) Write on rough surface & then again it should be able to
write on paper.
3)Integration Test Cases
Dismantle the pen.
Again try to assemble it.It should get assembled properly.
4)UI Test cases
Look n feel
5)Usability
Holdable or not etc  |
| Sachin |
| |
| |
| Answer | Check for the availability of Reifill inside the PEN.
Check for the availability of INK in the reifill
Check whether the PEN is able to produce ink when some
thing is written in a paper.  |
| Raghu |
| |
| |
| Answer | we can define as Factor Also:-
1. Correctness:- a)To check the functionality of Pen.
check whether the pen is writng R not.
b)whether the cap is easily removed or not
2. Negative:- a)When open cap is pen releasing Ink
b)Check whether the PEN is not producing ink when some-
thing is written on a paper.
c) check whether cap is cracked when tightned it on Pen.
3. Usability:-
a)check grip of pen is Comfortable for anybody
b)check out the compny's name.
4. User-Interface:- Check Color, Size, Shape of Pen
5. Integration:-
Include:- Pen, Cap, Refill, Ink, Pointer,Stickers /lables.
6. compatibility:- Pen should be copatible for any
refill/ball or ink niddle?
7. Performance:-check whether it is ball or ink niddle?
check whether thr it can write on the smooth paper or the  |
| Guest |
| |
| |
| Question |
Write the 3 TestCases to prove tht it is a softdrinkbottle
or not. |
Rank |
Answer Posted By |
|
Question Submitted By :: Snehagirish |
| This Interview Question Asked @ Minecode |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | 1.Is that bottle has soft drink
2.is bottle has any label of soft drink company.
3,is that bottle has attractive look like other soft drink
bottle  |
| Vijay |
| |
| |
| Answer | Hi Vijay,
Thanks for posting...but i need some more coz interviewer
is not satisfied with these answer  |
| Snehagirish |
| |
| |
| Answer | 1. Validate the presence of Soft Drink label.
2. Validate the bottle look, it should match (not
precisely) with that of other providers.
3. Validate the information provided on drink bottle, the
information shouuld convey the message to the masses that
it is a soft drink bottle.
4. If it is a SODA drink, it should have a taste of SODA
too.
5. if any particular fruit picture is give on the bottle,
verify the taste according to that.
Now Validate the following through some feasible and
easiely available toolkit as per soft drink manufacturing
standards. These TESTS will make sure SCIENTIFICLY and as
per HEALTH STANDARDS that the given DRINK is a SOFT DRINK
1. Test if pesticides are present as per the industry
standards.
2. Validate the absence of alcohal in the drink.
3. Validate the absence of herbicides in the drink.
4. Validate the concentration of the drink.
5. Validate the blend of added ingredients and water. It
should be in a acceptable proportion.  |
| Sgarg |
| |
| |
| Answer | 1.check if it has any name mentioned as Soft drink on the
bottle.
2.check the contins and the flovor of the bottle
3.make sure that the color and floavor and quantatty
mentioned or same .
4.check if it contains any chemicals .
5.Check the expiry period and try to check if has some
smell before the expiry period.
6.check its effect when it is in Cold storage and hot
storage .
7.check if the bottle has properly sealed or not .  |
| Nish |
| |
| |
| Answer | -check for the availabilty of the ingrediants label.
-check for the alcohol percentage(as per the softdrink
prospective)
i hope these ar e the two things tht justify the
softdrinkbottle  |
| Raghu |
| |
| |
| Answer | 1)check the ingradients
2)check the label on bottle
3)check colour of the bottle
4)check the test of the contents.
5)check any known brand name on bottle.  |
| Sudhir Khond |
| |
| |
| Question |
whar r the benfits of Load Controlar? |
Rank |
Answer Posted By |
|
Question Submitted By :: Praveen |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | You use the LoadRunner Controller to manage and maintain
your scenarios. Using the Controller, you control all the
Vusers in a scenario from a single workstation.  |
| Satish |
| |
| |
| Question |
WHAT IS THE DIFFERENCE BETWEEN MANUAL CORRELATION AND
AUTOMATION CORRELATIONS? |
Rank |
Answer Posted By |
|
Question Submitted By :: Praveen |
| This Interview Question Asked @ Wipro |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | LoadRunner addresses this issue through correlation.
Correlation saves the changing values, in our case the
session ID, to a parameter. When running the emulation, the
Vuser does not use the recorded value—instead, it uses the
new session ID, assigned to it by the server.
Correlation is used to obtain data which are unique for each
run of the script and which are generated by nested queries.
Correlation provides the value to avoid errors arising out
of duplicate values and also optimizing the code (to avoid
nested queries). Automatic correlation is where we set some
rules for correlation. It can be application server
specific. Here values are replaced by data which are created
by these rules. In manual correlation, the value we want to
correlate is scanned and create correlation is used to
correlate.  |
| Satish |
| |
| |
| Answer | Property wise both are same, the difference lies in the
understanding, in automatic correlation there is some set
of rules and we have to import these rules for specific
protocol and it is done automatically by the rules just we
have to click options before recording, while manually we
search for the possible dynamic value generated and we
apply function to capture the values web_reg_save_param and
place at the proper place.  |
| Saumya |
| |
| |
|
| |
|
Back to Questions Page |