data structure and algorithm Technology

What is Data Structure and Abstract Data Types?

  • June 29, 2020
  • 0 Comments

The study of data structure, therefore, involves two complementary goals. The first goal is to identify and develop useful mathematical entities and operations. The second goal is to determine representations for those abstract entities and to implement the abstract operations. In data structures that exist in c, the array, and structure, we describe the facilities […]

stack Technology

How to Represent Stack in C – Data Structure

  • June 22, 2020
  • 0 Comments

The stack provides for the insertion and deletion of items, so that a stack is a dynamic, constantly changing object. Before that, you must know what is data structure? #define MAXSIZE 100struct stack {int items[MAXSIZE];int top;}; Note: If the value of s-top is 4 there are five elements on the stack i.e s.item[0], s.items[1], s.items[2], […]

different types of learning in AI 2 Technology

What are the Different Types of Learning in AI?

  • June 13, 2020
  • 0 Comments

What is learning in Artificial Intelligence? Machine learning refers to a system capable of acquiring and integrating the knowledge automatically. The capability of the systems to learn from experience, training, analytical observation, and other means, results in a system that can continuously self-improve and thereby exhibit efficiency and effectiveness. “Learning denotes changes in the systems […]

Intermittent and Continuous Production System Differences Management

Difference Between Intermittent and Continuous Production

  • June 9, 2020
  • 0 Comments

Intermittent: Goods and services are produced to fulfil the order of customers rather than keeping them in stock. Production has done when demand comes from customers. Job or unit and batch production. Continuous: Production is done on the basis of the sales forecast and stock position. The importance is given to planning, controlling, scheduling etc. […]

Difference Between Efficiency and Productivity Differences Management

Difference Between Efficiency and Productivity

  • June 9, 2020
  • 0 Comments

Efficiency Efficiency in the workplace is the time taken to do something. It measures the capability of the workers and managers. Are they capable to do some work or not. Efficiency increases productivity saves time and money. Productivity Productivity measures the efficiency of the conversion. Productivity is the relationship between output generated by a production […]