answersLogoWhite

0

The definition of a battletank, is gun and armor. Remove the gun, and you have an armored personnel carrier. Remove the armor, and you have a self propelled gun (Artillery). Combine them both=battletank. it is made from metal. The same holds true for the battleship; from which the tank was derived; (The tank was designed by naval architects in 1915, utilized naval terms: hull, bow machinegun, turret, back deck, hatches, etc. and were called LANDSHIPS). The definition of a battleship is gun and armor. Remove the gun(s), and you have an armored ship. Leave the gun(s), but remove the armor, and you have a heavy cruiser. Combine them both=battleship. The first cannons (guns) to be installed in the first battle tanks were Naval guns, as they were capable of being loaded/fired within a confined area, such as a turret. Army guns have traditionally been mounted upon wheels, and were always operated/fired in the open field; hence the name, Field Guns.

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Engineering

What things were invented in 1910?

Army Tanks


What are the main differences between cone roof tank and dome roof tanks in petroleum refinries?

floating roof tanks is designed for very volatile products and flammable.but cone foof tanks is designed for comustible products which is have less tendency to evaporation floating roof tanks is designed for very volatile products and flammable.but cone foof tanks is designed for comustible products which is have less tendency to evaporation floating roof tanks is designed for very volatile products and flammable.but cone foof tanks is designed for comustible products which is have less tendency to evaporation


Why tanker in trucks are in oval shape?

oval tanks for liquid provide better stability in motion than any other tanks.


Can you use Fibreglass water tanks for diesel storage?

Fibreglass water tanks are generally not recommended for diesel storage due to potential chemical compatibility issues. Diesel can degrade the resin used in fibreglass tanks, leading to leaks or contamination. For diesel storage, it's better to use tanks specifically designed for fuel, such as those made of steel or high-density polyethylene (HDPE), which are built to withstand the properties of diesel and prevent leaks. Always check local regulations and guidelines for fuel storage to ensure compliance.


Write a c program to remove a specified node from a given doubly linked list and insert it at the end of the list?

#include<stdio.h> #include<stdlib.h> #define NULL 0 struct info { int info; struct info *next; struct info *prev; }; struct info *start,*end; void main() { struct info *ptr; if(start==NULL) { printf("linklist is empty"); } else { ptr=(struct info *)malloc(sizeof(struct info)); ptr=start; if(start==end) { start=NULL; end=NULL; } else { start=start->next; start->prev=NULL; } free(ptr); } }