answersLogoWhite

0


Best Answer

Call your city hall or fire department and they will know what the protection class is for your city. If you are within 1000 feet of a fire hydrant and within 5 miles of the fire department you get the city class. If you are over 1000 feet from a hydrant but withing 5 miles of a fire department you are class 9. If you are over 5 miles from a fire department then you are a class 10.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the fire protection class code for Alma Georgia?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Algebra

What is hierarchy in java?

The top level class in Java is class Object. Every other class inherits from Object and therefore Object is the top most in the class hierarchy. If you extend a class from Object such as class Animal and further extend Animal with class Dog then the hierarchy is as follows: Object | Animal | Dog Code for this hierachy is as follows: class Animal { } class Dog extends Animal { } We don't need to write class Animal extends Object because every class extends from Object so it does not need to be stated.


Java code that display even numbers from 0 to 10?

import java.util.*; class even{ public static void main(String[]args){ Scanner cons = new Scanner(System.in); int even; even = cons.nextInt(); if(even % 2 == 0) { System.out.println(even); } } }


An is an identification code that consists of a set of vertical lines and spaces of different widths?

A Bar code


What is the difference between assemblers interpreters and compilers?

Assemblers convert Assembly code to machine code Interpreters convert high level code to real-time machine code and store it in the memory for direct execution Compilers convert high level code to real-time machine code or some intermediate code and store it in a file for later execution Assemblers use the basic building blocks of the command processor code to write programs and is the language closest to the binary on which all computers operate, although it is difficult to use it does work well for things like networking and communication protocols. Interpreters are just what they say, they translate the code in real time as you operate the program, then process it, and are therefore the slowest. Compilers translate the code into a format the computer understands prior to the execution (or distribution) of the code and is therefore the easiest to use as it combines the better attributes of both programming methods into one easy to use package.


Which one is faster servlet OR jsp?

Servlet is more faster than JSP, but JSP is more convenient than Servlet and JSP is clearly superior, shorter, simple and easier to use. JSP can be perceived as Java in HTML code. JSP require no explicit compilation as like servlets and can keep in the web application server as HTML file. The web application server in turn compile the java code in JSP and load it in its library for future execution. Servlet can be perceived as HTML in Java code. The servlet is the class file, which would be loaded in the web application server as a program. The program output will be directed to the outstream object which in turn direct to the client as HTML elements.