Computer Science, asked by kiruthigaa8798, 10 months ago

Suppose you are a member of the development team of a database project. How would you verify the database design of library management project

Answers

Answered by Cheemaking
0

Answer:

Library Management System is a software built to handle the primary housekeeping functions of a library. Libraries rely on library management systems to manage asset collections as well as relationships with their members. Library management systems help libraries keep track of the books and their checkouts, as well as members’ subscriptions and profiles.

Answered by Anonymous
0

Explanation:

Answer:

class father:

def __init__(self, param):

self.o1 = param

 

class child(father):

def __init__(self, param):

self.o2 = param

 

>>>obj = child(22)

>>>print "%d %d" % (obj.o1, obj.o2)

Similar questions