I'd go with B: Use peek
Desktop peek or Aero peek is a feature introduced in windows 7 that allows you to either take a sneak peek of fully review your desktop. When you move your mouse and click over to the extreme lower right corner of your desktop on the taskbar, you will get a clean view of your desktop window without minimizing any open applications.
Answer:
in1 = int(input("Enter value one: "))
in2 = int(input("Enter value two: "))
print(in1,type(in1), in2, type(in2))
if (in1 <=0 and in2 <=0) or (not in1 <=0 and not in2<=0):
print( True)
else:
print( False)
Explanation:
The if statement of the python source code is used to implement an Exclusive-NOR logic gate that gives a true or high value if both inputs are either true or false.
On the internet, I found
Research topics
Artificial Intelligence
Computing and Mathematics
Cybersecurity
Data Science and Machine Learning
Embedded Systems and IoT
Process Management
Hope this helped :T
Answer:
Following are the answer for the given question
for(int i=1;i<=99;++i) // for loop
{
cout<<"EXAM"<<endl; // display the word EXAM
}
Explanation:
In this question we using for loop which is iterating 99 times and print the
word "EXAM " 99 times.
The variable i is initialized by 1 and check the condition if the condition in loop is true it will execute the loop and print "EXAM" .The loop will executed 99 times when the condition in loop is false then loop become terminated.
Following are the program in c++
#include<iostream>// header file
using namespace std;
int main() // main method
{
for(int i=1;i<=99;++i) // for loop
{
cout<<"EXAM"<<endl; // display the word EXAM
}
return 0;
}
Answer:
Main Memory (RAM)
Explanation:
This is the memory which is directly accessible to the CPU. It can be called Main Memory, Prime Memory or simply 'Memory'