answersLogoWhite

0


Best Answer

the storage class is define as 10th class and 9th class

and the examples are 10b and 9a

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is storage class Define storage class with the help of example?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is Normalization Explain the condition under which a relation needs to be normalized to 3 NF fro3 2 NF with the help of an example?

Define normalization explain the conditions under which a relation need to be normalized to 2nf and 3nf with the help of an example ?


Where is the load located in a class two lever?

Load is in the center, as in a wheel barrow or a bottle opener. Having an acronym might help remember which class is which. For example: 3-2-1 - ELF! means that for a class 3, the effort is in the middle; class 2, load in the middle; and class 1, fulcrum in the middle.


What is failure mode and effects analysis?

The FMEA is a risk assessment tool that helps systematically define where potential points of failure are located, help define the critical nature of the problems and logically layout the plans to resolve them.


What is pseudo code for GCD of two numbers?

public class GCD { public static void main(String[] args) { //Example how to use this method System.out.println(GCD(15,50)); } //find the greatest common divisor of two numbers public static int GCD(int a, int b){ if (b == 0) return a; return GCD(b, a % b); } } Hope this help to solve you problem.


What is java math class?

the Math class contains a number of mathematical functions that we may commonly need to use in our programs. Instead of coding it ourselves, the founders of java have created a class that would help us with the same. For example: Math.round() is used to round off a decimal value to its nearest whole number Math.cos() will return the mathematical cosine of the value Math.log() will return the logarithmic value of the number etc...