Answer:
public class Pyramid {
public static void main(String[] args) {
int h = 7;
System.out.println("Pattern A");
for(int i = 1; i <= h; ++i)
{
for(int j = 1; j <= i; ++j) {
System.out.print("+");
}
System.out.println();
}
System.out.println();
System.out.println("Pattern B");
for (int i = 1; i<=h; ++i)
{
for(int j = h; j >=i; --j){
System.out.print("+");
}
System.out.println();
}
}
}
Explanation:
- The trick in this code is using a nested for loop
- The outer for loop runs from i = 0 to the heigth of the triangle (in this case 7)
- The inner for loop which prints the (+) sign runs from j = 0 to j<=i
- It prints the + using the print() function and not println()
- In the pattern B the loop is reversed to start from i = height
Answer:
False
Explanation:
Byte(B) is uppercase
bit(b) is lowercase
Good way to remember is that its takes 8 bits makes a byte. In other word, a byte is bigger than a bit so it makes sense that byte is uppercase.
Answer:
Explanation:
Production function: In simple words, production function refers to the functional relationship between the quantity of a good produced (output) and factors of production (inputs).
Production function: In simple words, production function refers to the functional relationship between the quantity of a good produced (output) and factors of production (inputs).
FDI: A foreign direct investment is an investment in the form of a controlling ownership in a business in one country by an entity based in another country.
- Singapore has encouraged foreign firms to establish subsidiaries within its borders, especially in the electronics industry.
- Singapore has the fourth-largest amount of FDI in the world.
- What has happened to the rental rate and the wage?
- Find in the attachment a table which shows much of this.
- The annual growth rate in rental rates for the 1970-1990 period using the production function and marginal product was -5%.
The answer that fills in the blank is orientation. It is because orientation does not provide all the details of what they are doing but a guideline of what they must do, in order for them to be guided on the things that they need to learn as they start. They require proper guidance which is the orientation before performing before hand. Especially when they are not familiar on what they need to do.
For me the some steps I use not 10 steps sorry are I always go through the slide and think what I am talking about. You have to understand what you are talking about and be clear and persuasive. Never look at the presentation. Memorize key phrases and keep your eyes at your audience. make each of your slides colorful so viewers will look at your actually slide.