Interview Questions

Q:

Explain include(), include_once, require() and require_once.

Answer

include()
The include() function takes all the content in a specified file and includes it in the current file. If an error occurs, the include() function generates a warning, but the script will continue execution.

include_once()
File will not be included more than once. If we want to include a file once only and further calling of the file will be ignored then we have to use the PHP function include_once().

require()
The require() function is identical to include(), except that it handles errors differently. The require() generates a fatal error, and the script will stop.

require_once()
The required file is called only once when a page is open and further calling of the file will be ignored.

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 2991
Q:

What is the Auto Invoice? What are the setup Steps for Auto Invoice?

Answer

A powerful tool to import and validate transaction data from other financial systems and create invoices , debit memos , credit memos and on-account credits


Setup steps:


1. Define the line ordering rules


2. Define the grouping rules - attache the line ordering rules to the grouping rules

Report Error

View answer Workspace Report Error Discuss

1 2988
Q:

How to define a constant variable in Java?

Answer The variable should be declared as static and final. So only one copy of the variable exists for all instances of the class and the value can't be changed also.
static final int PI = 2.14; is an example for constant.
Report Error

View answer Workspace Report Error Discuss

Subject: Java

1 2988
Q:

What are trade receivables?

Answer

Trade receivables are amounts billed by a business to its customers when it delivers goods or services to them in the ordinary course of business. These billings are typically documented on formal invoices, which are summarized in an accounts receivable aging report. In the general ledger, trade receivables are recorded in a separate accounts receivable account, and are classified as current assets on the balance sheet if you expect to receive payment from customers within one year.


To record a trade receivable, the accounting software creates a debit to the accounts receivable account and a credit to the sales account when you complete an invoice. When the customer eventually pays the invoice, the accounting software records the cash receipt transaction with a debit to the cash account and a credit to the accounts receivable account.


Trade receivables vary from non trade receivables in that non trade receivables are for amounts owed to the company that fall outside of the normal course of business, such as employee advances or insurance reimbursements. Also, most or all of the transactions passing through the main accounts receivable account are generated by the accounting system, as you create customer invoices and credit memos, whereas the transactions recording non trade receivables nearly always involve journal entries.

Report Error

View answer Workspace Report Error Discuss

0 2986
Q:

The primary Economic function of the Financial system is to

A) Providing experts advice to investors and savers B) Match one person's savings with another person's investment
C) Keeping interest rates low D) Match one person's consumpion expenditure with another person's capital expenditure
 
Answer & Explanation Answer: B) Match one person's savings with another person's investment

Explanation:

The primary Economic function of the Financial system is to match one person's savings with another person's investment.

 

The_primary_Economic_function_of_the_Financial_system_is_to1556258311.png image

 

* As a key component of the financial system, banks allocate funds from savers to borrowers in an efficient manner.

* They provide specialized financial services, which reduce the cost of obtaining information about both savings and borrowing opportunities.

* These financial services help to make the overall economy more efficient.

Report Error

View Answer Report Error Discuss

Filed Under: Bank Interview
Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

0 2985
Q:

What types of people do you find it difficult to get on with?

Answer

When asking this question, an employer is n’t interested who you find it difficult to work with. They want to know what you do to ensure an effective working relationship with such individuals. 


A possible answer for this question could be: “I get on with all types of people, but get frustrated when working with those who don’t share my work ethic." 


In these situations, I find that by developing a good rapport the person, letting them know how important their contribution is to getting the job done, and appealing to their better nature………things get done.”

Report Error

View answer Workspace Report Error Discuss

Subject: Communication

1 2985
Q:

Explain one-definition rule (ODR).

Answer

According to one-definition rule, C++ constructs must be identically defined in every compilation unit they are used in. 


As per ODR, two definitions contained in different source files are called to be identically defined if they token-for-token identical. The tokens should have same meaning in both source files. 


Identically defined doesn’t mean character-by-character equivalence. Two definitions can have different whitespace or comments and yet be identical.

Report Error

View answer Workspace Report Error Discuss

Subject: C++

0 2983
Q:

Does the order of public and static declaration matter in main() method?

Answer No. It doesn't matter but void should always come before main().
Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 2983