0
Question : Tell /Describe about yourself ( you will be asked this 90% )
Answer : Don't recite your resume. Tell about your education, experience, projects worked ,passion etc.,Make sure you complete this within 2-3mins.
Q: Why should we hire you into our organization
A : This would be perfect time to tell about your strengths,achievements & assets. Compare your profile with the job role & justify that you will be a best fit for the job. Answers like ‘This is a best company’ , ‘I want a job in this field’ wont impress the interviewer.posted at www.bankexamsindia.com
Q : What are your strengths & weakness ?
A: Again this is also a commonly asked question to test how much you know of yourself.Make sure the Strengths you say have some relation to the job you applied.’I am very good in english’ can be said as ‘I have good communication skills’ ,
Weakness - ‘I don't have any weakness’ means you are not ready to talk about it.Similarly don't say something like, ‘Im short tempered & get angry very soon’ – It gives an impression that you are not fit to work in group.Say something which does not affect the working & also describe about the steps taken to overcome that.
Q: Where do you see yourself after 5 years ?
A: This question would be asked to check how much you know about the career path.
‘After 5 years,I want to be in your seat’ wont work in any case.Think realistically, understand the growth opportunities of that job & put it across to them.
Q : Why are you shifting from your current employer/company (for experienced people)
A : This would be a tricky question & you have to answer by choosing proper words.Give the real reason, but make sure you don't put the blame on your previous company nor onto yourself.
These are just few questions that can be asked during an Interview ,but the list is exhaustive.So be prepared to answer any question with confidence.But , Never ever get tensed – It pulls your confidence down & will throw you out of the competition.
Important Interview Questions (Network, Testing, Technical and C, C++)
• Why paging is used ?
• Which is the best page replacement algo and Why ?
• WHat is software life cycle ?
• How much time is spent usually in each phases and why ?
• What is testing ?
• Which are the different types of testing ?
• Which are the different phases in Software life cycle (asked again)
• Why is analysis and testing phases very important ?
• Why networks are layered ? What is the advantage of that ?
• How many layers are there in OSI ? Why is it called OSI model ?
• Network topologies ?
• Which are the different network toplogies ?
• An example of bus type network.
• What is the Bandwidth of ethernet ?
• Explain the advantage and disadvantage of ethernet ?
• Which is the protocol used in ethernet. (CSMA/CD) Why is it called so ?

• What is the advantage of Ring network ?
Compare it with ethernet.

• What is inheritance, encapsulation etc.
• If there are too many page faults what is the problem?
• To ensure one pgm. doesnt corrupt other pgm. in a Multipgm. enviornment
• What you should do?
• Which one you will use to implement critical section? Binary Semaphore
• Which one is not needed for Multipgm. enviornment?
• Options are: virtual memory,security,time sharing,none of the above.
• Which one is not done by Data link layer ? bit stuffing, LRC,CRC,parity check
• Which one is not related to Data link layer?
• Which one is not suitable for clientserver application? tcp/ip,message passing,rpc,none of the above.

• Term stickily bit is related to
a)kernel b)undeletable file c)deletable file d)none

• Semaphore variable is different from ordinary variable by ?

• Unix system is
a)multi processing
b)multi processing ,multiuser
c)multi processing ,multiuser,multitasking
d)multiuser,multitasking

• x.25 protocol encapsulates the follwing layers
a)network
b)datalink
c)physical
d)all of the above
e)none of the above

• TCP/IP can work on
a)ethernet
b)tokenring
c)a&b
d)none

• A node has the ip address 138.50.10.7 and 138.50.10.9.But it is transmitting data from node1 to node2only. The reason may be
a)a node cannot have more than one address
b)class A should have second octet different
c)classB " " " " "
d)a,b,c

• The OSI layer from bottom to top for an application which exceeds 64k the memory model should be
a)medium
b)huge
c)large
d)none

• The condition required for dead lock in unix sustem is
Setuserid is related to (in unix)

• Wrong statement about c++
a)code removably
b)encapsulation of data and code
c)program easy maintenance
d)program runs faster

• Which is true
a)bridge connects dissimiler LAN and protocol insensitive
b)router " " " " "
c)gateway " " " " "
d)none of the above

• const char *
char * const
What is the differnce between the above two?.

• About fork()?
• About send message and post message
• Message to limit the size of window
• System call executable binary file intoa process
• About GDI object?.
• API used to hide window
• Initialize contents of a dialog?.
________________________________________
C SKILL SET:-
• How do you write a program which produces its own source code as its output?
• How can I find the day of the week given the date?
• Why doesn't C have nested functions?
• What is the most efficient way to count the number of bits which are set in a value?
• How can I convert integers to binary or hexadecimal?
• How can I call a function, given its name as a string?
• How do I access commandline arguments?
• How can I return multiple values from a function?
• How can I invoke another program from within a C program?
• How can I access memory located at a certain address?
• How can I allocate arrays or structures bigger than 64K?
• How can I find out how much memory is available?
• How can I read a directory in a C program?
• How can I increase the allowable number of simultaneously open files?
• What's wrong with the call "fopen("c:\newdir\file.dat", "r")"?
________________________________________
Important UNIX Commands Interview Questions
1. Construct pipes to execute the following jobs.
1. Output of who should be displayed on the screen with value of total number of users who have logged in displayed at the bottom of the list.
2. Output of ls should be displayed on the screen and from this output the lines containing the word ‘poem’ should be counted and the count should be stored in a file.
3. Contents of file1 and file2 should be displayed on the screen and this output should be appended in a file
.
From output of ls the lines containing ‘poem’ should be displayed on the screen along with the count.
4. Name of cities should be accepted from the keyboard . This list should be combined with the list present in a file. This combined list should be sorted and the sorted list should be stored in a file ‘newcity’.
5. All files present in a directory dir1 should be deleted any error while deleting should be stored in a file ‘errorlog’.
2. Explain the following commands.
$ ls > file1
$ banner hi-fi > message
$ cat par.3 par.4 par.5 >> report
$ cat file1>file1
$ date ; who
$ date ; who > logfile
$ (date ; who) > logfile
3. What is the significance of the “tee” command?
It reads the standard input and sends it to the standard output while redirecting a copy of what it has read to the file specified by the user.
4. What does the command “ $who | sort –logfile > newfile” do?
The input from a pipe can be combined with the input from a file . The trick is to use the special symbol “-“ (a hyphen) for those commands that recognize the hyphen as std input. In the above command the output from who becomes the std input to sort , meanwhile sort opens the file logfile, the contents of this file is sorted together with the output of who (rep by the hyphen) and the sorted output is redirected to the file newfile.
5. What does the command “$ls | wc –l > file1” do?
ls becomes the input to wc which counts the number of lines it receives as input and instead of displaying this count , the value is stored in file1.
6. Which of the following commands is not a filter man , (b) cat , (c) pg , (d) head
Ans: man
7. How is the command “$cat file2 “ different from “$cat >file2 and >> redirection operators ?
is the output redirection operator when used it overwrites while >> operator appends into the file.
9. Explain the steps that a shell follows while processing a command.
After the command line is terminated by the key, the shel goes ahead with processing the command line in one or more passes. The sequence is well defined and assumes the following order.
Parsing: The shell first breaks up the command line into words, using spaces and the delimiters, unless quoted. All consecutive occurrences of a space or tab are replaced here with a single space.
Variable evaluation: All words preceded by a $ are avaluated as variables, unless quoted or escaped. Command substitution: Any command surrounded by backquotes is executed by the shell which then replaces the standard output of the command into the command line.
Wild-card interpretation: The shell finally scans the command line for wild-cards (the characters *, ?, [, ]).
Any word containing a wild-card is replaced by a sorted list of filenames that match the pattern. The list of these filenames then forms the arguments to the command. PATH evaluation: It finally looks for the PATH variable to determine the sequence of directories it has to search in order to hunt for the command.
10. What difference between cmp and diff commands?
cmp - Compares two files byte by byte and displays the first mismatch
diff - tells the changes to be made to make the files identical
11. What is the use of ‘grep’ command?
‘grep’ is a pattern search command. It searches for the pattern, specified in the command line with appropriate option, in a file(s).
Syntax : grep
Example : grep 99mx mcafile
12. What is the difference between cat and more command?
Cat displays file contents. If the file is large the contents scroll off the screen before we view it. So command 'more' is like a pager which displays the contents page by page.
13. Write a command to kill the last background job?
Kill $!
14. Which command is used to delete all files in the current directory and all its sub-directories?
rm -r *
15. Write a command to display a file’s contents in various formats?
$od -cbd file_name
c - character, b - binary (octal), d-decimal, od=Octal Dump.
16. What will the following command do?
$ echo *
It is similar to 'ls' command and displays all the files in the current directory.
17. Is it possible to create new a file system in UNIX?
Yes, ‘mkfs’ is used to create a new file system.
18. Is it possible to restrict incoming message?
Yes, using the ‘mesg’ command.
19. What is the use of the command "ls -x chapter[1-5]"
ls stands for list; so it displays the list of the files that starts with 'chapter' with suffix '1' to '5', chapter1, chapter2, and so on.
20. Is ‘du’ a command? If so, what is its use?
Yes, it stands for ‘disk usage’. With the help of this command you can find the disk capacity and free space of the disk.
21. Is it possible to count number char, line in a file; if so, How?
Yes, wc-stands for word count.
wc -c for counting number of characters in a file.
wc -l for counting lines in a file.
22. Name the data structure used to maintain file identification?
‘inode’, each file has a separate inode and a unique inode number.
23. How many prompts are available in a UNIX system?
Two prompts, PS1 (Primary Prompt), PS2 (Secondary Prompt).
24. How does the kernel differentiate device files and ordinary files?
Kernel checks 'type' field in the file's inode structure.
25. How to switch to a super user status to gain privileges?
Use ‘su’ command. The system asks for password and when valid entry is made the user gains super user (admin) privileges.
26. What are shell variables?
Shell variables are special variables, a name-value pair created and maintained by the shell.
Example: PATH, HOME, MAIL and TERM
27. What is redirection?
Directing the flow of data to the file or from the file for input or output.
Example : ls > wc
28. How to terminate a process which is running and the specialty on command kill 0?
With the help of kill command we can terminate the process.
Syntax: kill pid
Kill 0 - kills all processes in your system except the login shell.
29. What is a pipe and give an example?
A pipe is two or more commands separated by pipe char '|'. That tells the shell to arrange for the output of the preceding command to be passed as input to the following command.
Example : ls -l | pr

The output for a command ls is the standard input of pr. When a sequence of commands are combined using pipe, then it is called pipeline.
30. Explain kill() and its possible return values.
There are four possible results from this call:
‘kill()’ returns 0. This implies that a process exists with the given PID, and the system would allow you to send signals to it. It is system-dependent whether the process could be a zombie.

‘kill()’ returns -1, ‘errno == ESRCH’ either no process exists with the given PID, or security enhancements are causing the system to deny its existence. (On some systems, the process could be a zombie.)

‘kill()’ returns -1, ‘errno == EPERM’ the system would not allow you to kill the specified process. This means that either the process exists (again, it could be a zombie) or draconian security enhancements are present (e.g. your process is not allowed to send signals to *anybody*).

‘kill()’ returns -1, with some other value of ‘errno’ you are in trouble! The most-used technique is to assume that success or failure with ‘EPERM’ implies that the process exists, and any other error implies that it doesn't. An alternative exists, if you are writing specifically for a system (or all those systems) that provide a ‘/proc’
filesystem: checking for the existence of ‘/proc/PID’ may work.
31. What is relative path and absolute path.
Absolute path : Exact path from root directory.
Relative path : Relative to the current path.
Interview Pattern : Computer Architecture interview Questions:

1. What is pipelining?
2. What are the five stages in a DLX pipeline?
3. For a pipeline with 'n' stages, what�s the ideal throughput? What prevents us from achieving this ideal throughput?
4. What are the different hazards? How do you avoid them?
5. Instead of just 5-8 pipe stages why not have, say, a pipeline with 50 pipe stages?
6. What are Branch Prediction and Branch Target Buffers?
7. How do you handle precise exceptions or interrupts?
8. What is a cache?
9. What's the difference between Write-Through and Write-Back Caches? Explain advantages and disadvantages of each.
10. Cache Size is 64KB, Block size is 32B and the cache is Two-Way Set Associative. For a 32-bit physical address, give the division between Block Offset, Index and Tag.
11. What is Virtual Memory?
12. What is Cache Coherency?
13. What is MESI?
14. What is a Snooping cache?
15. What are the components in a Microprocessor?
16. What is ACBF(Hex) divided by 16?
17. Convert 65(Hex) to Binary
18. Convert a number to its two's compliment and back
19. The CPU is busy but you want to stop and do some other task. How do you do it?
S.B.I

Why do you want to enter banking?
* You need to talk about Banking – what the interviewer seeks for is a person who is flexible to be along with the given timings, someone who can cope up with writing bits and bobs or a person who can benefit them with more development .Your answer can have following bulleted points.
• Banking is a fast changing environment
• Retail banking is now very competitive – from telephone banking, retailers and etc Banking is thus now largely sales driven.
# You can even talk about IT getting changes and clearing banks offers a wide range of career opportunities for graduates – not just in branch banking but also in financial services, consultancy and corporate banking.
Have you applied to any other areas apart from banking?

Here off course your answer will hold some other finance or sales and marketing careers – insurance or accountancy, altogether these careers should have skills related to banking.
How do you feel about committing yourself to another three years of exams?

The professional examinations that you will almost certainly be required to take as part of your training are not always difficult in themselves, but do require determination and focus- especially as much of your study will be done in the evenings after a hard days work.
You should also be aware of the range of qualifications open to you – many of the large clearing banks offer the opportunity to gain qualifications in marketing, personnel or accountancy – not just banking.
Tell me about an experience in which you had to use tact?
Tact and diplomacy are important qualities in retail banking – the customer is (almost!) always right. You may have to tell an account holder diplomatically why they can’t have a loan for example, without provoking them into moving their account elsewhere.
To answer this type of question, think through everything you have done in the last five years – school, university, sports, clubs, societies, travel, vacation jobs etc. and try to think of situations where you had to demonstrate this and other qualities – do this before your interview.
If you have completed a number of employer application forms, then you should already have done this as this type of question is now common on application forms.
Who are our major competitors and what differences do you notice in our products?
The company will be expecting that you have done your research on the industry generally. You should be familiar with the bank’s products and services – literature on these can be picked up at any branch. Read the banks brochures and annual reports – these may be in the careers information room.
Be aware of current trends in the market and try to find out what each bank is doing in these areas.
What is SLR?
Every bank is required to maintain at the close of business every day, a minimum proportion of their Net Demand and Time Liabilities as liquid assets in the form of cash, gold and un-encumbered approved securities. The ratio of liquid assets to demand and time liabilities is known as Statutory Liquidity Ratio (SLR). Present SLR is 24%. (reduced w.e.f. 8/11/208, from earlier 25%) RBI is empowered to increase this ratio up to 40%. An increase in SLR also restrict the bank’s leverage position to pump more money into the economy.
What is SLR ? (For Non Bankers)
SLR stands for Statutory Liquidity Ratio. This term is used by bankers and indicates the minimum percentage of deposits that the bank has to maintain in form of gold, cash or other approved securities. Thus, we can say that it is ratio of cash and some other approved to liabilities (deposits) It regulates the credit growth in India.
What are Repo rate and Reverse Repo rate?
Repo (Repurchase) rate is the rate at which the RBI lends shot-term money to the banks. When the repo rate increases borrowing from RBI becomes more expensive. Therefore, we can say that in case, RBI wants to make it more expensive for the banks to borrow money, it increases the repo rate; similarly, if it wants to make it cheaper for banks to borrow money, it reduces the repo rate
What are Repo rate and Reverse Repo rate?
Repo (Repurchase) rate is the rate at which the RBI lends shot-term money to the banks. When the repo rate increases borrowing from RBI becomes more expensive. Therefore, we can say that in case, RBI wants to make it more expensive for the banks to borrow money, it increases the repo rate; similarly, if it wants to make it cheaper for banks to borrow money, it reduces the repo rate
Thus, we can conclude that Repo Rate signifies the rate at which liquidity is injected in the banking system by RBI, whereas Reverse repo rate signifies the rate at which the central bank absorbs liquidity from the banks.
What is the difference between Bank Rate and Repo Rate?
Bank Rate vs Repo Rate
Bank Rate is the rate at which RBI allows finance to commercial banks in India. There are difference types of refinance that can be availed by banks and these are linked to Bank Rate. Thus, banks can borrow at this rate only to the extent of their eligibility for refinance.
On the other hand, Repo is a money market instrument, which enables collateralised short term borrowing and lending through sale/purchase operations in debt instruments. Under a repo transaction, a holder of securities sells them to an investor with an agreement to repurchase at a predetermined date and rate. In the case of a repo, the forward clean price of the bonds is set in advance at a level which is different from the spot clean price by adjusting the difference between repo interest and coupon earned on the security. In the money market, this transaction is nothing but collateralised lending as the terms of the transaction are structured to compensate for the funds lent and the cost of the transaction is the repo rate. Thus, a bank can borrow under repo provided he has the extra securities which it can lend temporarily to RBI for borrowing short term funds.
What is relation between Inflation and Bank interest Rates?
Now a days, you might have heard lot of these terms and usage on inflation and the bank interest rates. Bank interest rate depends on many other factors, out of that the major one is inflation. Whenever you see an increase on inflation, there will be an increase of interest rate also
What is a bank?
A bank is a financial institution whose primary activity is to act as a payment agent for customers and to borrow and lend money. It is an institution for receiving, keeping, and lending money

What is the activity of Banks?
Banks act as payment agents by conducting checking or current accounts for customers, paying cheques drawn by customers on the bank, and collecting cheques deposited to customers’ current accounts. Banks also enable customer payments via other payment methods such as telegraphic transfer, EFTPOS, and ATM.
Banks borrow money by accepting funds deposited on current account, accepting term deposits and by issuing debt securities such as banknotes and bonds. Banks lend money by making advances to customers on current account, by making installment loans, and by investing in marketable debt securities and other forms of money lending.
Banks provide almost all payment services, and a bank account is considered indispensable by most businesses, individuals and governments. Non-banks that provide payment services such as remittance companies are not normally considered an adequate substitute for having a bank account.
Banks borrow most funds from households and non-financial businesses, and lend most funds to households and non-financial businesses, but non-bank lenders provide a significant and in many cases adequate substitute for bank loans, and money market funds, cash management trusts and other non-bank financial institutions in many cases provide an adequate substitute to banks for lending savings to.
What is Banking Business?
“Banking Business” means the business of receiving money on current or deposit account, paying and collecting cheques drawn by or paid in by customers, the making of advances to customers, and includes such other business as the Authority may prescribe for the purposes of this Act.
What is Accounting for Bank Accounts?
Bank statements are accounting records produced by banks under the various accounting standards of the world. Under GAAP and IFRS there are two kinds of accounts: debit and credit. Credit accounts are Revenue, Equity and Liabilities. Debit Accounts are Assets and Expenses. This means you credit credit accounts to increase their balances and you debit debit accounts to increase their balances.
This also means you debit your savings account every time you deposit money into it (and the account is normally in deficit) and you credit your credit card account every time you spend money from it (and the account is normally in credit).
However, if you read your bank statement, it will say the opposite- that you have credited your account when you deposit money, and you debit when you withdraw it. If you have cash in your account you have a positive or credit balance and if you are overdrawn it will say you have a negative or a deficit balance.
The reason for this is because the bank, and not you, has produced the bank statement. Your savings might be your assets, but it is the bank’s liability, so your savings account is a liability account which is a credit account and should have a positive credit balance. Your loans are your liabilities but the bank’s assets so they are debit accounts which should have a negative balance.
Below where bank transactions, balances, credits and debits are discussed, they are done so from the viewpoint of the account holder which is traditionally what most people are used to seeing.
What are the commercial roles of the Banks ?
However the commercial role of banks is wider than banking, and includes:
• However the commercial role of banks is wider than banking, and includes:
• issue of banknotes (promissory notes issued by a banker and payable to bearer on demand)
• processing of payments by way of telegraphic transfer, EFTPOS, internet banking or other means
• issuing bank drafts and bank cheques
• accepting money on term deposit
• lending money by way of overdraft, installment loan or otherwise
• providing documentary and standby letters of credit (trade finance), guarantees, performance bonds, securities underwriting commitments and other forms of off balance sheet exposures
• safekeeping of documents and other items in safe deposit boxes
• currency exchange
• sale, distribution or brokerage, with or without advice, of insurance, unit trusts and similar financial products as a ‘financial supermarket’
What are the Economic functions of Banks?
The economic functions of banks include:
1. issue of money, in the form of banknotes and current accounts subject to cheque or payment at the customer’s order. These claims on banks can act as money because they are negotiable and/or repayable on demand, and hence valued at par and effectively transferable by mere delivery in the case of banknotes, or by drawing a cheque, delivering it to the payee to bank or cash.
2. netting and settlement of payments — banks act both as collection agent and paying agents for customers, and participate in inter-bank clearing and settlement systems to collect, present, be presented with, and pay payment instruments. This enables banks to economise on reserves held for settlement of payments, since inward and outward payments offset each other. It also enables payment flows between geographical areas to offset, reducing the cost of settling payments between geographical areas.
3. credit intermediation – banks borrow and lend back-to-back on their own account as middle men
4. credit quality improvement – banks lend money to ordinary commercial and personal borrowers (ordinary credit quality), but are high quality borrowers. The improvement comes from diversification of the bank’s assets and the bank’s own capital which provides a buffer to absorb losses without defaulting on its own obligations. However, since banknotes and deposits are generally unsecured, if the bank gets into difficulty and pledges assets as security to try to get the funding it needs to continue to operate, this puts the note holders and depositors in an economically subordinated position.
5. maturity transformation — banks borrow more on demand debt and short term debt, but provide more long term loans. In other words; banks borrow short and lend long. Bank can do this because they can aggregate issues (e.g. accepting deposits and issuing banknotes) and redemptions (e.g. withdrawals and redemptions of banknotes), maintain reserves of cash, invest in marketable securities that can be readily converted to cash if needed, and raise replacement funding as needed from various sources (e.g. wholesale cash markets and securities markets) because they have a high and more well known credit quality than most other borrowers.

What are the different channels of Banking you use in your daily life ?
Banks offer many different channels to access their banking and other services:
• A branch, banking centre or financial centre is a retail location where a bank or financial institution offers a wide array of face-to-face service to its customers.
• ATM is a computerized telecommunications device that provides a financial institution’s customers a method of financial transactions in a public space without the need for a human clerk or bank teller. Most banks now have more ATMs than branches, and ATMs are providing a wider range of services to a wider range of users. For example in Hong Kong, most ATMs enable anyone to deposit cash to any customer of the bank’s account by feeding in the notes and entering the account number to be credited. Also, most ATMs enable card holders from other banks to get their account balance and withdraw cash, even if the card is issued by a foreign bank.
• Mail is part of the postal system which itself is a system wherein written documents typically enclosed in envelopes, and also small packages containing other matter, are delivered to destinations around the world. This can be used to deposit cheques and to send orders to the bank to pay money to third parties. Banks also normally use mail to deliver periodic account statements to customers.
• Telephone banking is a service provided by a financial institution which allows its customers to perform transactions over the telephone. This normally includes bill payments for bills from major billers (e.g. for electricity).
• Online banking is a term used for performing transactions, payments etc. over the Internet through a bank, credit union or building society’s secure website.
How many type of banks there are ?
Banks’ activities can be divided into retail banking, dealing directly with individuals and small businesses; business banking, providing services to mid-market business; corporate banking, directed at large business entities; private banking, providing wealth management services to high net worth individuals and families; and investment banking, relating to activities on the financial markets. Most banks are profit-making, private enterprises. However, some are owned by government, or are non-profits.
Central banks are normally government owned banks, often charged with quasi-regulatory responsibilities, e.g. supervising commercial banks, or controlling the cash interest rate. They generally provide liquidity to the banking system and act as the lender of last resort in event of a crisis.
Type of Retail Banks
• Commercial bank: the term used for a normal bank to distinguish it from an investment bank. After the Great Depression, the U.S. Congress required that banks only engage in banking activities, whereas investment banks were limited to capital market activities. Since the two no longer have to be under separate ownership, some use the term “commercial bank” to refer to a bank or a division of a bank that mostly deals with deposits and loans from corporations or large businesses.
• Community Banks: locally operated financial institutions that empower employees to make local decisions to serve their customers and the partners
• Community development banks: regulated banks that provide financial services and credit to under-served markets or populations.
• Postal savings banks: savings banks associated with national postal systems.
• Private banks: manage the assets of high net worth individuals.
• Offshore banks: banks located in jurisdictions with low taxation and regulation. Many offshore banks are essentially private banks.
• Savings bank: in Europe, savings banks take their roots in the 19th or sometimes even 18th century. Their original objective was to provide easily accessible savings products to all strata of the population. In some countries, savings banks were created on public initiative, while in others socially committed individuals created foundations to put in place the necessary infrastructure. Nowadays, European savings banks have kept their focus on retail banking: payments, savings products, credits and insurances for individuals or small and medium-sized enterprises. Apart from this retail focus, they also differ from commercial banks by their broadly decentralised distribution network, providing local and regional outreach and by their socially responsible approach to business and society.
• Building societies and Landesbanks: conduct retail banking.
• Ethical banks: banks that prioritize the transparency of all operations and make only what they consider to be socially-responsible investments.
• Islamic banks: Banks that transact according to Islamic principles.

Post a Comment

 
Top