Answer:
<u>c. public-key certificates.</u>
Explanation:
It is important to<em> note</em> that in Kerberos infrastructure, <em>tickets </em>are issued by a third party as part of the authentication process.
This authentication process corresponds most closely to that of the Public Key certificates Infrastructure since it is a third party that issues out tickets to authenticate both parties engaged in the communication over a network.
Answer:
# include <iostream>
#include<stdio.h>
using namespace std;
bool IsLeapYear(int y)
int main()
{
int y;
cout<<"Enter the Year to check Leap or Not"<<endl;
cin>>y;
IsLeapYear(int y);
getch();
}
bool IsLeapYear(int y)
{
if (y%4==0)
{
if (y%100==0)
{
if (y%400==0 )
{
cout<"The year is leap Year";
}
else
{
cout<<" The year is not Leap Year";
}
}
else
{
cout<<"The year is Leap Year" ;
}
}
else
{
cout<<"The year is not Leap Year";
}
}
Explanation:
In this program a function has been defined named as IfLeapYear, to check that whether the entered year is leap year or not. An year taken as integer data type named as y to enter the year to check. If the year is divisible by 4 but not divisible by 100 is the leap year. If the year is divisible by 4, divisible by 100 and also divisible by 400 is the century year and is also the leap year.
To check all the statements, Nested if-else conditions has been used to check multiple requirements of the leap year.
C. Select the source cell, press Ctrl + X, select the target cell, and then press Ctrl + V.
Answer:
if the input is zero the out put is 1
Explanation:
because if you think about it if the input was 1 the output would be zero
Answer
Linguistics
Explanation:
linguistics can be defined as scientific study of language and its structure, including the study of grammar, syntax, and phonetics.
there are some Specific branches of linguistics and that include computational linguistics, comparative linguistics, and structural linguistics.
study material into songs can also be defined as a linguistic hence linguistic is the correct option for you question