Answer:
The correct answer is A.
Explanation:
Remember that the rule of thirds involves mentally dividing the image into 3 equal parts; This is done to focus the points of interest of the image.
The rule of thirds helps you identify the points of greatest interest in the image or center of attention (also called framing).
I took into account that in the rule of thirds three elements:
• Point of attention (the protagonist of the photo).
• Focus
• Balance.
Answer:
using System.IO;
using System;
class FineForOverdueBooks
{
static void Main()
{
Console.WriteLine("Enter the number of books user checked out: ");
int books = Convert. ToInt32(Console.ReadLine());
Console.WriteLine("Enter the number of overdue days: ");
int days = Convert. ToInt32(Console.ReadLine());
DisplayFine(books, days);
}
public static void DisplayFine(int books, int days) {
double amt = 0;
int d = days;
if(days>7) {
amt = (days-7) * .20 * books;
days = 7;
}
if(days > 0) {
amt = amt + days * .10 * books;
}
Console.WriteLine("The fine for {0} book(s) for {1} day(s) is {2}", books, d, amt);
}
}
Explanation:
What game ? I’m not sure what ur trying to ask
Answer:
A fossil is any preserved remains, impression, or trace of any once-living thing from a past geological age. Examples include bones, shells, exoskeletons, stone imprints of animals or microbes, objects preserved in amber, hair, petrified wood, oil, coal, and DNA remnants
Explanation:
thanks
I haven’t read it, but just by the title it was probably talking about an incredible machine that was new to people.