D) Web content developer
Explanation:
A content developer writes a well-researched content for websites, publications, and television. They also write sales copy and other marketing material for online and offline marketing. They develop text, graphics, audios, and videos.
Skills that help web content developer:
- Reading news every day
- Write regularly
- Study end audience
- Develop original and unique content
- Research; reading other people's content as well
- Provide solutions through your content
Besides these, a web content writer must possess technical skills like front-end web development. They must know basic HTML formatting and search engine optimization.
Answer:
The value of myArray2[index2] when index1 = 12 is 30
Explanation:
In the source code, the formula for myArray2[index2] is;
myArray2[index2] = index2 + index3 + myArray1[index1],
myArray1[index1] = index1 * 2,
index2 = index % 10 (equal to the remainder) and
index3 = index % 8
When index1 increases to 12 in the for-loop statement, the "myArray1[index1]" is equal to 24, index2 is equal to 2 and index3 is 4. The total sum is equal to 30 and assigned to "myArray2[index2]".
that is incorrect! Playstation is the correct answer
Answer:
create trigger F1_Del
after delete on Friend
for each row
when exists (select * from Friend
where ID1 = Old.ID2 and ID2 = Old.ID1)
begin
delete from Friend
where (ID1 = Old.ID2 and ID2 = Old.ID1);
end
create trigger F1_Insert
after insert on Friend
for each row
when not exists (select * from Friend
where ID1 = New.ID2 and ID2 = New.ID1)
begin
insert into Friend values (New.ID2, New.ID1);
end
Answer:
import java.util.Scanner;
public class num9 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter three numbers between 0 and 100");
double num1 = in.nextDouble();
double num2 = in.nextDouble();
double num3 = in.nextDouble();
double min = 0;
double sMin = 0;
double tMin = 0;
if(num1<num2 && num1<num3){
min = num1;
sMin = num2;
tMin = num3;
}
else if(num2<num1 && num2<num3){
min = num2;
sMin = num1;
tMin = num3;
}
else if(num3<num2 && num3<num1){
min = num3;
sMin = num1;
tMin = num2;
}
double average = (sMin+tMin)/2;
System.out.printf("The average of the two highest scores is:%.1f \n",average);
}
}
Explanation:
- Using Java programming language. The Scanner class is used to receive the three numbers. The user is prompted to enter a valid number between 0 and 100.
- Using three IF statements the minimum (min), second largerst (sMin) and the largest (tMin) of the three numbers is determined.
- the average of the sMin and tMin is calculated and printed to the console with the printf method to one decimal place.