Organization Behavior and Human Resource Management

The Concept of Modern Management (Chapter1)

Chapter1 highlights The concept of modern management, F. W. Taylor, scientific management, Administrative and functional management,(classical theory), Max Weber and bureaucracy, Chester Bernard, Neo classical theory, Contingency theory   The concept of modern management Setting any goal and achieving it are two sequential and common functions of every individual. For some these activities are very […]

C

Conditional Operator In C Language with Example (?:)

The conditional operators in C language are known by two more names Ternary Operator ?: Operator It is actually the if condition that we use in C language decision making, but using conditional operator, we turn the if condition statement into a short and simple operator. The syntax of a conditional operator is : expression […]

C

Example of Increment or Decrement Operator in C Language

Increment and decrement operators in C C language contains two unary operators referred to as increment (++) and decrement (–) operators. The two unary arithmetic operators in C Increment operator (++) Decrement operator (- -) The increment operator increments the variable by one and the decrement operator decrements the variable by one. These operators can […]

Semantic Web

What is XML?

XML stands for EXtensible Markup Language XML is a markup language much like HTML XML was designed to carry data, not to display data XML tags are not predefined. You must define your own tags XML is designed to be self-descriptive XML is a W3C Recommendation XML is not a replacement for HTML. XML and […]

Image Processing

A 3*3 size image has following intensity information

A 3*3 size image has the following intensity information 4          5           2 8         3            1 6         7             9 Change this image in-to a 9*9 size image using zooming by replacement method Solution Row operation 4    4   4    5   5  5   2  2  2 8     8   8    3  3  3  1  1  1 6     6   6   […]