Answer:
The correct answer for the given question is " input validation"
Explanation:
Input validation is also known as data validation which is used for validate or test the user input .
The example of input validation in c++ programming
#include <iostream> // header file
using namespace std;
int main() // main function
{
int a1; // variable declarartiomn
cout << "Enter the age: ";
cin >> a1;
if(a1> 18) // validate user input
{
cout << "You are eligible for vote :";
}
return 0;
}
In this program we input a age from user and validate this user input that .If user enter age > 18 then it will eligible for vote.
output
21
You are eligible for vote
Answer:
The correct option is;
Jena
Explanation:
The first anastigmatic lenses were calculated in 1886 in Jena by the mathematician Paul Rudolph, who was employed by Carl Zeiss, from the characteristics of the new Jena glasses (Jenaer Glas in German) which is a quality heat and shock resistant glass first invented and produced by Otto Schott
In 1889, the Zeiss Anastigmat, which was the first anastigmatic lens was launched and it in 1890it was renamed and sold as Protar.
Answer:
A.) A collection of large, complex data sets, including structured and unstructured data, that cannot be analyzed using traditional database methods and tools.
Explanation:
Big data is a collection of large, complex data sets, including structured and unstructured data, that cannot be analyzed using traditional database methods and tools.
<span>*computer keyboard *mouse *touch screens *pendrives are the four alternative devices that can be used as source of alphanumeric character input data</span>
Answer:
def letter_grade(grades):
letters = []
for grade in grades:
if grade >= 90 and grade <= 100:
grade = 'A'
elif grade >=80 and grade <= 89:
grade = 'B'
elif grade >=70 and grade <= 79:
grade = 'C'
elif grade >=60 and grade <= 69:
grade = 'D'
else:
grade = 'F'
letters.append(grade)
return letters
lst = [100, 20, 75, 81]
print(letter_grade(lst))
Explanation:
Create a function called letter_grade that takes one parameter, grades
Create an empty list, letters, to hold the letter grades
Initialize a for loop iterates through the grades. Check each grade, find its convenient letter and put it in the letters.
When the loop is done, return the letters.
Call the function with given list and print the result