| Back to Questions Page |
| Question |
what is sdlc |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Thamann |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
sdlc is software development life cycle.
1. Requirements gathering phase.
2. Analysis phase.
3. Design phase
4. Development phase.
5. Testing phase
6. maintenance phase  |
0 | Gita |
| |
| |
| Question |
What is the Difference between JMS queue reciever and JMS
queue requestor?
|
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Jms queue reciever is responsible for consuming the message
from the JMS in a queue. While JMS queue requestor is
similar to requset reply in soap. it waits fro a reply in
reply/to queue.  |
0 | Guest |
| |
| |
| Question |
Accenture NJ mostly ask question on Collection like
1)How to sort Objcts and how treeset sort them
2)Explain mechanism of Hashcode finding in Java
3)Name some of the Sorted collection. |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
The answer to all this question is easy but i think they
want answer from internal mechanism how it works inside
Java!!!
You think you answered well but they will always fail you
just hate then  |
0 | Guest |
| |
| |
|
|
| |
| Answer |
1)How to sort Objcts and how treeset sort them
Ans: *) We can sort objects using comparable and comparator
interface.
*) Treeset sort object using comparable interface.
2) Explain mechanism of Hashcode finding in Java
Ans:
1) Write [ java *Class name* ] = you will get class name and
hashCode no.
2) Implement the hashCode method in your class and call
hashCode method.
3) Name some of the Sorted collection.
Ans:
1) TreeSet
2) TreeMap  |
0 | Aditya Sharma |
| |
| |
| Question |
What is constant selection |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Rajat.fore |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
This feature allows you to mark a selection in query
designer as constant, navigation and filtering has no
effect on this during runtime.  |
0 | Satya |
| |
| |
| Question |
what is the entry date ,document date, posting date, value
date, and next run date |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Rddy786 |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Entry Date - System Date on which document is entered
Document Date - Date of the supporting document ie PO/
invoice/ Bill date
Posting date - date on which entry is posted to the ledger
or accounting date
Value date - the date on which doc is valued. ie for forex
valuation the value date is needed for calculating the
exchange rate difference
Next run date - this is for payment run. what the next day
for calculating the payment due document and discount
calculation  |
0 | Cijo |
| |
| |
| Question |
Why does most servlets extend HttpServlet? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Surajkumar.java |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
Almost all servlets written today are designed to use the HTTP
protocol, so most servlets currently extend the
javax.servlet.http.HttpServlet class.  |
0 | Surajkumar.java |
| |
| |
| Question |
event classes in sql server |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Ranjit Kumar Routhu |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
cursors,t-sql,stored procedures,databse,errors and warnings,
locks,objects,performance,scans,security audit,transactions,
user configurable these comes under sql server profile  |
0 | Ranjit Kumar Routhu |
| |
| |
| Question |
What is the puprose of Job Shared varaibel or tell me about
about job shared variable? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Kommichiranjeevi |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
A Job Shared Variable allows you to store data for use by
each process instance. A separate copy of the variable is
created for each new process instance. This resource is
useful for passing data to and from sub-processes without
creating an input or output schema for the called process.
You can use the Get Shared Variable and Set Shared Variable
activities to access the data instead of mapping data to a
called processes input or output schemas. New process
instances receive a copy of the variable, so data cannot be
shared across process instances.
Scope of the job shared variable is with in the process
instance i.e the values which was set in one process
instance ,can not be avaible in other process.
If job shared variable in Process definition-1 set to 5
then the same value will not exist in process definition -2
.This means a separate copy of instance is maintained in
each process instance.  |
0 | Chiranjeevi |
| |
| |
| Question |
how to make the entire screen protected. i.e., for example
when we design a delete screen before deleting the details
we need to popup a screen saying do u wish to delete(Y/N).
When this screen appears i want to make the previous screen
fields as protected.Please help me with the anser. i need
the entire screen to be protected.
Thanks in advance |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Laxmiroopa |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
I am not sure how to make the entire screen as protected by
a single statement. But we can protect the fields
individully by moving the user defined value to the
attribute field of the fields.
Attribute byte is a 1 byte field, in which the third bit
indicates whether it is protected(1) or unprotected (0) and
for all other fields we can give any of 0 or 1
For Ex: 00100101 ---- if this value is in attribute byte
then the filed is protected we can say, as the third bit is
1.
The decimal value of it(00100101) is 37.
The following program will show you how to move this value
to the attribute byte of the map fields.
01 fiel1 pic s9(4) comp value 37.
01 fiel2 redefines fiel1.
02 a pic x.
02 b pic x.
Move b to nameA. // name field will be protected.
Like this we move b to all the unproteceted fields on the
screen.
Please correct me if i am wrong and provide me the correct
soultion....  |
0 | Lenin |
| |
| |
| Answer |
Take a div tag in absolute position n set display property
to none .Now on any click event set width , height n
display="block" .Also set z-index accordingly .Your screen
will be block in specified width n height area .  |
0 | Rajesh [Accenture] |
| |
| |
| Question |
when a servlet sends request for first time it uses the
follwing methods
a)init
b)doget()
c)dopost()
d)service |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Sasirekha |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
when servlet gets first request, webcontainer loads the class and creates the object for it.
2)Constructor executes
3)webcontainer creates ServletConfig obj for servlet obj
4)init() method executes
5)service() method executes.  |
0 | Sri |
| |
| |
| Answer |
A servlet can receive a request or forward the request to
another component in an application.
When a servlet receives a request, if it is already
initialized, then the service() method is called. If not
then its constructor is called and then its init() method.  |
0 | Sowmya |
| |
| |
| Question |
System.out.println(101/14)
what is the output?
a)6
b)14
c)7.14
d)0 |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Sasirekha |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
answer is c  |
0 | Sasirekha |
| |
| |
| Answer |
7.14  |
0 | Guest |
| |
| |
| Answer |
Answer is 7 Only...it will not print the float value..  |
0 | Sivadasan |
| |
| |
| Answer |
System.out.println(101/14) It will print 7  |
0 | Somasekhar |
| |
| |
| Answer |
7.14  |
0 | Krishna |
| |
| |
| Answer |
Answer is 7,
as int is the default datatype for numeric values.. Not float.  |
0 | Sanchit |
| |
| |
|
| |
|
Back to Questions Page |