What is the role of data manager in dbms?
DBMS stands for DataBase Management System. So it's role is basically to manage the database. More specifically this software controls the storage, organization, retrieval, integrity and security of the data in the database.
What are to advantages of a database?
A database is a collection of interrelated data and the advantages of a database are ensured efficiency, standardized data, maintainable data, integrated data, reduced redundancy of data.
What is the relationship between manual and computerize accounting systems?
With manual accounting you have to create journal entries, invoices, and other documents by hand and with computerized accounting you just have to enter the information on the forms, because the forms have already been created in the software.
What are the structures into which a sporophyte differentiates?
A sporophyte differentiates into various structures, primarily including the root, stem, and leaves. In vascular plants, these structures are often organized into a complex system that supports growth and reproduction. The sporophyte can also develop specialized structures such as flowers, cones, or sporangia, depending on the plant type, which are crucial for the production of spores. Overall, these differentiated structures allow the sporophyte to effectively carry out photosynthesis, nutrient uptake, and reproduction.
What are the objectives of cost management system?
The objectives of a cost management system are to accurately estimate costs, monitor and control expenditures, and enhance overall financial performance. It aims to provide valuable insights for decision-making by tracking variances between planned and actual costs. Additionally, the system seeks to optimize resource allocation and improve cost efficiency, ultimately contributing to the organization’s profitability and competitiveness.
What are the advantages n disadvantages of a hydro pneumatic system?
What is master file in database environment?
The main file in the database which is the only copy of the important data in a database is MASTER FILE
lalkesav@gmail.com
What is closed frequent itemset in datamining?
An itemset is closed if none of its immediate supersets has the same support as the itemset.
So for example, if {Bread, Milk} is an itemset that has support=4, and all of its supersets has support<4, then {Bread, Milk} is a closed itemset.
Counter e.g.: If, let's say, {Bread, Milk, Sugar} has support=4, then {Bread, Milk} is not a closed itemset anymore.
Note: The definition states "the same" and doesn't say "the same or more" because it's impossible for a superset to have a support greater than one of its subsets.
What are the disadvantages of management control system?
One disadvantage of the management control system is a lack of standard control. Another disadvantage is there is no room for change and low employee morale.
How many types of information system in business organization?
Information systems differ in their business needs. Also depending upon different levels in organization information systems differ. Three major information systems are
Transaction processing systems
Management information systems
Decision support systems
The information needs are different at different organizational levels. Accordingly the information can be categorized as: strategic information, managerial information and operational information.
Strategic information is the information needed by top most management for decision making. For example the trends in revenues earned by the organization are required by the top management for setting the policies of the organization. This information is not required by the lower levels in the organization. The information systems that provide these kinds of information are known as Decision Support Systems.
Why is fuzzy logic not best in solving uncertainty?
Certainly fuzzy logic is not the best in solving uncertainty, but..... it is on of the best alternatives to that exists to model uncertainty.
How can you return all the records from a table named Persons sorted descending by FirstName?
SELECT * FROM Person ORDER BY FirstName DESC
What does the term table mean in databases?
aga
A table means that it holds infomation and can be easily accessed!
What is atomicity property of a database?
A transaction must be an atomic unit of work; either all of its data modifications are performed or none of them is performed.
When two or more rows share the same number of columns, and when their corresponding columns share the same (or compatible) domains, they are said to be union-compatible.
What are the various packages in rdbms?
They r two types
1)create package command
2)create package body command
Failure to save the database will result in the changes being lost, just as failing to save a text document will cause changes to be lost.
What is the difference between object based model and record based model?
Object Model: deals with object oriented "blue-print" of your system. This includes, class diagrams (classes you will be creating), relationship between these classes, methods in the classes, properties etc.
Data model: deals with entities at the database level. Like how the classes in the OM will get stored in the database, in which tables etc. So DM deals with Table schema, relationship between different tables (PKs, FKs) etc.
Example:
DM does not have complex OO features like polymorphism, inheritance, overloading etc which are usually listed in an OM.
As a rough example, two classes in the OM can get stored (mapped) to a single Table in the DM, like both Employee and Manager persons can be stored in a single DB table.