Answer:
Download as Images
Explanation:
Copy is unspecified
Images is a synonym of pictures
PDF is a file type
ODP is a presentation file
Answer:
The technician has made a cross-over cable.
Explanation:
The network is a platform that provides two or more computers to communicate. There different types of networks, namely, local-area network (LAN), wide-area network (WAN), MAN or metropolitan-area network etc.
Devices in a network can be connected with cables (ethernet IEEE 802.3) or wirelessly (wifi IEEE 802.11a/n/g). Wiring standards are strictly followed in ethernet configuration.
Two ethernet wiring standards are T568A and T568B. The difference in both standards are the pin configuration and their position in a wire defines a cable system.
When a T568A or T568B are used on both ends of a twisted pair cable, it is called a straight-through cable. When T568A is used on one end and T568B on the other, it is called a cross-over cable.
These cable systems are used for different applications. the straight-through cable is used for connecting devices that are not the same like router to switch, switch to computer etc. The cross-over cable connects similar network devices like router to router, switch to switch etc.
Answer:
The program to this question can be given as follows:
Program:
#defining variable quarters, dimes, and nickels.
quarters=int(input("Enter value of quarters: ")) #input value by user dimes=int(input("Enter value of dimes: ")) #input value by user nickels=int(input("Enter value of nickels: ")) #input value by user
#defining variable pennies
pennies = ((25*quarters)+(10*dimes)+(5*nickels))
#calculate value in pennies variable
print('Total number of coins in pennies is: ',pennies)#print value
Output:
Enter value of quarters: 3
Enter value of dimes: 2
Enter value of nickels: 1
Total number of coins in pennies is: 100
Explanation:
In the above python program code, firstly three variable "quarters, dimes, and nickels", all of these variable uses input function, that is used to take input value from the user side, in these variable, an int is used that defined, that user input only integer value.
- After taking input from the user a new variable "pennies" is defined, which is uses the user input values and calculates its addition.
- In the next line, print function is used, which uses variable "pennies" to print its calculated value.
You can return it for a refund, however with that money you will need to pay the difference, as they are different models and the 64gb will cost more.
Answer:
Maintenance Phase
Explanation:
One of the concepts employed in project management for describing stages involved when carrying out an information system development project is the systems development life cycle (SLDC). The cycle which starts from carrying out a feasibility study and ends in maintenance is a highly used conceptual model. There are 5 major stages or phase and they are the; Requirement Phase, Design Phase; Implementation Phase, Test Phase, and the Maintenance phase. The maintenance phase comes when testing has been complete and all enhancement and modifications have already been developed, and the system is operating.