Answer:
Explanation:
The following code is written in Java. The if() function is actually called an if statement. The following code can be copied and pasted where you need as long as it is within the scope of the mark variable in order to call it and compare it to 10
if (mark > 10){
System.out.println("you have scored good");
} else {
System.out.println("you need to improve ");
}
Animation or C your welcome my friend
Answer:
Rotation of an image
Explanation:
The correct answer is - Rotation of an image
Reason -
When you rotate an object, it moves left or right around an axis and keeps the same face toward you.
When you flip an object, the object turns over, either vertically or horizontally, so that the object is now a mirror image.
My sister works at Mayo and she says come in any time to any Mayo Clinic and say “ I need a job interview stat!”
Answer:
001*|1*00
Explanation:
The language consists of strings in {0,1} that either start with 00 or end with 00 and have no more zeros.
The requirement can be divided into two parts:
1) Strings that start with 00 and have no more zeros
2) Strings that end with 00 and have no more zeros
Generating regular expressions for these parts:
1) 001* - starts with two zeros and can have zero or more 1s later
2)1*00 - starts with zero or more 1s and ends with two zeros
So on combining with the or operator(|), the overall regular expression for the strings in the language becomes:
001*|1*00