Best 5 SAP ABAP Interview Questions

1) What is runtime analysis? Have you used this?

It’s checks program execution time in microseconds. When you go to se30.if you give desired program name in performance file. It will take you to below screen. You can get how much past is your program.

2) What is meant by performance analysis? Have done
3) How to transfer the objects? Have you transferred any objects?
4) How did you test the developed objects?

I was testing a developed object. There are two types of testing - Negative testing - Positive testing In negative testing we will give negative data in input and we check any errors occurs. In positive testing we will give positive data in input for checking errors.

5) What is the difference between SAP Memory and ABAP Memory?

Best 5 SAP Basis Interview Questions

1. When we should use Transactional RFC ?

A “transactional RFC” means, that either both parties agree that the data was correctly transfered - or not. There is no “half data transfer”.

2. What is the use of Trusted system. I know that there is no need of UID and PWD to communicate with partner system. In what situation it is good to go for Trusted system ?

E. g. if you have an R/3 system and a BW system and don’t want to maintain passwords. Same goes for CRM and a lot of other systems/applications. Let me know if my understanding below is correct: 1) By default the RFC destination is synchronous 2) Asynchronous RFC is used incase if the system initiated the RFC call no need to wait for the response before it proceeds to something else. Yes - that’s right. But keep in mind, that it’s not only a technical issue whether to switch to asynchronous. The application must also be able to handle that correctly.

3. Which table contains the details related to Q defined in SPAM? Is there a way to revert back the Q defined? If yes, How?

There is a “delete” button when you define the queue. If you already started the import it’s no more possible since the system will become inconsistent.

4. What is a developer key? and how to generate a developer key?

The developer key is a combination of you installation number, your license key (that you get from http://service.sap.com/licensekey) and the user name. You need this for each person that will make changes (Dictionary or programs) in the system.

5. What is XI3.0 ? EXPLAIN XI = Exchange Infrastructure - Part of Netweaver 2004.

Best 5 Cobol Interview Questions

1. What is COMP-1? COMP-2?

COMP-1 - Single precision floating point. Uses 4 bytes.
COMP-2 - Double precision floating point. Uses 8 bytes.

2. How do you define a variable of COMP-1? COMP-2?

No picture clause to be given. Example 01 WS-VAR USAGE COMP-1.

3. How many bytes does a S9(7) COMP-3 field occupy ?

Will take 4 bytes. Sign is stored as hex value in the last nibble.
General formula is INT((n/2) + 1)), where n=7 in this example.

4. How many bytes does a S9(7) SIGN TRAILING SEPARATE field occupy ?

Will occupy 8 bytes (one extra byte for sign).

5. How many bytes will a S9(8) COMP field occupy ?

4 bytes.

Best 2 JSP Interview Questions

What is the difference between and response.sendRedirect(url) ?

The element forwards the request object containing the client request information from one JSP file to another file. The target file can be an HTML file, another JSP file, or a servlet, as long as it is in the same application context as the forwarding JSP file.
sendRedirect sends HTTP temporary redirect response to the browser, and browser creates a new request to go the redirected page. The response.sendRedirect kills the session variables.

How can you enable session tracking for JSP pages if the browser has disabled cookies: We can enable session tracking using URL rewriting. URL rewriting includes the sessionID within the link itself as a name/value pair. However, for this to be effective, you need to append the session Id for each and every link that is part of your servlet response. adding sessionId to a link is greatly simplified by means of a couple of methods: response.ecnodeURL() associates a session ID with a giver UIRl, and if you are using redirection, response.encodeRedirectURL() can be used by giving the redirected URL as input. Both encodeURL() and encodeRedirectURL() first determine whether cookies are supported by the browser; is so, the input URL is returned unchanged since the session ID wil lbe persisted as cookie.

Best 5 EJB Interview Questions

Here is a list of Best 5 EJB Interview Questions which can help you in your interview.

1. Is it possible to share an HttpSession between a JSP and EJB? What happens when I change a value in the HttpSession from inside an EJB?

You can pass the HttpSession as parameter to an EJB method, only if all objects in session are serializable.This has to be consider as passed-by-value, that means that it’s read-only in the EJB. If anything is altered from inside the EJB, it won’t be reflected back to the HttpSession of the Servlet Container.The pass-by-reference can be used between EJBs Remote Interfaces, as they are remote references. While it is possible to pass an HttpSession as a parameter to an EJB object, it is considered to be bad practice in terms of object-oriented design. This is because you are creating an unnecessary coupling between back-end objects (EJBs) and front-end objects (HttpSession). Create a higher-level of abstraction for your EJBs API. Rather than passing the whole, fat, HttpSession (which carries with it a bunch of http semantics), create a class that acts as a value object (or structure) that holds all the data you need to pass back and forth between front-end/back-end. Consider the case where your EJB needs to support a non HTTP-based client. This higher level of abstraction will be flexible enough to support it.

2. The EJB container implements the EJBHome and EJBObject classes. For every request from a unique client, does the container create a separate instance of the generated EJBHome and EJBObject classes?

The EJB container maintains an instance pool. The container uses these instances for the EJB Home reference irrespective of the client request. while refering the EJB Object classes the container creates a separate instance for each client request. The instance pool maintenance is up to the implementation of the container. If the container provides one, it is available otherwise it is not mandatory for the provider to implement it. Having said that, yes most of the container providers implement the pooling functionality to increase the performance of the application server. The way it is implemented is, again, up to the implementer.

3. Can the primary key in the entity bean be a Java primitive type such as int?

The primary key can’t be a primitive type. Use the primitive wrapper classes, instead. For example, you can use java.lang.Integer as the primary key class, but not int (it has to be a class, not a primitive).

4. Can you control when passivation occurs?

The developer, according to the specification, cannot directly control when passivation occurs. Although for Stateful Session Beans, the container cannot passivate an instance that is inside a transaction. So using transactions can be a a strategy to control passivation. The ejbPassivate() method is called during passivation, so the developer has control over what to do during this exercise and can implement the require optimized logic. Some EJB containers, such as BEA WebLogic, provide the ability to tune the container to minimize passivation calls. Taken from the WebLogic 6.0 DTD -The passivation-strategy can be either default or transaction. With the default setting the container will attempt to keep a working set of beans in the cache. With the transaction setting, the container will passivate the bean after every transaction (or method call for a non-transactional invocation).

5. What is the advantage of using Entity bean for database operations, over directly using JDBC API to do database operations? When would I use one over the other?

Entity Beans actually represents the data in a database. It is not that Entity Beans replaces JDBC API. There are two types of Entity Beans Container Managed and Bean Mananged. In Container Managed Entity Bean - Whenever the instance of the bean is created the container automatically retrieves the data from the DB/Persistance storage and assigns to the object variables in bean for user to manipulate or use them. For this the developer needs to map the fields in the database to the variables in deployment descriptor files (which varies for each vendor). In the Bean Managed Entity Bean - The developer has to specifically make connection, retrive values, assign them to the objects in the ejbLoad() which will be called by the container when it instatiates a bean object. Similarly in the ejbStore() the container saves the object values back the the persistance storage. ejbLoad and ejbStore are callback methods and can be only invoked by the container. Apart from this, when you use Entity beans you dont need to worry about database transaction handling, database connection pooling etc. which are taken care by the ejb container.

Best 5 Java Interview Questions

1) What is the purpose of garbage collection in Java, and when is it used?

The purpose of garbage collection is to identify and discard objects that are no longer needed by a program so that their resources can be reclaimed and reused. A Java object is subject to garbage collection when it becomes unreachable to the program in which it is used.

2) Describe synchronization in respect to multithreading.

With respect to multithreading, synchronization is the capability to control the access of multiple threads to shared resources. Without synchonization, it is possible for one thread to modify a shared variable while another thread is in the process of using or updating same shared variable. This usually leads to significant errors.

>

3) How is JavaBeans differ from Enterprise JavaBeans?

The JavaBeans architecture is meant to provide a format for general-purpose components. On the other hand, the Enterprise JavaBeans architecture provides a format for highly specialized business logic components.

4) In what ways do design patterns help build better software?

Design patterns helps software developers to reuse successful designs and architectures. It helps them to choose design alternatives that make a system reusuable and avoid alternatives that compromise reusability through proven techniques as design patterns.

5) Describe 3-Tier Architecture in enterprise application development.

In 3-tier architecture, an application is broken up into 3 separate logical layers, each with a well-defined set of interfaces. The presentation layer typically consists of a graphical user interfaces. The business layer consists of the application or business logic, and the data layer contains the data that is needed for the application.

Top 10 Testing Interview Questions

What is the Database Verification? What type of information would you look at in the Database?
What is Metrics Analysis?
What is the meaning of Effort Variacne , Schedule variance , Residual Defect Density , and Productivity?
What is benchmark testing? How do you use it? Give me some examples
why do you use stubs and drivers in top down and bottom up approaches , how do they help
what is the best practice of QA by using Mercury Products?
How do you deal with environments that are hostile to quality change efforts?
What is the role of QA in a company that produces a software?
What is the role of documentation in the quality assurance?
Security Testing

Testing Interview Questions & Answers

Who will prepare the Tracebility Matrix?

On what security parameters do you test a "Web based application?

What is the common Bug u face in a Web-based application?

Explain about MicroSoft Six Rules Standardfor User Interface testing?
What is all object and Local object in Object Repository? Explain?

what are the four steps of Automated Testing? What is an IDE?

What is the definition of memory leakage? How we can test manually and by using tools?

What are the objectives of Lowlevel recording? What is Elapsed Time? When we use Update mode? Is Quick Test supports Java Script? What is extention for test script in Quick Test?

Can you please post the detail difference between QA & QC?? the role of both QA & QC??

Testing Defination? Please dont explain testing! Give me exact and appropriate defination of testing..

how to wrtie test case with a minimum of 13 columns.......

what are the processes followed in your company for automation?

why do u save .vbs in library files in qtp

how i can do gui testing,what is its important contant,plz tell me all property of cui testing

Share a particular project where you have been able to learn enough skills to help with testing? (more for the developers looking to do= testing)

What part of the testing phase is the most important part for testing in the cycle?

How to carry out manual testing for a background process which does't have any user interface ?

What is open beta testing? ans it done at which end? what is the difference b/w open beta testing and beta testing?asked me in the interview.

what is application entry and exit criteria?

How to arrive Testcase? and how to write Testcase in Email id? when we go for winrunner and why we go for winrunner

Top 20 PeopleSoft Interview Questions

1)What is the APP engine event in peoplecode.
2)what are the different actions in APP ENGINE.
3)How many temp records are there in app engine.
4)How do you debug your AE.
5)Why temp records are needed?
6)Why state records are needed?
7)Differences between State and temp records.
8)Different ways to run AE, SQR.(Command, process scheduler)
7)Different sql statements and metasql statements.
8)How do you retrieve a value from scroll..scroll select?
9)What is scroll select, etc
10)what is record, row peoplecode.
Database Questions

1)What are copybooks(DB2)?
2)What is plan?
3)Tell me the sections in COBOL?
4)Connectivity to DB2 from COBOL.
5)What are the customizations in COBOL?
6)Diff between union and union all?
7)Give me example for group by.
8)What is SPUFI?
9)Replacement of query analyzer--- SPUFI(DB2)
10)Jcl...comments

Best Peoplesoft Interview Questions

Tell me your experience with CI?
Will the PeopleSoft Internet Architecture, now that it embeds BEA WebLogic and IBM WebSphere, work with my other corporate web servers and tools?
What is One to Many Relationship?
When a business requirement in Fit or Gap Analysis does not meet by PeopleSoft then what to do?
Can a PeopleTools 8.4 and a PeopleTools 8.1x database run on the same machine?
How does the PeopleSoft Enterprise Portal workwith 8.1x and 8.4 applications?
For the servlet layer on the web server, what version of the Java Servlet API are the PIA Java Servlets coded to with PeopleTools 8.4?
Update and Fixes: R-* files refers to what?
Which process is used for running AE programs which are to be run at a frequency of less than a day ?
Can a PeopleTools 8.4 and a PeopleTools 8.1x database run on the same machine?
Where are workflow work items found?
What views available in Application Designer project workspace?
Your Onsite DBA has called you up and told you that one of the tables PS_ABC_TAO has grown very big in size. Based on the standard naming convention, you have determined that the record is a temporary record since it ends with _TAOYou look into the database and decide that that the data is not required any more. You ask the DBA to delete the data in the table.Next day you get a call from an irritated user who says that a daily process that took only 1 minute to run is taking about 2 hours today. You look into his process and find that it uses PS_ABC_TAO as a temporary table.What would you suggest the DBA to do ?
Can any one suggest me about the certifications for pepole soft enterprise one
What event gets fired after DB Update?
How does the PeopleSoft Enterprise Portal workwith 8.1x and 8.4 applications?
I have created a Menu and a Page and given user access to that page, which of the tables gets affected on this?
Both BEA WebLogic and IBM WebSphere have the ability to plug in to many different web servers. Does PeopleSoft support the web servers that they plug into?
you have created a Menu and a Page and given user access to that page, which of the tables gets affected on this?
How Can i check processing consuming by peoplesoft applications?

Technical Networking Interview Questions

* What is an IP address?
* What is a subnet mask?
* What is ARP?
* What is ARP Cache Poisoning?
* What is the ANDing process?
* What is a default gateway? What happens if I don't have one?
* Can a workstation computer be configured to browse the Internet and yet NOT have a default gateway?
* What is a subnet?
* What is APIPA?
* What is an RFC? Name a few if possible (not necessarily the numbers, just the ideas behind them)
* What is RFC 1918?
* What is CIDR?
* You have the following Network ID: 192.115.103.64/27. What is the IP range for your network?
* You have the following Network ID: 131.112.0.0. You need at least 500 hosts per network. How many networks can you create? What subnet mask will you use?
* You need to view at network traffic. What will you use? Name a few tools
* How do I know the path that a packet takes to the destination?
* What does the ping 192.168.0.1 -l 1000 -n 100 command do?
* What is DHCP? What are the benefits and drawbacks of using it?
* Describe the steps taken by the client and DHCP server in order to obtain an IP address.
* What is the DHCPNACK and when do I get one? Name 2 scenarios.
* What ports are used by DHCP and the DHCP clients?
* Describe the process of installing a DHCP server in an AD infrastructure.
* What is DHCPINFORM?
* Describe the integration between DHCP and DNS.
* What options in DHCP do you regularly use for an MS network?
* What are User Classes and Vendor Classes in DHCP?
* How do I configure a client machine to use a specific User Class?
* What is the BOOTP protocol used for, where might you find it in Windows network infrastructure?
* DNS zones – describe the differences between the 4 types.
* DNS record types – describe the most important ones.
* Describe the process of working with an external domain name
* Describe the importance of DNS to AD.
* Describe a few methods of finding an MX record for a remote domain on the Internet.
* What does "Disable Recursion" in DNS mean?
* What could cause the Forwarders and Root Hints to be grayed out?
* What is a "Single Label domain name" and what sort of issues can it cause?
* What is the "in-addr.arpa" zone used for?
* What are the requirements from DNS to support AD?
* How do you manually create SRV records in DNS?
* Name 3 benefits of using AD-integrated zones.
* What are the benefits of using Windows 2003 DNS when using AD-integrated zones?
* You installed a new AD domain and the new (and first) DC has not registered its SRV records in DNS. Name a few possible causes.
* What are the benefits and scenarios of using Stub zones?
* What are the benefits and scenarios of using Conditional Forwarding?
* What are the differences between Windows Clustering, Network Load Balancing and Round Robin, and scenarios for each use?
* How do I work with the Host name cache on a client computer?
* How do I clear the DNS cache on the DNS server?
* What is the 224.0.1.24 address used for?
* What is WINS and when do we use it?
* Can you have a Microsoft-based network without any WINS server on it? What are the "considerations" regarding not using WINS?
* Describe the differences between WINS push and pull replications.
* What is the difference between tombstoning a WINS record and simply deleting it?
* Name the NetBIOS names you might expect from a Windows 2003 DC that is registered in WINS.
* Describe the role of the routing table on a host and on a router.
* What are routing protocols? Why do we need them? Name a few.
* What are router interfaces? What types can they be?
* In Windows 2003 routing, what are the interface filters?
* What is NAT?
* What is the real difference between NAT and PAT?
* How do you configure NAT on Windows 2003?
* How do you allow inbound traffic for specific hosts on Windows 2003 NAT?
* What is VPN? What types of VPN does Windows 2000 and beyond work with natively?
* What is IAS? In what scenarios do we use it?
* What's the difference between Mixed mode and Native mode in AD when dealing with RRAS?
* What is the "RAS and IAS" group in AD?
* What are Conditions and Profile in RRAS Policies?
* What types or authentication can a Windows 2003 based RRAS work with?
* How does SSL work?
* How does IPSec work?
* How do I deploy IPSec for a large number of computers?
* What types of authentication can IPSec use?
* What is PFS (Perfect Forward Secrecy) in IPSec?
* How do I monitor IPSec?
* Looking at IPSec-encrypted traffic with a sniffer. What packet types do I see?
* What can you do with NETSH?
* How do I look at the open ports on my machine?

Top 30 Network engineer architect Interview Questions

1. Explain how traceroute, ping, and tcpdump work and what they are used for?
2. Describe a case where you have used these tools to troubleshoot.
3. What is the last major networking problem you troubleshot and solved on your own in the last year?
4. What LAN analyzer tools are you familiar with and describe how you use them to troubleshoot and on what media and network types.
5. Explain the contents of a routing table (default route, next hop, etc.)
6. What routing protocols have you configured?
7. Describe the commands to set up a route.
8. What routing problems have you troubleshot?
9. How do you display a routing table on a Cisco? On a host?
10. How do you use a routing table and for what?
11. What is a route flap?
12. What is a metric?
13. When do you use BGP, IGRP, OSPF, Static Routes?
14. What do you see as current networking security issues (e.g. NFS mounting, spoofing, one time passwords, etc.)?
15. Describe a routing filter and what it does.
16. Describe an access list and what it does.
17. What is a network management system?
18. Describe how SNMP works.
19. Describe the working environment you are currently in, e.g. frequent interruptions, frequent priority shifting, team or individual.
20. What do you use to write documentation? Editor? Mail reader?
21. What platform (s) do you currently work on at your desk?
22. How do you manage multiple concurrent high level projects?
23. Describe a recent short term stressful situation and how you managed it.
24. How do you manage a long term demanding stressful work environment?
25. Have you worked in an assignment based environment, e.g. work request/trouble ticket system, and if so, describe that environment.
26. Describe what network statistics or measurement tools you are familiar with and how you have used them.
27. Describe what a VPN is and how it works.
28. Describe how VoIP works.
29. Describe methods of QoS.
30. How does ToS bit work?

Networking Interview Questions

What is DHCP?

DHCP stands for Dynamic Host Configuration Technology. The basic purpose of the DHCP is to assign the IP addresses and the other network configuration such as DNS, Gateway and other network settings to the client computers. DHCP reduces the administrative task of manually assigning the IP addresses to the large number of the computers in a network.

What is DNS and how it works?

DNS stands for Domain name system and it translates (converts) the host name into the IP address and IP address into to the host name. Every domain and the computer on the internet is assigned a unique IP address. The communication on the internet and in the network is based on the IP addresses. IP addresses are in this format 10.1.1.100, 220.12.1.22.3, 1.1.1.1 etc. IP addresses can’t be remembered but the host names are easy to remember instead of their IP addresses.

What is a Firewall?

Firewall is a protective boundary for a network and it prevents the unauthorized access to a network. Most of the Windows operating system such as Windows XP Professional has built-in firewall utilities. There are the large number of the third party firewall software and the basic purpose of all the firewall software and hardware is same i.e. to block the unauthorized user access to a network.

What is WAN?

WAN stands for wide area network and it covers the broader geographical area. Basically there are three types of a computer network LAN (Local Area Network), MAN (Metropolitan Area Network) and WAN (Wide Area Network). The communication in a WAN is based on the Routers. A WAN network can cover a city, country or continents.

Define VOIP Communication Technology

VOIP stands for Voice over IP and this technology is used for transmitted the voice over the IP based long distance network to make phone calls. VOIP phone calls are very cheap and a large number of the corporate offices and home users are using VOIP technology to make long distance phone calls.

What is Wi Max Technology?

Wi Max is a wireless broadband technology and it is a advance shape of the Wi Fi (which was a base band technology). Wi Max supports data, video and audio communication at the same time at a very high speed up to 70 Mbps.

Define Network Gateway

Network Gateway can be software or a hardware. A gateway is usually a joining point in a network i.e. it connects two networks. A computer with two LAN cards can act as a gateway. What is a Router?

A router routes the traffic to its destination based on the source and destination IP addresses, which are placed in the routing software known as routing table.

How Fiber Optic Cable Works

Fiber optics provides the fastest communication medium for data and voice. Data can travel at the speed of light through the fiber optic cables. ISPs and corporate offices are usually connected with each other with the fiber optic cables to provide high speed connectivity.

What is File Server?

A file server is a computer in a network that authenticates the user access in a network such as Windows 2000/2003 Servers.

Define Seven Layers of OSI Model

There are seven layers of the OSI model. The basic purpose of these layers is to understand the communication system and data transmission steps. The seven layers are Application, Presentation, Session, Transport, Network, Data Link and Physical. You can remember the name of these layers by this phrase. “All people seems to need data processing”.

Define GSM Technology

GSM is a short range wireless technology and is usually used in the mobile phones, hand help devices, MP3 players, Laptops, computers and in cars.

J2EE Interview Questions

1. What is J2EE?

J2EE is an environment for developing and deploying enterprise applications. The J2EE platform consists of a set of services, application programming interfaces (APIs), and protocols that provide the functionality for developing multitiered, web-based applications.

2. What is the J2EE module?

A J2EE module consists of one or more J2EE components for the same container type and one component deployment descriptor of that type.

3. What are the components of J2EE application?

A J2EE component is a self-contained functional software unit that is assembled into a J2EE application with its related classes and files and communicates with other components. The J2EE specification defines the following J2EE components:

* Application clients and applets are client components.
* Java Servlet and JavaServer PagesTM (JSPTM) technology components are web components.
* Enterprise JavaBeansTM (EJBTM) components (enterprise beans) are business components.
* Resource adapter components provided by EIS and tool vendors.


4. What are the four types of J2EE modules?

1. Application client module
2. Web module
3. Enterprise JavaBeans module
4. Resource adapter module

5. What does application client module contain?

The application client module contains:
--class files,
--an application client deployment descriptor.
Application client modules are packaged as JAR files with a .jar extension.

6. What does web module contain?

The web module contains:
--JSP files,
--class files for servlets,
--GIF and HTML files, and
--a Web deployment descriptor.
Web modules are packaged as JAR files with a .war (Web ARchive) extension.

Data Warehousing Interview Questions

Give the two types of tables involved in producing a star schema and the type of data they hold.

What are types of Facts?

What are non-additive facts in detail?

What is the difference between view and materialized view?

What is active data warehousing?

What is SKAT?

What is Memory Based Reasoning (MBR)?

Give reasons for the growing popularity of Data Mining.

What is Market Basket Analysis?

What is Clustering?

What are cubes?

What are measures?

What are dimensions?

What are fact tables?

What are the benefits of Data Warehousing?

Accounts Payable Interview Questions

Question : Tell us about an invoice discrepancy that you discovered and how you resolved the discrepancy.
Answer : Discrpancies in invoices could be many. Like there might a incorrect amount entered, incorred date or account code combination entered etc. If the amount entered is not matching with the purchase order then the system will place the invoice on hold which will have to be released before going further. If there is no purchase order matching and if you have entered wrong amount and if it is approved then you can reverse the distribution line and create a fresh line for the correct amount.

Question : Tell us about your experience in accounts payable.
Answer : Accounts Payable is mainly concerned with effective management of creditors. Effective management of creditors calls for correct booking of invoice under right accounting heads and making timely payments so that maximum available credit limit and discount is taken. If the accounts are not booked properly it will result in improper final staments. In Oracle Payables you cannot make any payment unless the payment is supported by an valid invoice i.e u need to book the liability before making any payment.It supports 2 way, 3 way and 4 way matching.

Question : What items of information do you need before you can approve an invoice for payment?
Answer : 1. Have the goods been received in good order ?
2. Is the quantity/price correct ?
3. Were you expecting any discount ?
4. Is the delivery charge correct ?

Question : What is the meaning of invoice?
Answer :
Invoice is a statement which contains the under mentioned details compulsorily.
1. Invoice Numner
2. Invoice date
3. Name and address of the person making the invoice ( Seller of goods and service)
4. Name and address of the person to whom invoice is made. ( Buyer of goods and service)
5. Description of goods / services involved
6. Applicable rates and taxes with percentages
7. Rate of the goods / services
8. Quantity of the goods and services
9. Quality or any other specifications
10. Price / Value of the goods and services
11. Invoice must be signed by the person making it
12. Terms and conditions of making the payment

Top 13 Accounting Tips

If you're an accountant looking for a job, this list of accounting interview questions can be very useful. Your first task should be to do careful research on the company you are approaching. Once you have the relevant information, put together great answers to these accounting interview questions.

And while you're on the task of figuring out responses to accounting interview questions, do browse thru this site. You'll find excellent free interview answers and other tips for interviews.

* Tell me about yourself. (See this page for excellent tips about answering this question)

* What would you say is your biggest accomplishment so far?

* How would you deal with a personality clash with your boss?

* Do you prefer to work by yourself or with a group of people?

* What do you think about (...some contemporary development in finance or accounting)?

* Tell me of an instance where you faced a real-life ethical dilemma.

* How do you see your career developing over the next five years?

* What attracts you to the accounting profession?

* What do you think is the biggest challenge facing the accounting profession at this time? How will you handle it?

* How much money are you looking for?

* Why do you want to work for this company?

* Why do you want to leave your present job?

* Your boss has given you an urgent project to complete. Unfortunately, you and your team are already fully engaged in an existing project that takes up all your time. How will you handle this?

Accounting Interview Questions

Accounting Interview Questions :

1. You buy a $100 asset. $25 cash, $50 debt, and $25 new equity. Explain how the 3 financial statements (IS, BS, CFS) will change.

2. How are the 3 financial statements related to each other?

3. Name 3 ways in which the Income Statement and Balance Sheet are related (item on one is related to item on another).

4. What happens to each of the three primary financial statements when capital expenditures decrease?

5. What happens to each of the three primary financial statements when gross margin decreases?

6. What happens to each of the three financial statements when working capital increases?

7. What is the current ratio and why is it important?

8. What is the acid-test ratio?

9. What is the main link between the income statement and the balance sheet?

10. Walk me through the major line items on a cash flow statement.

11. Are you good at accounting?

12. What is the opposite journal of account receivables?

13. What are the main items on the balance sheet?

14. If you only had one financial statement to choose from which would it be?

15. What happens if LIFO Price Increases?

16. If company A owned its stores and company B leased its stores, which would have the higher EBITDA?

17. Who would have a higher EBITDA, capital leases or operating leases?

18. What’s deferred tax?

19. You are provided with five year financial projections that show working capital dropping to zero in year five. How would you interpret this?

20. Where do you get Depreciation and Amortization?

21. Where do you get Capital Expenditures?

22. Where do you get working capital?

23. What would happen to a company’s stock if it announced a large loss due to a write down on goodwill?