University Notes
HPS 103: Human Psychology
Trending!
Psychology is defined as the scientific study of human behavior and mental processes /The science of behavior and mental processes. Psychology studies WHO and WHAT we are, WHY we act and think in a particular manner and what is our potential as an individual.
41 Pages
8652 Views
0 Downloads
1018.59 KB
Uploaded: 2024-06-22
Price: Ksh.100
ENTREPRENEURSHIP SKILLS
Entrepreneurships skills notes
165 Pages
1400 Views
0 Downloads
915.54 KB
Uploaded: 2024-05-07
Price: Ksh.300
DBM;Business Statistics Notes
Trending!
Statistics refers to the collection, organizing, presentation, analyzing, and interpretation of numerical data to make inferences and reach decisions in all branches of economics, business, medicine, and other social and physical sciences.
94 Pages
9372 Views
6 Downloads
5.07 MB
Uploaded: 2024-03-08
Price: Ksh.150
DBM/DBA;Entrepreneurship KNEC notes
Trending!
Entrepreneurship is the process of scanning the environment in order to identify a business opportunity, gathering resources with the aim of establishing a profit making the enterprise under conditions of risk.
143 Pages
8179 Views
0 Downloads
23.47 MB
Uploaded: 2024-03-08
Price: Ksh.100
BAM 2313/CAM 213;International relations
Trending!
The fact that the entire population of the world is divided into separate territorial political communities, or independent states, which affect the way people live, is a good reason to study International Relations. Together those states form an international system that is global in scope. Everybody on earth with very few exceptions, not only lives in one of those countries but is also a citizen of one of them and in some cases, of more than one. So every man, woman, and child on earth is connected to a particular state, and through that state to the state system which affects their lives in important ways that they may not be aware of.
82 Pages
5369 Views
2 Downloads
753.57 KB
Uploaded: 2024-03-08
Price: Ksh.100
AKI 103
Trending!
Matini au makala ni kama mwongozo wa kuwasaidia wanafunza katika kuelewa chimbuko la kiswahili
7934 Views
3 Downloads
40.72 KB
Uploaded: 2024-03-06
Price: Ksh.50
Accounting/SC/CBA:Cost Accounting Notes
Trending!
The purpose of this chapter is to introduce the basic concepts of cost accounting, terminologies and distinguish cost accounting from financial accounting. It is aimed at making it clear on what cost accounting is all about and introduce some of the terminologies used in the chapters that follow.
510 Pages
3555 Views
0 Downloads
8.04 MB
Uploaded: 2024-03-01
Price: Ksh.100
COMPUTER PROGRAMMING
Why Programming?
You may already have used software, perhaps for word processing or spreadsheets, to solve problems.
Perhaps now you are curious to learn how programmers write software. A program is a set of step-by-step
instructions that directs the computer to do the tasks you want it to do and produce the results you want.
There are at least three good reasons for learning programming:
Programming helps you understand computers. The computer is only a tool. If you learn how to
write simple programs, you will gain more knowledge about how a computer works.
Writing a few simple programs increases your confidence level. Many people find great personal
satisfaction in creating a set of instructions that solve a problem.
Learning programming lets you find out quickly whether you like programming and whether you
have the analytical turn of mind programmers need. Even if you decide that programming is not for
you, understanding the process certainly will increase your appreciation of what programmers and
computers can do.
A set of rules that provides a way of telling a computer what operations to perform is called a
programming language. There is not, however, just one programming language; there are many. In this
chapter you will learn about controlling a computer through the process of programming. You may even
discover that you might want to become a programmer.
An important point before we proceed: You will not be a programmer when you finish reading this chapter
or even when you finish reading the final chapter. Programming proficiency takes practice and training
beyond the scope of this book. However, you will become acquainted with how programmers develop
solutions to a variety of problems.
15 Pages
503 Views
0 Downloads
813.22 KB
Uploaded: 2024-02-11
Price: Ksh.20
INTRODUCTION TO JAVA
Java Environment Setup:
Java SE is freely available from the link Download Java. So you download a version
based on your operating system.
You can referto installation guide for a complete detail.
Java Basic Syntax:
Object - Objects have states and behaviors. Example: A dog has states-color,
name, breed as well as behaviors -wagging, barking, eating. An object is an
instance of a class.
Class - A class can be defined as a template/ blue print that describe the
behaviors/states that object of its type support.
Methods - A method is basically a behavior. A class can contain many methods.
It is in methods where the logics are written, data is manipulated and all the
actions are executed
18 Pages
295 Views
1 Downloads
87.11 KB
Uploaded: 2024-02-11
Price: Ksh.20
INTRODUCTION TO C++ PROGRAMMING YEAR 1
Trending!
First Class In C++
Adapted from : http://www.cplusplus.com/doc/tutorial/tut1-1.html
Structure of a C++ program
Probably the best way to start learning a programming language is with a program. So here is our
first program:
// my first program in C++
#include <iostream.h>
int main ()
{
cout << "Hello World!";
return 0;
}
Hello World!
The left side shows the source code for our first program, which we can name, for example,
hiworld.cpp. The right side shows the result of the program once compiled and executed. The way to
edit and compile a program depends on the compiler you are using. Depending on whether it has a
Development Interface or not and on its version. Consult section compilers and the manual or help
included with your compiler if you have doubts on how to compile a C++ console program.
The previous program is the first program that most programming apprentices write, and its result is
the printing on screen of the "Hello World!" sentence. It is one of the simpler programs that can be
written in C++, but it already includes the basic components that every C++ program has. We are
going to take a look at them one by one:
33 Pages
5709 Views
0 Downloads
207.62 KB
Uploaded: 2024-02-11
Price: Ksh.30
EFN112: HISTORY OF EDUCATION
Trending!
• History is generally defined as remarkable human past activities and how these activities
have influenced the present.
• Education is generally defined as the transfer of knowledge, skills, values, customs and
attitudes from one person to another or from one generation to another.
• History of education is the evaluation of past educational development in the context of
social, cultural, economic, technological and political changes in human history and how
these educational developments have shaped and influenced the educational theory and
practice today.
73 Pages
7037 Views
0 Downloads
5.53 MB
Uploaded: 2024-02-11
Price: Ksh.100
ALGORITHMS, FLOWCHARTS, DATA TYPES AND PSEUDOCODE
Trending!
ALGORITHMS
The term algorithm originally referred to any computation performed via a set of rules
applied to numbers written in decimal form. The word is derived from the phonetic
pronunciation of the last name of Abu Ja'far Mohammed ibn Musa al-Khowarizmi, who
was an Arabic mathematician who invented a set of rules for performing the four basic
arithmetic operations (addition, subtraction, multiplication and division) on decimal
numbers.
An algorithm is a representation of a solution to a problem. If a problem can be defined
as a difference between a desired situation and the current situation in which one is, then
a problem solution is a procedure, or method, for transforming the current situation to the
desired one. We solve many such trivial problems every day without even thinking about it, for example making breakfast, travelling to the workplace etc. But the solution to such problems requires little intellectual effort and is relatively unimportant. However, the solution of a more interesting problem of more importance usually involves stating the problem in an understandable form and communicating the solution to others. In the case where a computer is part of the means of solving the problem, a procedure, explicitly stating the steps leading to the solution, must be transmitted to the computer. This concept of problem solution and communication makes the study of algorithms important to computer science.
22 Pages
3307 Views
0 Downloads
86.08 KB
Uploaded: 2024-02-11
Price: Ksh.70
PROGRAMMING TECHNIQUES
Trending!
The Benefits of Considered Program Design and Structure
There are numerous challenges when tackling an embedded system design project. It is
usually wise first to consider the software design structure, particularly with large and
multi-functional projects. It is not possible to program all functionality into a single control
loop, so the approach for breaking up code into understandable features should be well
thought out. In particular, it helps to ensure that the following can be achieved:
• that code is readable, structured and documented
• that code can be tested for performance in a modular form
• that development reuses existing code utilities to keep development time short
• that code design supports multiple engineers working on a single project
• that future upgrades to code can be implemented efficiently.
There are various C/Cþþ programming techniques that enable these design requirements to be considered, as discussed in this chapter.
19 Pages
5833 Views
0 Downloads
1.16 MB
Uploaded: 2024-02-11
Price: Ksh.20
SMA 432: TRIGONOMENTRY
Trending!
Linear correlation refers to a directly proportional relationship between two variables, while nonlinear correlation refers to a relationship that is not directly proportional.
34 Pages
5204 Views
0 Downloads
11.63 MB
Uploaded: 2024-02-10
Price: Ksh.50
Economics Revision Kit notes
Trending!
Although the economic orientation keeps changing, the underlying concept remains the same. This revision
kit is in recognition of the fundamental principle that economics is a development and learning is a process.
It is absolutely necessary to have a systematic approach to studies, right up to the examination. A proper
examination strategy is required irrespective of the mode of study.
681 Pages
8413 Views
0 Downloads
4.43 MB
Uploaded: 2024-02-09
Price: Ksh.150
Economics-Revision-Kit-ebookskenya.co_.ke_
Trending!
Although the economic orientation keeps changing, the underlying concept remains the same. This revision
kit is in recognition of the fundamental principle that economics is a development and learning is a process.
It is absolutely necessary to have a systematic approach to studies, right up to the examination. A proper
examination strategy is required irrespective of the mode of study.
226 Pages
8499 Views
0 Downloads
2.52 MB
Uploaded: 2024-02-09
Price: Ksh.130
Entrepreneurship Detailed notes
Trending!
1-To introduce the concept of entrepreneurship and explain the process of
entrepreneurial action.
2-To describe how structural similarities enable entrepreneurs to make creative
mental leaps.
3-To highlight bricolage as a source of entrepreneurs’ resourcefulness.
4-To introduce effectuation as a way expert entrepreneurs sometimes think.
5-To develop the notion that entrepreneurs cognitively adapt.
6-To introduce sustainable entrepreneurship as a means of sustaining the natural
environment and communities and developing gains for others.
603 Pages
8613 Views
1 Downloads
23.23 MB
Uploaded: 2024-02-09
Price: Ksh.200
ENTREPRENEURSHIP AND COMMUNICATION SKILLS notes
Trending!
Entrepreneurship is the process of coming up with new processes or ways of achieving some set objectives.
280 Pages
8098 Views
0 Downloads
1.48 MB
Uploaded: 2024-02-09
Price: Ksh.150
ENTREPRENEURSHIP AND COMMUNICATION SKILLS REVISION kit
Trending!
This is a complete and precise document with entrepreneurship questions and answers.
171 Pages
8171 Views
0 Downloads
4.11 MB
Uploaded: 2024-02-09
Price: Ksh.130
Financial Accounting revision questions
Trending!
Compete questions and answers in Financial accounting .
168 Pages
8267 Views
1 Downloads
646.15 KB
Uploaded: 2024-02-09
Price: Ksh.140