Posts

CONCEPT OF INTELLIGENCE AS IT RELATE TO IFA DIVINATION

Image
INTELLIGENCE according to Google.com is the ability to acquire and apply knowledge and skills. A typical dictionary definition of intelligence is “the capacity to acquire and apply knowledge.” Intelligence includes the ability to benefit from past experience, act purposefully, solve problems, and adapt to new situations. Intelligence can also be defined as “the ability that intelligence tests measure.” (Merriam-webster, 2017) an online dictionary, also explained that intelligence is the ability to learn or understand or to deal with new or trying situations. Merriam-webster further defines intelligence as the ability to apply knowledge to manipulate one's environment or to think abstractly as measured by objective criteria (such as tests). Technically, Emuoyibafarhe (2013) elaborate that intelligence is a capability of a system to achieve a goal or sustain behavior under condition of uncertainty. Personally, intelligence is the ability to learn, think and take valid de...

INFORMATION SCIENCE vs. ORGANIZATION

INTRODUCTION A system is a group of people, object and process. An information system is such a grouping that provides information about the organization and its environment. This information should be useful to members and clients of that organization. The organization could be a bank, business, church, hospital and any other group of people trying to achieve common objectives or working together. Information system is the means by which information is delivered from one person to another, while IT is the technology that enables this to happen. Information systems play a crucial role in the success of organizations, organization derive benefit from information that they provided such as efficient operations, effective management and competitive advantages. STRUCTURE OF THE ORGANIZATION We need to develop appropriate information systems to support the activities of the organization such as those to support the day-to-day operations. An organization needs information about ...

C++ Code that uses a do..while loop to compute and print the sum of the squares of a number obtained from the operator.

#include<iostream> using namespace std; int main() /* QUESTION:Write a C++ program that uses a do..while loop to compute and print           the sum of the squares of  a number obtained from the operator.           For  example if 5 is input, it will print 55 (i.e 1^2 + 2^2 + 3^2 + 4^2 + 5^2)                     BY: OYENIRAN OLUWASHINA AKINLOYE */ {     // variable decleartion  int v,x,sax = 0;  cout<<"TYPE IN THE NUMBER"<<endl;  cin>> v;  //the initail value of x is set to 0 instead of 1 because if 1 is used, the result will be decreased by 1  // using 0 value will by default set 1 as the intial value although 0 will be printed as the first value  x=0;     do  {      //the result of each square are presented and the total was shown...

C++ Code that uses a for loop to compute and print the sum of the squares of a number obtained from the operator.

#include<iostream> using namespace std; int main() /* QUESTION: Write a C++ program that uses a for loop to compute and print           the sum of the squares of  a number obtained from the operator.           For  example if 5 is input, it will print 55 (i.e 1^2 + 2^2 + 3^2 + 4^2 + 5^2)                     BY: OYENIRAN OLUWASHINA AKINLOYE */ {     // variable decleartion  int v,x,sax = 0;  cout<<"TYPE IN THE NUMBER"<<endl;  cin>> v;  //the initail value of x is set to 1 while the increment was also set to 1   for(x=1;x<=v;x++)   {        sax += x*x;        //the result of each square are presented and the total was shown at the last line of the results.        cout<<"THE RESULT IS: "<...

C++ Code that uses a while loop to compute and print the sum of the squares of a number obtained from the operator.

#include<iostream> using namespace std; int main() /* C++ program that uses a while loop to compute and print the sum of the squares of  a number obtained from the operator. For  example if 5 is input, it will print 55 (i.e 1^2 + 2^2 + 3^2 + 4^2 + 5^2)           BY: OYENIRAN OLUWASHINA AKINLOYE */ {     // variable decleartion  int v,x,sax = 0;  cout<<"TYPE IN THE NUMBER"<<endl;  cin>> v;  //the initail value of x is set to 1  x=1;  while (x<=v)  {       sax += x*x;       x++;       //the result of each square are presented and the total was shown at the last line of the results.        cout<<"THE RESULT IS: "<< sax<<endl;  }    return 0; }  

C++ Code to find odd number

#include <iostream> using namespace std; int main () /*     Name: for loop to find odd numbers between a certain range of figure     Copyright: Oluwashina A. Oyeniran     Author: Oyeniran Oluwashina Akinloye     Date: 23-07-16 08:59     Description: C++ code to find the odd numbers between certain range of figure     // z is defined as odd number (as in int z = 1)     // 1 is the initial value (as in int z = 1)     // 2 is the incremential value (as in z += 2)     // 10 is the heighst range of value while 1 is the least (z <= 10) */ {     for (int z = 1; z <= 10; z += 2)     {         cout << "The number is " << z << endl;     }     return 0; }

C++ Code to find numbers divisible by 7 using do..while loop

#include<iostream> using namespace std; int main () //C++ Program to find numbers divisible by 7 using do..while loop {     int z = 7;     do     {         cout << "The number divisible by 7 is " << z << endl;         z +=7;     }     while (z <= 1000);     return 0; }