LLD - Design — Library Management System
Consider this pseudocode for deleting a book record:
if book_id exists:
delete book
return 'Deleted'
else:
return 'Not Found'
What will be the output if book_id does not exist?