Chapter 6: Technological Environment

Very Short Answer 1. Point out the different levels of technology. The different levels of technology are listed below. Manual technology Mechanized technology Automated technology Computerized technology Robotized technology 2. Point out the components of technological environment. The components of technological environment are as follows. Levels of technology Pace of technology change Technology transfer Research […]

Chapter 2: Financial Statements and Analysis

Short Questions Answers 1. Who are some of the basic users of financial statements and how do they use them? Financial statements contain a balance sheet, income statement, cash flow statement and the statement of retained earnings of a firm. Various stakeholders use the firm’s financial statement. The basic users of financial statements are shareholders, […]

Chapter 2 : Political Environment

Very Short Question Answer  1. Enlist the components of political environment. Political environment includes various components which are mentioned below: Political ideology Constitution Political parties  Government and its branches: Legislation, Executive & Judiciary  2.  What is political ideology? Political ideology may be defined as a set of ideas, principles, and philosophy. It offers some political […]

Chapter 1: Introduction to Business Environment

Very Short Questions Answers 1. Define business environment. Business environment is combination of all the factors that influence a business activity. It consists of the internal and external forces prevalent in the environment, which have a bearing on the development, performance and outcomes of a business organization. 2. Define task environment. Task environment refers to […]

DSA with Java- Solution- Very Short Answer

Data structure and algorithm with JAVA What is data structure? → A data structure is a specialized format for organizing and storing data. General data structure types include the array, the file, the record, the table, the tree, and so on. Any data structure is designed to organize data to suit a specific purpose so that it can be accessed and worked with […]

Web Programming – Solutions -2015

11. Write a program in PHP to add three numbers. <!doctype html> <html> <head> <title>Year : 2015 | Q : 11</title> </head> <body> <?php $sum = 0; if(isset($_POST[‘add’])) $sum = $_POST[‘n1’]+$_POST[‘n2’]+$_POST[‘n3’]; ?> <form method = ‘post’> Number 1: <input type = ‘number’ name = ‘n1’ value = ‘0’><br> Number 2: <input type = ‘number’ name […]