ANSWER: Cell
EXPLANATION: Cell is the smallest unit of a spreadsheet. It is the intersection of rows and columns in a spreadsheet of Microsoft Excel where data is entered. A data entered is usually a text, numeric value or a formula. It is also called as an excel address.
Answer:More profit
Explanation:
Profit is known to be monetary gain which an individual or organisation get or received from a business deal or transaction. Furthermore, it is the reward received after deducting the total revenue from total cost. Thus, businesses that use teams tend to have higher profit because the employees are many and they will bring more customers to transact business with the organisation thereby leading or resulting to more and greater profit or gain.
Answer:
Improve individual productivity
Explanation:
Improving individual productivity as to do with efficiency, achieving more within a shorter period of time. One of the ways to achieve this is by using Information system tools. Information system tools supports processes, operations and intelligence which will help a worker to do more quality work spending lesser time, as well as reduce spending time on unnecessary tasks.
Answer:
Improve personal productivity/ performance.
Explanation:
Information system is an organised medium of communication within a network of individuals. Information system technology uses technology to improve communication between users or people. It is structurally and functionally describes the use of computer networking in social and business interaction.
Peter can automatically filter spam emails and communicate with a group of people easily, to save time and improve in his digital literacy skills.
Shadowing
c.
Modeling
b.
Foreshortening
d.
Sfumato
----------------------------------------------------------
Negative space is particularly important and highly utilized in creating ____________
a.
paintings
c.
sculptures
b.
drawings
d.
landscapes
----------------------------------------------------------------
The way people view and understand an object or subject depends primarily on ___________.
a.
reality
c.
distance
b.
modeling
d.
perception
Answer:
Question 1) a) Shadowing is the use of value to create the illusion of depth. Sfumato is a softening technique, Foreshortening is a technique used to represent spacial presence, and Modeling involves creating actual depth rather than simply the illusion of it. Question 2) a) Negative space is particularly important and highly utilized in creating paintings. Whilst negative space can be used to the artist's advantage in any artistic technique, it is within paintings that a particularly masterful approach to negative space is required. Question 3) d) The way people view and understand an object or subjects depends primarily on perception.
Explanation:
Answer:
The program in C++ is as follows:
#include <iostream>
using namespace std;
int main(){
int numbers[50];
int evekount = 0, odkount = 0;
for(int i = 0; i<50;i++){
cin>>numbers[i];
if(numbers[i]%2==0){ evekount++; }
else{ odkount++; }
}
cout<<"Even Count: "<<evekount<<endl;
cout<<"Odd Count: "<<odkount<<endl;
return 0;
}
Explanation:
This declares the integer array of number
int numbers[50];
This initializes the even count and odd count to 0
int evekount = 0, odkount = 0;
This iterates from 1 to 50
for(int i = 0; i<50;i++){
This gets input for the array
cin>>numbers[i];
This checks for even
if(numbers[i]%2==0){ evekount++; }
This checks for odd
else{ odkount++; }
}
This prints the even count
cout<<"Even Count: "<<evekount<<endl;
This prints the odd count
cout<<"Odd Count: "<<odkount<<endl;
Answer:
The correct question is as follows:
" Click on this link to bring up a flowchart in a new browser window. Based on this flowchart, would a D-Link 3347 Gateway with an Xbox 360 Multiplayer problem be In Scope or Out Of Scope ( see quiz 2 flowchart)". The answer is OUT OF SCOPE.
Explanation:
The flowchart as seen in the attached file shows that for a network related issue, a D-Link Gateway with an Xbox 360 Multiplayer problem would be out of scope. The flowchart clearly indicated that after confirming from the customer if the networking device is a router or gateway, then the next step is to confirm if it is a D-LINK gateway then what type of D-Link in order to confirm if it is 3347 Gateway. After it is confirmed that it is the type 3347 Gateway then we need to confirm from the customer if the it is connected to another smc router and what the issue may be, i.e if it is port forwarding-related or not. Then, we confirm if it is xbox 360 and if the problem is multi-layer game issue, and if this is correct then the issue is regarded as Out of Scope.
See the attachment again for clearer picture of the explanation in the flowchart.