It is probably a hyperlink, but it could be an action.
Answer:
Check the explanation
Explanation:
relatives.pl
/* Facts */
male(ace).
male(john).
male(jack).
male(bill).
male(david).
male(brown).
male(daniel).
female(cecil).
female(aba).
female(cathy).
parent(john,ace)
parent(tom,john)
parent(jack,john)
parent(bill,aba)
parent(brown,aba)
parent(cecil,bill)
parent(david,cecil)
parent(cathy,brown)
parent(daniel,cathy)
parent(ellen,daniel)
/* parent(X,Y) -> Y is parent of X */
wife(ceceil,jack) /* wife(X,Y) -> Y is wife of X */
Answer of 2-2
Considering all facts and rules answer will be daniel,ellen.
Answer 2-3
Considering all facts and rules answer will be bill.
Answer 2-4
Considering all facts and rules X will be john and y will be cecil.
Answer 2-5
Considering all facts and rules X will be tom and y will be david.
Answer:
D. Subscriber
Explanation:
Digital Subscriber Line is a family of point-to-point technologies designed to provide high-speed data transmission over traditional telephone lines.
The high speed data transmission property helps to transmit data in a fast and timely manner between two or more points or people during calls, texts and other activities.
Cropping an image is resizing it to different ratios to suit your needs.
Answer:
Check the explanation
Explanation:
#include <stdio.h>
int dice1;
int dice2;
int sum;
int roll_die_twice(int dice1,int dice2){
if(sum==7){
printf("winner");
}
else if (sum==11){
printf("looser");
}
else if (sum!=7 && sum!=11)
{
printf("nor winner or looser");
}
}
int main()
{
roll_die_twice(2,7);
return 0;
}
The code screenshot and code output can be seen in the attached image below.