Answer: E
All decision variables must be integer
Explanation:
The integer-linear program is a program in which the objective function and any constraints are all linear ie all of the variables are restricted to be integers.
A linear program is Np complete. Also every decision variable appear in any constraints must also appear in the objective function, possibly with zero coefficient if needed.
Answer:
What is the features of fifth generation computer?
Fifth Generation Computers
In the fifth generation, VLSI technology became ULSI (Ultra Large Scale Integration) technology, resulting in the production of microprocessor chips having ten million electronic components. This generation is based on parallel processing hardware and AI (Artificial Intelligence) software.
1 is A
2 is probably C or B but I don't use Unity so I can't help much with that one.
Answer:
#include<stdio.h>
#include <iostream>
using namespace std;
int main(){
int number, min, max;
cout << "Enter the minimum range: ";
cin >> min;
cout << "Enter the maximum range: ";
cin >> max;
cout << "Odd numbers in given range are: ";
for(number = min; number <= max; number++)
if(number % 2 !=0)
cout << number<< " ";
cout<< "Even numbers in given range are: ";
for(number = min; number <= max; number++)
if(number % 2 ==0)
cout << number << " ";
return 0;
}
Explanation:
First of all, we take declare two variables. one as the lowest number of the range and the other as the upper limit of the range (in this case: <em>min</em> and <em>max</em>). We declare another variable (<em>number</em>) and store in it the lowest number of the range (<em>min</em>). To check whether the number currently stored as the value of the variable (<em>number</em>) is even, we take in account the remainder of that number divided by 2. If the remainder does not equals 0, we print that number as odd. We again check the remainder by dividing the number by 2. If the remainder does equals 0, we print that number as even.
Answer:
<em>Answer : D</em>
Explanation:
When we check Branch3 router according to the attached diagram we notice that “network 192.168.10.0” command is missing under “router eigrp 100” .
Branch 3# Show running-config according to the attached diagram
<output ommited>
!
router eigrp 100
network 192.168.16.0