Answer:
D. Attention getters
Explanation:
Based on the answers provided within the question it can be said that in both a speaking outline and a preparation outline you should include attention getters. These are important to include in both because it needs to be practiced and perfected in order to catch the audiences attention and hook them on to what you are saying. 
 
        
             
        
        
        
Answer
The intranet security model
Explanation:
This is an enterprise system that processes user information for security  and access authentication. It prevents unauthorized users, who are not part of the network resources from capturing these information.
The intranet security model is an efficient security procedure that incorporates web security  access control in keeping information safe over the intranet. It is also useful in encryption and decryption techniques.
 
        
             
        
        
        
Answer:
"void" is the correct answer for the given question.
Explanation:
In the function body the value of balance variable is not return that means we use void return type .The void return type is used when the function does not return any value .
If the function are  int return type that means it return "integer value ".
if the function are  double return type that means it return the "double value" .
The complete implementation of this method is 
public void deposit(double amount) // function definition  
{
 balance = balance + amount; // statement 
 }
 
        
             
        
        
        
Answer:
#include <iostream>
#include <map>  
using namespace std;
int main()
{
    map<int, int> numbers;
    cout << "Enter numbers, 0 to finish" << endl;
    int number;
    while (true) {
        cin >> number;
        if (number == 0) break;
        numbers[number]++;
    }
    for (pair<int, int> element : numbers) {
        std::cout << element.first << ": occurs " << element.second << " times" << std::endl;
    }
}
Explanation:
One trick used here is not to keep track of the numbers themselves (since that is not a requirement), but start counting their occurrances right away. An STL map< > is a more suitable construct than a vector< >.
 
        
             
        
        
        
data declaration means a variable which contain data value and it can be declared as integer, float, character, double, boolean (data types).
example:
int r;
char name;
float g;
double k= 23.34;