Answer:
The word used to begin a conditional statement is if.
Explanation:
In the syntaxes of most (if not all) programming languages, the word if is used to begin any conditional statement.
Take for instance:
Python:
if a == b:
print("Equal")
C++:
if(a == b)
cout<<"Equal";
Java:
if(a==b)
System.out.print("Equal")
The above code segments in Python, C++ and Java represents how conditional statements are used, and they all have a similarity, which is the "if" word
B. Start menu
C. System tray
D. Desktop Arie is moving icons around and deleting shortcuts. He is working on the _____.
A. All programs submenu
B. Start menu
C. System tray
D. Desktop
Answer:
D. Desktop
Explanation:
If he's moving icons around and deleting shortcuts, he has to do that at the desktop.
B. -2
C. "Open"
D. +2
Answer:
D. +2
Explanation:
The given function is an IF function where the first argument is a logical test, the second argument is the result if the logical test is true and the third argument is the result if the logical test is false. Depending on whether the result of the logical test is true or false, the respective value will be returned.
IF(logical_test, value_if_true, value_if_false)
In this case, the logical test first compares the value of B3 and D5. As B3 is not greater than D5, the result is false and the value for false will be returned. The value for false result of the logical test is equated by D5-B3 which is equal to 2. Thus the result of the IF function is +2.
Answer:
The formula is =OFFSET( A1, 7,3,1,1 )
Explanation:
Microsoft excel is a statistical and analytical tool for data management and analysis. Its working environment is called a worksheet. The worksheets are made up of rows and columns also known as records and fields respectively.
Functions like OFFSET in excel is used to return a cell or group of cells. It gets the position to turn by start getting a starting port, then the number of records below it and the fields after, then the length and width of cells to return.
syntax: =OFFSET( "starting cell", "number of rows below", "number of columns after", "height of cells to return", "width of cells to return" )
Answer:
function Enlistee( name, number ){
constructor( ){
super( ) ;
this.name= name;
this.number= number;
this.Private= ( platoonNumber, yearOfService ) =>{
this.platoonNumber = platoonNumber;
this.yearOfService = yearOfService;
}
}
}
Explanation:
In Javascript, OOP ( object-oriented programming) just like in other object oriented programming languages, is used to create instance of a class object, which is a blueprint for a data structure.
Above is a class object called Enlistee and subclass "Private" with holds data of comrades enlisting in the military.
operator
b.
mathematical expression
c.
variable
d.
Boolean expression
Answer:
Boolean expression
Explanation:
The operator '&&' is called AND operator. it provide the output base on the Boolean value on each side of AND operator.
it has four possible values:
First Boolean is TRUE and Boolean is TRUE, then result will be TRUE.
First Boolean is TRUE and Boolean is FALSE, then result will be FALSE.
First Boolean is FALSE and Boolean is TRUE, then result will be FALSE.
First Boolean is FALSE and Boolean is FALSE, then result will be FALSE.
Therefore, the correct option is Boolean expression.