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.
Answer:
The correct answer to the following question will be "Checksum".
Explanation:
A variable that reflects the amount of several bits in a transmitted packet and is used by practitioners of IT to spot heavy-level anomalies in the transmission of data, known as Checksum.
- After executing a cryptographic hashing algorithm each piece of information or a document could be allocated a value of checksum before delivery.
- We are relevant because we are using them to verify the authenticity of the documents.
So, it's the right answer.
The question above has multiple choices as follows.
<span>a.
</span>App extensions
<span>b.
</span>Sitelink extensions
<span>c.
</span>Structured snippet extensions
<span>d.
</span>RSLAs (remarketing lists for search ads)
The correct answer is (A) App extensions
App extensions are a great way for people to access your
website. They allow you to link to your tablet or mobile app from your text adds.
If you want to drive app downloads, app promo ads might be the best option.
Answer:
The representation of 100.0 in the floating-point representation is computed as follows: First convert the given number 100.0 in the binary form. 10010 = 11001002 the binary representation.
Explanation:
Answer:
recognition
Explanation:
<h2><u>Fill in the blanks</u></h2>
When you take a multiple-choice test, you are relying on <u>recognition</u> , a means of retrieving information out of your long-term memory storage system that helps you choose the correct answer.