ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 


 

Company >> ACS >> ACS Questions
 
 ABN AMRO aptitude test questions  ABN-AMRO Aptitute Test Questions (3)  Resience technical test questions  Resience Technical Test Questions (3)   interview questions   Interview Questions (55)
 
Back to Questions Page
Question   Hi, Anybody can explain me What is the Difference between 2- tier and 3-tier Architecture. Rank Answer Posted By  
 Interview Question Submitted By :: Gardasulaxmi
I also faced this Question!!   © ALL Interview .com
Answer
In a modern two-tier architecture, the server holds both the application and the data. The application resides on the server rather than the client, probably because the server will have more processing power and disk space than the PC.

In a three-tier architecture, the data and applications are split onto seperate servers, with the server-side distributed between a database server and an application server. The client is a front end, simply requesting and displaying data. Reason being that each server will be dedicated to processing either data or application requests, hence a more manageable system and less contention for resources will occur
 
0 Rahul
 
 
Question   can any1 inform me abt office work aptitude????????? Rank Answer Posted By  
 Interview Question Submitted By :: Guest
I also faced this Question!!   © ALL Interview .com
Answer
hai this is rajesh...i also applied for epfo...i have been
searching answer for this question... finally i found in one
book that is clerical aptitude.... which is often seen in
all bank clerk exams..... dont worry..........
 
0 Rajesh
 
 
Question   Whom you report if you face difficulty in understanding the business process given in Functional Spec. Rank Answer Posted By  
 Interview Question Submitted By :: G.shankar
I also faced this Question!!   © ALL Interview .com
Answer
Intitially we will discuss with TL. Later we can arrange a 
call with onsite people to solve the difficulty in FS.
 
0 Buddula15
 
 
 
Question   Whom do you report when you find difficulty in Tech. designing? Rank Answer Posted By  
 Interview Question Submitted By :: G.shankar
I also faced this Question!!   © ALL Interview .com
Answer
Generally first we discuss with Team lead. Even the problem 
is not solved then we will try to arragne a call with 
onsite guys.
 
0 Buddula15
 
 
Question   Tools used for internal communication. Rank Answer Posted By  
 Interview Question Submitted By :: G.shankar
I also faced this Question!!   © ALL Interview .com
Answer
In Real Time Mail communication with cliet is alomost in 
Lotus Notes....
 
0 Buddula15
 
 
Question   Which function module you will use to attach a search help to a field in Selection screen? Rank Answer Posted By  
 Interview Question Submitted By :: G.shankar
I also faced this Question!!   © ALL Interview .com
Answer
CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE'
 
0 Raju
 
 
Answer
REPORT z_test11 .


PARAMETERS:
p_carrid(2).




DATA: table1 LIKE
ddshretval
OCCURS 0 WITH HEADER LINE.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_carrid.



CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
EXPORTING
tabname = 'scarr'
fieldname = 'carrid'
* SEARCHHELP = ' '
* SHLPPARAM = ' '
* DYNPPROG = ' '
* DYNPNR = ' '
* DYNPROFIELD = 'p_carrid'
* STEPL = 0
* VALUE = ' '
* MULTIPLE_CHOICE = ' '
* DISPLAY = ' '
* SUPPRESS_RECORDLIST = ' '
* CALLBACK_PROGRAM = ' '
* CALLBACK_FORM = ' '
* SELECTION_SCREEN = ' '
TABLES
return_tab = table1
EXCEPTIONS
field_not_found = 1
no_help_for_field = 2
inconsistent_help = 3
no_values_found = 4
OTHERS = 5
.
IF sy-subrc 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
p_carrid = table1-fieldval.


START-OF-SELECTION.
WRITE: p_carrid.
 
3 Rajarao
 
 
Question   Events in Reporting. Which events we can ignore while coding. Rank Answer Posted By  
 Interview Question Submitted By :: G.shankar
I also faced this Question!!   © ALL Interview .com
Answer
we can ignore Start of selection,should not be preceeded by 
any Event.
 
0 Sampath D
 
 
Question   This is the question related to Traceability Matrix. Say we have 10 requirements for a project. If one of the testing team member misses the 9th requirement. Then how can we justify the Traceability Matrix and what is the further action to be taken. Please advice. Rank Answer Posted By  
 Interview Question Submitted By :: Srinivas
I also faced this Question!!   © ALL Interview .com
Answer
for  this first we will discuss with projectleader or 
bussiness anlyst to collect the requirment again .
if it is not possible we will discuss with clint to collect 
that missed requirement again.
 
5 Sksm
 
 
Answer
This is the problem with the traceability matrix. 
Traceability has following disadvantages
1. Any requirement missed/omitted cannot be tracked easily
2. Requirement not mentioned in the functional specs can be 
tested.
For example, testing the boundary value conditions for 
minimum deposit amount, say, 1000 INR. The following 
conditions would be considered,
1.<1000
2.=1000
3.>1000
Here, FS only talks about the minimum amount to be 
maintained in a customer's account. What is not mentioned 
in the FS is also tested(<1000 and >1000). Therefore, 
traceability is ineffective.
 
0 Vignesh
 
 
Answer
The RTM lists all the requirements in the SRS by giving the 
requirement ids. The tester referes the SRS to write the 
test cases and againg maps the test cases to SRS by giving 
the test case ids in RTM against the requirement id. So if 
any requirement is missed by Tester then he will miss the 
test cases for that requirement. But when he will go to 
update the RTM for test cases, he will not find test case 
ids for that missing requirement. Hence the RTM helps out 
to find any missing requirement and ensures the test 
coverage by maping test case id with the requirement ID.
 
0 Anant
 
 
Answer
It is always good that traceability is mapped with 
requiremnt, the use cases,then test case.
tester can write testcase based on the use cases, use case 
must cover all the possible scenarios.
if any test case is missed out go back to use case,follow 
by SRS.
 
0 Muralidhara
 
 
Answer
Normally in any process orieneted company there will be 
tool which tracks birectional requirement traceabilty. 
requirement traceability tool also facilates to run 
requirement GAP. All tagged requirements should have an 
associated test case(s) otherwise GAP report will mark the 
requirement with no test.

Usually GAP analysis will be done before baselining test 
plan.
 
0 Kumara Swamy
 
 
Question   What do you mean by domestic expenses? Rank Answer Posted By  
 Interview Question Submitted By :: Murali
I also faced this Question!!   © ALL Interview .com
Answer
Domestic Expenses are own expenses occur due to personal 
uses.This expense can be controlled were it is not fixed 
i.e. can be avoided . Eg. Party expenses.
 
0 Vanadhi Ramasami
 
 
Answer
D ex are regular expense for each and every indivitual 
character spend for the taste and quality of their mindset, 
it can be addressed in otherword;Domestic expenses are used 
for daily uses.
 
0 Joseph Williams
 
 
Question   Where will Contingent liability appears? And why it is not appear in Balance sheet? Rank Answer Posted By  
 Interview Question Submitted By :: Muali
I also faced this Question!!   © ALL Interview .com
Answer
Contingent Liabilities are doesn't shown in the balance 
sheet, it should shown as note under balance sheet, this 
liabilities are may be payable or may not be payable, ex: 
BGs, LC, liability pending in the court those expenses 
maybe payable are maynot be payable
 
3 Ravi
 
 
Answer
Contingent liability does not appear in the balance sheet. 
It is written as a note under the balance sheet because 
contingent liabilities are those liability which may or may 
not be incurred depending on the future outcome. For Ex: 
Loss by fire, theft etc...
 
3 Kiran
 
 
Answer
It's a liability which may or may not happen in future depending on happening of uncertain events. It wont appear in Balance sheet. But we should mention under the b/s as foot note. Because, as per the convention of disclosure we have to disclose all the information in the financial statements.
 
0 Murali Royal
 
 
 
Back to Questions Page
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com