Answer:
I align with the second group of System Analysts.
Explanation:
Actually, in the IT world most users want detailed explanations of processes, reports and data during their fault resolutions. However, they do not really know what to do with these nor would even make use of it when a fault occur on their system again. Thus, it is better for "<em>Systems Analysts to let the users know what information can be obtained from the system. If you let the users dictate, then you will never get anywhere and/or go down costly paths because the end-users really don't know what they want and do not have the technical knowledge or understanding of code, data-basing, and systems." </em>
When creating an input/output table, where do you enter the formula?
A. In the input cell
B. In the output cell
C. In the title cell
D. In the table of contents
<u>ans. (B) In the output cell</u>
Answer:
Custom software designs a software package that is targeted to a particular user community and that meets an organization's specific needs. A lot of these things must be taken into account whenever making a "buy vs. create" decision for a custom software.
Purchasing a wrong program may hinder the process for your business while trying to build one can be expensive and time consuming. The study of these two methods should take into account labor costs, long-term and brief-term costs, and infrastructure costs.
The most popular purpose an organization creates or gets a custom product is that it's special to their organization and if the software is designed effectively it will improve the business' productivity and create its own competitiveness edge.
Moreover, creating a custom software requires a great upfront cost and it also takes a long time to build a proper one.
Labor costs for developing a customized product are often greater than purchasing off-the-shelf solution, as the company has to employ a software developer and build an IT team to create and manage the right software.
There would be maintenance costs in the long run but it wouldn't be as enormous as it was in the building and the process of creation. But, the more significant than cost, is the long-term benefit it brings to the business.
A specific application will improve the workflow of the company, allow the company to retain space with the rate and volume expansion, all of which would help bring financial benefits and distinguish the business from other competitors.
Answer:
string ** carMakes=new string*[20];
for(int i=0;i<20;i++)
{
carMakes[i]=new string[6];
}
Explanation:
The above written piece of code is in C++ and it will declare and allocate memory on the heap for a 2-D array of strings with the number of rows 20 and number of columns 6 with name of the array carMakes.
To declare a 2-D array in C++ we use new keyword.
Answer
Crawler
Explanation
This is a program that go to various website to read their pages and content provided in order to form entries for a search engine index.All search engines have this program called spider or a bot. It acts as an automated script that browses through the internet to scan the web pages and find words contained in the pages and where the words are used.