
a.Data creation:It’s the process of putting together facts in an organized manner.
There two basic alternatives;
•Source documents – A great deal of data still originate in the form of manually prepared documents.
•Data capture – Data is produced in machine-sensible form at source and is read directly by a suitable device e.g. a bar code reader.
b.Data transmission:This depends on the method and medium of data collection adopted:
•If computer is located at a central place, the documents will be physically transmitted i.e. by the postman or courier services.
•It is also possible for data to be transmitted by means of telephone lines to central computer. In this case no source documents would be involved in the transmission process.
c.Data preparation:This is the transcription (conversion) of data from the source documents to a machine-readable form.Data collected using devices that directly capture data in digital form don’t require transcription.
d.Data conversion:Data may need to be converted from one media to another e.g. from floppy disk to hard disk for input to the computer.
e.Input validation:Data entered into the computer is subjected to validity checks by a computer program before being used for processing.
f.Sorting:This stage is required to re-arrange the data into a sequence required for processing. It’s a practical necessity for efficient processing of sequentially organized data in many commercial and financial applications.
Steve ju answered the question on June 6, 2018 at 21:06
-
State the data collection media and methods
(Solved)
State the data collection media and methods
Date posted:
June 6, 2018
.
Answers (1)
-
Types of errors during data collection
(Solved)
Types of errors during data collection
Date posted:
June 6, 2018
.
Answers (1)
-
Describe types of files
(Solved)
Describe types of files
Date posted:
June 6, 2018
.
Answers (1)
-
Describe data storage hierarchy
(Solved)
Describe data storage hierarchy
Date posted:
June 6, 2018
.
Answers (1)
-
Give reasons why workers resist computers
(Solved)
Give reasons why workers resist computers
Date posted:
June 6, 2018
.
Answers (1)
-
The two primary objectives of Operating System
(Solved)
The two primary objectives of Operating System use
Date posted:
June 6, 2018
.
Answers (1)
-
What is a digital circuit?
(Solved)
What is a digital circuit?
Date posted:
June 4, 2018
.
Answers (1)
-
Explain two roles of a computer driver
(Solved)
Explain two roles of a computer driver.
Date posted:
June 4, 2018
.
Answers (1)
-
Name three functions of computer drivers
(Solved)
Name three functions of computer drivers.
Date posted:
June 4, 2018
.
Answers (1)
-
Write a program using C++ language that creates a two-by-three two-dimensional safe array of integers.Demonstrate that it works.
(Solved)
Write a program using C++ language that creates a two-by-three two-dimensional safe array of integers.Demonstrate that it works.
Date posted:
May 29, 2018
.
Answers (1)
-
Using c++ language, create a function called recip() that takes one double reference parameter.Have the function change the value of that parameter into its reciprocal.Write...
(Solved)
Using c++ language, create a function called recip() that takes one double reference parameter.Have the function change the value of that parameter into its reciprocal.Write a program to demonstrate that it works
Date posted:
May 29, 2018
.
Answers (1)
-
Show how to allocate a float and an int by using new. Also, show how to free them by using delete.
(Solved)
Show how to allocate a float and an int by using new. Also, show how to free them by using delete.
Date posted:
May 29, 2018
.
Answers (1)
-
The copy constructor is also involked when a function generates the temporary object that is used as the function's return value. With this in...
(Solved)
The copy constructor is also involked when a function generates the temporary object that is used as the function's return value. With this in mind, consider the following output:
constructing nomally
constructing normally
constructing copy
This output was created by the following program. Explain why, and describe precisely what is occuring.
#include
using namespace std;
class myclass {
public:
myclass();
myclass(const myclass &o);
myclas f();
};
// Normal constructor
myclass::myclass()
{
cout << "Constructing normally\n";
}
// Copy constructor
myclass::myclass(const myclass &ocout << "Constructing copy\n";
}
// Return an object.
myclass myclass::f()
{
myclass temp;
return temp;
}
int main()
{
myclass obj;
obj = obj.return 0;
}
Date posted:
May 29, 2018
.
Answers (1)
-
Imagine a situation in which two classes, called pr1 and pr2, shown below, share one printer.Further imagine that other parts of your program need to...
(Solved)
Imagine a situation in which two classes, called pr1 and pr2, shown below, share one printer.Further imagine that other parts of your program need to when the printer is in use by an object of either of these two classes. Create a function in C++ called inuse() that returns true when the printer is being used by either and false otherwise. Make this function a friend of both pr1 and pr2.
class pri1 {
int printing; //...
public:
pr1 () {printing = 0}
void set_print (int status) {printing = status;}
// ...
};
class pr2 {
int printing;
// ...
public:
pr2 () {printing = 0;}
void set_prt status) {printing = status; }
// ...
};
Date posted:
May 29, 2018
.
Answers (1)
-
When an object of a derived class is assigned to another object of the same derived class, is the data associated with the base class...
(Solved)
When an object of a derived class is assigned to another object of the same derived class, is the data associated with the base class copied? To find out, use the following two classes and write a program that demonstrates what happens.
class base {
int a;
public:
void load_a(int n) { a= n; }
int ge() { return a;}
};
class derived : public base {
int b;
public:
void load_b(int n) {b=n;}
int get_b() {return b;}
};
Date posted:
May 29, 2018
.
Answers (1)
-
Using the stack class, write a function called loadstack() that returns a stack that is already loaded with letters of the alphabet (a-z.). Assign this...
(Solved)
Using the stack class, write a function called loadstack() that returns a stack that is already loaded with letters of the alphabet (a-z.). Assign this stack to another object in the calling routine and prove that it contains the alphabet. Be sure to change the stack size so it is large enough to hold the alphabet.
Date posted:
May 29, 2018
.
Answers (1)
-
Explain five good programming practices
(Solved)
Explain five good programming practices.
Date posted:
May 29, 2018
.
Answers (1)
-
List five examples of softwares
(Solved)
This is a question based on Introduction to Computer Systems unit in Computer science course
Date posted:
May 26, 2018
.
Answers (1)
-
List three categories of operating systems
(Solved)
List three categories of operating systems.
Date posted:
May 26, 2018
.
Answers (1)
-
As a programmer, what is the significance of the Integrated Development Environment(IDE) in programming?
(Solved)
As a programmer, what is the significance of the Integrated Development Environment(IDE) in programming?
Date posted:
May 26, 2018
.
Answers (1)