C Programming 2022 Solution New Syllabus

11.

12.

  13. The main difference between a while loop and a do-while loop lies in when the loop condition is checked: While Loop: In a while loop, the condition is checked before the loop body is executed. If the condition is false initially, the loop body will not execute at all. […]

Continue Reading

software engineering 2021 Solution

Test case for checking the login functionality of an airline seat reservation system: Test Case Title: Check Login Functionality Test Case ID: AIRLINE-001 Test Objective: To verify that the login functionality of the airline seat reservation system works correctly. Preconditions: The user must have valid login credentials. The system is operational. Test Steps: Enter valid […]

Continue Reading

Database New Syllabus Solution

18. A  join operation is used to combine rows from two or more tables based on a related column between them. It is one of the fundamental operations used in relational databases for querying and retrieving data from multiple tables simultaneously. Ans:                  Select e.emp_name,e.province,e.city,b.branch,b.salary from Employee e                   Left join  Branch  b  on e.emp_name=b.emp_name;                   Select […]

Continue Reading