Answer:
Lines; geometric.
Explanation:
Graphic design can be defined as an artistic process used for the creation of art works such as logos.
In the creation of various graphic files such as in 2-D or 3-D we can use a variety of software applications or programs such as Blender basics, Adobe photoshop, illustrator, Coreldraw, etc.
Graphic design involves the use of vector graphics, bitmap graphics or raster graphics.
Vector graphics are composed of solid lines, curves and other geometric shapes that are typically defined by series of mathematical instructions. Thus, vector graphics can be scaled to a smaller or larger size without any change in its quality.
Answer:
import java.util.ArrayList;
import java.util.List;
public class Vowels {
public static void main(String[] args) {
String word = "I am David from Nigeria";
System.out.println(which_vowels_present(word));
}
public static List which_vowels_present(String enteredWord){
List<Character>list = new ArrayList<>();
String word = enteredWord.toLowerCase();
for (int i =0; i<word.length(); i++){
if (word.charAt(i) == 'a' || word.charAt(i) == 'e' || word.charAt(i) == 'i'
|| word.charAt(i) == 'o' || word.charAt(i) == 'u') {
list.add(word.charAt(i));
}
}
return list;
}
}
Explanation:
- Using Java programming Language
- Import java.util.ArrayList; and java.util.List
- Create the method which_vowels_present which accepts a string parameter
- Within the method create a list object
- Use a for loop to iterate the string. within the for loop use an if statement to check individual characters of the string if any is a vowel, add it to the list
- return the list
- In the main method, create a test string, call the method and pass the string as parameter
Answer:
B seems like the best answer to me.
Explanation:
Answer:
Following are the declaration and the initialization of variable
int monthOfYear=11; // variable declaration of integer
long companyRevenue=5666777; //
variable declaration of long
int firstClassTicketPrice=6000; //
variable declaration of int
long totalPopulation=1222333; //
variable declaration of long
Explanation:
Following are the description of Statement
- Declare a variable " monthOfYear " as integer type and initialized 11 to them .
- Declare a variable " companyRevenue " as long type and initialized 5666777 to them .
- Declare a variable " firstClassTicketPrice" as integer type and initialized 6000 to them
- Declare a variable " totalPopulation " as Long type and initialized 1222333 to them .
Answer:controlling a situation by making things happen or by preparing for possible future problems
Explanation: