retagged by
337 views
0 votes
0 votes
ABC bank has just ventured into a retail banking system with the functions
Saving Bank Accounts, Current Bank Accounts, Fixed Deposits (FD).
Each function in turn has multiple child processes that work together in
harmony for the process to be useful.
Bank maintains record of each customer, savings bank account transactions
are updated on real-time basis whereas FD transactions are updated on periodic
basis.
Which of the following is appropriate logical design for customers
information ?

(A) Customer_Savings_Acc(Cust_no, Name, Address, Nominee,
Date_of_birth, Contact_no, Introducer_name, Introducer_acc_no)
Customer_Current_Acc(Organisation_Name, Address, Nominee,
Contact_no, Introducer_name, Introducer_acc_no)
Customer_FD_Acc(Customer_Name, Address, Nominee, Contact_no,
Interest_rate, Period_in_months, Introducer_name, Introducer_acc_no)

(B) Customer_Master(Cust_no, Name, Address, Nominee, Date_of_birth,
Contact_no, Introducer_cust_no, Introducer_acc_no, Status)
Account_Master(Account_no, Cust_no, Account_type, Balance_Amt,
dt_of_opening, Status)
Customer_FD_Acc(Account_no, Cust_no, Amount, Interest_rate,
Period_in_months, dt_of_opening)

(C) Customer_Accounts(Cust_no, Name, Address, Nominee, Date_of_birth,
Contact_no, Introducer_cust_no, Introducer_acc_no, Account_type,
Duration, Interest_Rate, Dt_of_opening, Status)

(D) Customer_Master(Cust_no, Name, Address, Nominee, Date_of_birth,
Contact_no, Introducer_cust_no, Introducer_acc_no)
Accounts(Acc_no, Cust_no, Account_type, Amount, Dt_of_opening,
Duration, Interest_Rate)
retagged by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
1
ayush201 asked Dec 7, 2018
1,101 views
Q.47. How many minimum relation tables are required which satisfy 1NF? A 2, 2, and 1 respectivelyB 2, 2, and 2 respectivelyC 1, 2, and 1 respectivelyD 1, 1, and 1 respect...
0 votes
0 votes
0 answers
2
SandeepKumar147 asked 1 day ago
25 views
0 votes
0 votes
0 answers
3