Answer:
A primary key is utilized to guarantee the information in the particular segment is interesting. A foreign key is a section or gathering of segments in a social data set table that gives a connection between information in two tables. It particularly recognizes a record in the social information base table.
Hiya!
<u>Answer:</u>
Of the options given, your answer is A.) As long as you use it responsibly, it will enhance your slides and engage your audience.
<u>Why is this correct?</u>
While Aubrey may not enjoy using media, a visual aid is sometimes needed outside of text. Even if it's sometimes a graphic or a chart, it does wonders to help it make sense; especially with a mixed bag of people and I'd suggest you google it yourself as well. This means B is out. Sayonara!
Secondly, there MUST be a balance between media and text. Too many images will, as Aubrey believes, have an adverse effect on the presentation. So much as a caption on your photos is good. C is tonight's big loser.
Finally, there is the split between A and D. What do we do now? Both make some lick of sense, right? Think again. Media may help entertain your audience, but that's not the point of presentations most of the time; It's to present information in both a graphical/verbal format without using a video. In fact, I'd say it's harder for a presenter to describe a photo on his own, meaning it will NOT take pressure off the presenter.
I hope my answer helped!
Answer:
import java.util.Scanner;
public class TestClock {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int sum = 0;
char op;
do{
System.out.println("Enter two numbers");
int num1= in.nextInt();
int num2 = in.nextInt();
sum = sum+num1+num2;
System.out.println("Do you wish to perform another operation, Y/N");
op =in.next().charAt(0);
}while(op =='Y'||op=='y');
System.out.println("sum "+sum);
}
}
Explanation:
The code is implemented in Java progrmming language
- create an integer variable sum
- create a character variable op
- create a do while loop to request user to enter num1 and num2
- Request the user to also enter a char Y/N (yes or no repectively)
- While the char is Y keep adding up the sum and prompt the user to enter two new numbers
- Else break out of the loop and print the sum
Answer:
Yes
Explanation:
Because all answers are intotal (2)