Answer:
See there are multiple ways to get a perfect shot of products to stand out but the most affective according to me are explained below :-
- Macro shooting - These are close shots u can say really close just to show the product more attractive and u can see these types of shots in every advertisement.
- Background shooting/shots - Opposite of macro shots.
- 3d shots - These are 360° shots.
Tip :- Use wide aperture like F2 and right aperture for right shots.
Hope it helps!
Answer:
binary computer natural language
Answer:
light year
Explanation:
Its is equal to 9,500,000,000,000km
Answer:
Data redundancy.
Explanation:
A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to create, store, modify, retrieve and manage data or informations in a database. Generally, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.
A data dictionary can be defined as a centralized collection of information on a specific data such as attributes, names, fields and definitions that are being used in a computer database system.
In a data dictionary, data elements are combined into records, which are meaningful combinations of data elements that are included in data flows or retained in data stores.
Data redundancy is the name of situation where the same data is stored unnecessarily at different places.
Simply stated, data redundancy can be defined as a condition which typically involves storing the same data in multiple storage locations. Thus, data redundancy connotes the unnecessary repetition of the same piece of data (informations) either deliberately or for some specific reasons.
Answer:
public class Circle {
private double radius;
public Circle(double r)
{
radius = r;
}
public double getArea()
{
return Math.PI * radius * radius;
}
public double getRadius()
{
return radius;
}
public String toString()
{
String str;
str = "Radius: " + radius +
"Area: " + getArea();
return str;
}
public boolean equals(Circle c)
{
boolean status;
if(c.getRadius() == radius)
status = true;
else
status = false;
return status;
}
public boolean greaterThan(Circle c)
{
boolean status;
if(c.getArea() > getArea())
status = true;
else
status = false;
return status;
}
}
Explanation:
There is nothing with the logic of your code it work fine the problem is with the structure of your code you added an extra curly brace before declaring (r)
****************************** Am talking about this section **********************
public class Circle {
{
private double radius;
**************************** It should be *******************************************
public class Circle {
private double radius;