Testing Fundamentals - Why Software Testing Matters
Consider this code snippet representing QA and QC activities in a project:
qa_activities = ['process audit', 'training', 'checklist creation'] qc_activities = ['manual testing', 'bug reporting', 'regression testing'] print(len(qa_activities), len(qc_activities))What will be the output?
