<span>There is a total of 32 bits in </span>IPv4 address space. In this case we have /24, which means <span>that 24 bits are contained in the network. So, the </span><span>
subnetwork is 192.168.1.64
subnet mask 255.255.255.192</span>
Answer:
I think it’s slide shorter view
Explanation:
Answer:
The correct answer to the following question will be CAD.
Explanation:
CAD - It stands for Computer-aided Design. CAD is a software used for creating some 3D designs, creative drawing or some technical illustrations and is basically used by the engineers and artists.
Many projects based on electronic can be designed with the help of this software, electronic parts like circuit boards, etc.
Various types of CAD are as follows :
- 2D (Two dimensional)
- 3D (Three dimensional)
- 3D wire frame
- Solid modeling
This enables efficiency in design's quality, also increase in engineer and artist's productivity. So, many of the computer programs should recommend the Computer-aided design software to there project partners for some 3D and effective look on their project.
Answer:
for(String s:words)
if(s.endsWith("ing"))
System.out.println(s);
Explanation:
Create an enhanced for loop that iterates through the words array
Check if an element in words ends with "ing" using endsWith() method (Since it is said that strings are lowercase letters, we do not need to check it)
If you find one that ends with "ing", print the element