Hi,
JVM - Java Virtual Machine
Hope this helps.
r3t40
        
             
        
        
        
When you print handouts, the presentation is printed with one or more slides on each piece of paper. When you print handouts, it's best to have the presentation printed on them for those who can not view the presentation clearly to follow along with. This also serves as a great tool for people who missed the presentation to receive a handout later or for those there to take home and review. 
        
             
        
        
        
Answer:
the answer is
c. Trojan horses enter a secure space, while an infected file proceeds to be downloaded and run.
 
        
             
        
        
        
Answer:
#include <bits/stdc++.h>
using namespace std;
bool isPalindrome(string str)
{
    char a,b;
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
    a=tolower(str[i]);//Converting both first characters to lowercase..
    b=tolower(str[length-1-i]);
    if (b != a )
return false;
}
return true;
    
}
int main() {
    string t1;
    cin>>t1;
    if(isPalindrome(t1))
    cout<<"The string is Palindrome"<<endl;
    else
    cout<<"The string is not Palindrome"<<endl;
 return 0;
}
Output:-
Enter the string
madam
The string is Palindrome
Enter the string
abba
The string is Palindrome
Enter the string
22
The string is Palindrome
Enter the string
67876
The string is Palindrome
Enter the string
444244
The string is not Palindrome
Explanation:
To ignore the cases of uppercase and lower case i have converted every character to lowercase then checking each character.You can convert to uppercase also that will also work.
 
        
             
        
        
        
Answer:
a) range check
Explanation:
Validation can be defined as an automatic computer check that is designed to ensure any data entered is sensible, consistent, feasible and reasonable. 
Basically, there are five (5) main validation methods and these includes;
I. Presence check: checks that the user enters (inputs) data into the field. It ensures a field isn't accidentally left blank. 
II. Length check: checks that the data entered isn't too short or too long. It ensures that the data meets the minimum characters. 
III. Type check: checks that the data entered is in the right format. For example, string, integer, float, etc. 
IV. Check digit: checks that the digit entered is acceptable and consistent with the rest of the digits. 
V. Range check: checks that the data entered is between the accepted lower (minimum) and upper (maximum) level. 
Hence, range check is a validation type you would use to check that numbers fell within a certain range.
For example, 0 < x > 1000 is a range check.