Posts

Showing posts from November, 2025

Java Packages Overview

Image
2020-10 Select from among the following, classes which are stored in the java.sql package. Connection Writer Reader FileWriter ResultSet Answer: (a) Connection and (e) ResultSet The java.sql package is the foundation for Java Database Connectivity (JDBC) and contains classes and interfaces for interacting with databases. (a) Connection is an interface in the java.sql package used to establish a connection with a database. (e) ResultSet is an interface in the java.sql package used to hold data retrieved from a database after executing an SQL query. (b) Writer, (c) Reader, and (d) FileWriter are part of the java.io package, which is used for input and output operations, specifically character streams for the first two and file writing for the last two. They are not related to database connectivity. Java Packages — Quick Reference A compact, beginner-friendly list o...

Business Process Re-engineering

Image
2020-10 Which of the following statements is/are CORRECT regarding Business Process Re-engineering (BPR) and Business Process Improvement (BPI)? The level of change in BPI is incremental while that in BPR is radical. Risks associated with BPI are always higher than the risks associated with BPR. BPI aims to make an improved version of the business process while BPR attempts to create a brand-new business process. Compared to BPR, BPI can be completed in a shorter time period. BPR takes a top-down approach while BPI is a bottom-up approach. Answer: (a) The level of change in BPI is incremental while that in BPR is radial., (c) BPI aims to make an improved version of the business process while BPR attempts to create a brand-new business process., (d) Compared to BPR, BPI can be completed in a shorter time period., (e) BPR takes a top-down approach while BPI is a bottom-up...