Posts

Showing posts from August, 2022

Content of fundamentals of organisational behaviour

Image
Fundamentals of Organisational Behaviour                     CONTENTS 1.1.Organisational Behaviour 1.1.1. Introduction 1.1.2.Meaning & Definition of Organisational Behaviour   1.1.3. Nature/Characteristics of Organisational Behaviour 1.1.4. Scope of Organisational Behaviour  1.1.5. Need of Organisational Behaviour 1.1.6. Goals of Organisational Behaviour 1.1.7. Determinants of Organisational Behaviour  1.1.8. Levels of Organisational Behaviour 1.1.9. Fundamental Concepts of Organisational Behaviour  1.1.10.Models of Organisational Behaviour  1.1.11. Approaches of Organisational Behaviour 1.1.12. Contributions of Other Disciplines to Organisational Behaviour  1.1.13 Emerging Aspects of Organisational Behaviour 1.1.14. Limitations of Organisational Behaviour 1.2. Cultural Diversity 1.2.1. Meaning of Cultural Diversity  1.2.2. Factors Constituting Cultural Diversity 1.2.3. Impact of Cu...

Syllabus of "Digital design and computer organisation" 📟💽🖱️

                      CONTENTS Preface 1. Number Systems and Data Representation 1.1 Introduction 1.2 Basic Features of Digital Systems  1.3 Number Systems 1.4 Interconversion of Two Different Number Systems 1.5 Complements  1.6 Representation of Information 2. Codes and Binary Arithmetic 2.1 Introduction 2.2 Codes 2.3 Arithmetic Operations 3. Boolean Algebra and Simplification Techniques. 3.1 Introduction 3.2 Switching Algebra 3.3 Boolean Variable and Boolean Algebra 3.4 Boolean Constant and Operators 3.5 Boolean Functions and Truth Tables 3.6 Equivalence of Boolean Expressions 3.7 Boolean postulates  3.8 Boolean Laws and Theorems 3.9 Algebraic Technique for Verification 3.10 Canonical Forms of Boolean Expressions 3.11 Don't Care Conditions 3.12 Simplification Techniques of Boolean Functions  Boolean Postulates

File Handling 📘📓

                FILE HANDLING  File Handling is the storing of data in a file using a program. In C programming language, the programs store results, and other data of the program to a file using file handling in C. Also, we can extract/fetch data from a file to work with it in the program. The operations that you can perform on a File in C are − - Creating a new file - Opening an existing file - Reading data from an existing file - Writing data to a file - Moving data to a specific location on the file - Closing the file - Creating or opening file using fopen() The fopen() function is used to create a new file or open an existing file in C. The fopen function is defined in the stdio.h header file. Now, lets see the syntax for creation of a new file or opening a file file = fopen(“file_name”, “mode”) This is a common syntax for both opening and creating a file in C. Parameters file_name − It is a string that spec...

Tenses

                          TENSES Tenses denote the time of action. They show when the work is done. They are: (1)Present Tense (2) Past Tense (3) Future Tense They are further divided into (1) Simple Present. It is used to denote scientific facts, universal truths and work done on daily basis. ASSERTIVE RULE --- sub + V1+s/es + object Example - She writes a letter. NEGATIVE RULE ---Sub + does not + v1+s/es + object Example - She does not write a letter. INTERROGATIVE RULE --- Does + sub + v1+s/es + obiect Example - Does she write a letter? INTERROGATIVE NEGATIVE ASSERTIVE - Does + sub +not+v1+s/es + object Example - Does she not write a letter? (2) Present Continuous-It is used to express an action taking place at the time of speaking. ASSERTIVE RULE -sub + is/am/are + v1+ine + obiect Example - she is writing a letter NEGATIVE RULE --- sub + is/am/are+not+v1+ing + object Example She is not writing a letter INTERROGATIVE RU...

List of syllabus "Mathematics BCA 1 year 2 semester"

Unit-I Chapter 1: Set Theory Unit-II Chapter 2: Relations Chapter 3: Functions Unit-III Chapter 4: Partial Order Relations and Lattice Unit-IV Chapter 5: Partial Differentiation (Euler's Theorem) Chapter 6: Change of Independent Variables Chapter 7: Maxima and Minima (Extrema) of Functions of two Variables Unit-V Chapter 8: Co-ordinates in Space... Chapter 9: Direction Cosines and Projections Chapter 10: Plane Chapter 11: Straight Lines Chapter 12: Sphere Unit-VI Chapter 13: Multiple Integrals Chapter 14: Change the Order of Integration

Introduction to C language

  Definition  : - C is a high-level and general - purpose programming language developed by. "Dennis Ritchie" Bell Labs for the Unix Operating System in the year 1972 in USA. Syntax of C 👇