Can stack be called fifo data structure?
No. A stack is a LIFO (Last In First Out) data structure.
A queue is a FIFO (First In First Out) data structure.
List the Information system problems and their solutions?
manual system is a system involving data processing which does not make used of stored data, so it is hard to do programs like recording some data or information using this system because it may cause a wasting of time and losting some files, to overcome this problem you may use a computerized sysetm to work it easily.
How do i find the current cursor position in C program?
You cannot do that "in C" but can in TurboC:functions wherex and wherey are you friends. Consult the help.
The cursor position, also known as the mouse position, is a function of the operating system, more specifically, not a function of the current window. Other than by hooking the mouse, a complex topic, there is no way to determine the current cursor position.
For TurboC: WhereX WhereY from conio.h
Metamessages are the way men and women communicate with each other. It is the way they are receiving the message that leads it to the reaction. Example, women always say "Im fine" but in reality we are not okay, it just means we want our partner to discuss more into the situation but the problem is that not all men understand that and they will simply accept when the girl says "I'm fine"
From lowest to highest, the four levels of the organizational hierarchy are operational, knowledge, management, and strategic. Types of information systems include transaction processing systems, office systems, knowledge work systems, decision-support systems, management information systems, and executive support systems.
Transaction processing systems, such as order tracking, payroll, machine control, and compensation, serve the operational level. Engineering workstations, word processing, graphics workstations, managerial workstations, document imaging, and electronic calendars are examples of knowledge work systems and office systems that serve the knowledge level. Sales region analysis, cost analysis, annual budgeting, and relocation analysis are examples of decision-support systems and management information systems. Many of these systems are programs that students learn in their management science or quantitative methods courses. Some are based on database management systems. Examples of executive support systems that serve the strategic level are sales trend forecasting, operating plan development, budget forecasting, profit planning, and manpower planning.
Are Layer 2 protocols connectionless or connection-oriented?
They can be both. E.g. MPLS-TP or Connection-Oriented-Ethernet (COE) are connection oriented.
1 Gigabyte equals how many mega bytes?
It's the other way around. There are 1,000 megabytes in a gigabyte.
What are the two commnds in the USMT?
scanstate which is the machine that you are backing up from.
and
loadstate which is the machine that you are restoring from.
Is it the most efficient approach to access elements with the vector data structure?
Yes. A vector is a variable-length array but constant-time random-access is guaranteed regardless of an array's length.
What ensures the value of the foreign key matches another tables primary key?
It is the DBMS that ensures the value of the foreign key matches another table's primary key when referential integrity constraints are enabled within the DBMS
ER model for project management systems?
A university has a large number of courses in catalog.Attributes of COURSE include Course_Number(identifier),Course_Name and Units.Each course may have one or more course as prerequisties or may have no prerequisties.Similarly,a particular course may be a prerequisties for any number of courses or may not be prerequities for any other course.
What factors affect the performance of multi-national companies?
There are various factors affected company performance, particularly for multi national company. One classical answer is the company competitive forces as explained by Prof. Michael Porter Ph.D. The competitive forces includes the threat of new entrants, threat of substitution, bargaining power of suppliers and customers, as well as the intra industry competitiveness. This theory basically determines the market and industry environment setting in which the firm operates. The more recent literatures suggests that intra industry performance variations are due to recourse heterogeneity within the firms, which is also known as resource based view. Some resources uniqueness such as valuable, rare, imperfect immitability, and non substituteable gives competitive edge of the company. When the environment become more unpredictable, the company's ability to adapt determines the sustainability of company performance. Dynamic capability, that is the ability of company to learn and adapt to any situation, becomes key factors. Performance of multinational company are basically affected by both type of perspective: market and its own resources. Global industry environment will likely be the most important aspect for any MNC. The ability for MNC to stay global and yet be competitive locally will be the differentiating factor that makes the MNC to sustain in hard competition. Competitiveness locally, will be much determined by its resource specificity following the RBV. The MNC's ability to adapt is crucial. MNC headquater may become the driver for the dynamic capability, but also can be the source of rigidity. Headquarter, which normally thousands of miles away, most of the time forget that local environment has more significant impact to the business than the global one, as viewed by the headquarter.
Difference between text field and memo field?
Memo fields can store up to 1 gigabyte of characters or 2 gigabytes of storage (2 bytes per character), of which you can display 65,535 characters in a control on a form or report. In addition, you can now apply rich-text formatting to the data in a Memo field. For example, you can set colours, change fonts, and make data bold or italic. Fields of memo data type cannot be grouped while filtering and it is not possible to sort them however, they are searchable. It is not possible to add a look up property to a memo field. It is also not possible to set an input mask to a memo field meaning that the user can input data however they want without an input mask to guide them as to what format to input the data in.
Text field are for plain text or combinations of text and numbers, such as addresses. Also numbers that do not require calculations, such as phone numbers, part numbers, or postal codes. Text fields may store up to a maximum of 255 characters. Microsoft Access only stores the characters entered in a field; it does not store space characters for unused positions in a Text field. To control the maximum number of characters that can be entered, set the Field Size property. You can and should define a width, but Access doesn't use fixed width storage so is not as wasteful of disk space. Text fields may have look up properties to link them to other fields if necessary.
What is meant by a mandatory field?
a mandatory field in a database is one created in a table as "Not null". This means, there is a "rule" on the field that when data is inserted into the table, this field cannot be empty. If it is, then the insert errors. Here's part of a table definition in my database. These field are are required to be populated when inserting into this table. ATTR_DESC_01 CHAR(2) DEFAULT SYSTEM NOT NULL
, ATTR_DESC_02 CHAR(2) DEFAULT SYSTEM NOT NULL
, ATTR_DESC_03 CHAR(2) DEFAULT SYSTEM NOT NULL
, ATTR_DESC_04 CHAR(2) DEFAULT SYSTEM NOT NULL
, ATTR_DESC_05 CHAR(2) DEFAULT SYSTEM NOT NULL
, ATTR_DESC_06 CHAR(2) DEFAULT SYSTEM NOT NULL
, ATTR_DESC_07 CHAR(2) DEFAULT SYSTEM NOT NULL
, ATTR_DESC_08 CHAR(2) DEFAULT SYSTEM NOT NULL
, ATTR_DESC_09 CHAR(2) DEFAULT SYSTEM NOT NULL
, ATTR_DESC_10 CHAR(2) DEFAULT SYSTEM NOT NULL
, PARTITION_NBR SMALLINT NO DEFAULT NOT NULL
)
What can you achieve by selecting insert in the table menu?
You can add a table, rows, columns, or cells