Answer:
c. Bundling.
Explanation:
Haya wants to sell ties for the college students and she set up a tie store on her campus and offer solid color tie and sports theme ties also.
For creating an interest in college students in the first month of operation she should consider bundling.
Bundling means selling different items together as a package.
DOC
DOCX
HTML
O PDF
Answer:
Explanation:
PDFs are not an easily modifiable format unless converted into a different type. It preserves all formatting, and no formatting details are lost depending on what program a user decides to open the file with.
Send the document to the client as a
format! Not only is it secure, but it also prevents the material from being changed by the receipiants
Contact ISP, inform provider of issue, ask provider to check server.
Verify server has valid IP address on Lan subnet
Escalate problem to server admin to check issues with server.
Check workstations on Lan for APIPA configuration.
Answer:
The answer is D Check workstations on Lan for APIPA configuration.
Explanation:
1)
While investing an email issue, a support technician discovers no user can access their email accounts on the company’s email server connected to the private LAN.
Pinging the email server form several workstations on the LAN results in 0% packet loss.
Check workstations on Lan for APIPA configuration next step the technician should take in troubleshooting the issue.
Answer:
Check workstations on Lan for APIPA configuration.
Explanation:
IP address is a logical address used in a network to initiate communication between devices. It is assigned to all the end devices like the client computers, servers, printers, scanners etc.
IP addresses can be assigned statically or dynamically. Static IP address configuration requires that a hardcoded address is configured to a computer permanently. The address must be in the same subnet or network. Dynamic IP addressing configures a DHCP server or router to lease IP addresses dynamically to computers. When the computer is unable to reach the server, the APIPA is automatically configured to system which responds to ping but does not receive or send packets to servers.
B. Safe search
C. Simple search
D. News search
*
* *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * * * *
* * * * * * * * *
Hint: You will need to create a variable that controls how far the * is from edge of the console. That variable should change size each iteration through the outer loop!
public class JavaApplication82 {
public static void main(String[] args) {
for (int i = 1; i <= 9; i++){
for (int w = 0; w < i; w++){
System.out.print("*");
}
System.out.println("");
}
}
}
This works for me.