answersLogoWhite

0


Best Answer

You haven't understood how 'n' is used in indexes. It is used in between two numbers. If you are looking for references to xxxxxxx you might see this xxxxxxx 231 n.402 This can be translated as follows "xxxxxxx is on Page number 231 in the footnote number 402". In other words it is telling you "the reference to xxxxxxx can be found if you go to page 231 and then look at the bottom of that page for the footnote numbered 402, you will find the reference to xxxxxxx there".

User Avatar

carl_h

Lvl 2
4y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

Nunya Biness

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does n after a page number in an index mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the Program to find the largest element in an array and position occurrence?

#include<stdio.h> #include<conio.h> main() { int a[100]; int n,largest,index,position; printf("enter the number of elements in the array"); scanf("%d",&n); printf("enter %d elements",n); for(index=0;index<n;index++) scanf("%d",&a[index]); largest=a[0]; position=0; for(index=1;index<n;index++) if(a[index]>largest) { largest=a[index]; position=index; } printf("largest element in the array is %d\n",largest); printf("largets element's position in the array is %d\n",position+1); getch(); }


Why a number when it is to the power of zero is equal to one?

Let any number be n:- n3/n3 = n*n*n/n*n*n = 1 And in index form: n3/n3 = n3-3 = n0 = 1


What is a index in algebra?

An index in Algebra is the integer n in a radical defining the n-th root


Full defecation of array?

Full representation of an array begins from the index 0 and ends at n-1 where n is the number of variables of the array.


What does it mean if 10 decrease by triple a number?

It is 10 - 3*n where n is the number.


What does this mean n squared by 3?

n^3 mean a number Squared by 3


What is the index of a square root?

The index is 2. If we have the nth root of a number, the index is n. The index means how many times do we multiply the number by itself. So for square roots, we do it twice. For example, square root of 9 is 3 because 3x3 is 9 and index is 2. Cube root of 8 is 2 since 2x2x2=8 so the index is 3 since we multiplied 2 by itself 3 times


What is the significance of normalized frequency in optical fiber?

If V is less than 2.405 then the fiber is mono mode but if V is greater than 2.405 then fiber is multimode. V number is also related with the number of modes is the fiber as: N = V2/ 2 for step index fiber and Number of modes for graded index fiber is N = V2/ 4.


What does the letter n mean in algebra?

"n" stands for an unknown number.


What does fractional index mean?

A power with a rational exponent m/n in lowest terms satisfies : whenever this makes sense.


What is the difference between step index and graded index optical fiber?

1. Step index fiber is of two types viz; mono mode fiber and multi mode fiber. Graded index fiber is of only of one type that is multi mode fiber. 2. The refractive index of the core of the step index fiber is constant through out the core. The refractive index of the core of the graded index fiber is maximum at the center of the core and then it decreases towards core-cladding interface. 3. Number of modes for step index fiber N = V2/2, where V is cut off frequency or normalized frequency or V- number Number of modes for graded index fiber is N = V2/ 4. 4. V number can be less that 2.405 or more that 2.405 for step index fiber V number is always more than 2.405 for graded index fiber. 5. Step Index Fiber is a fiber in which the core is of a uniform refractive index and there is a sharp decrease in the index of refraction at the cladding. Graded Index Fiber is a type of fiber where the refractive index of the core is lower toward the outside of the fiber. It bends the rays inward and also allows them to travel faster in the lower index of refraction region. This type of fiber provides high bandwidth capabilities.


What is the value of count after execution of the for-loop?

The value of count should be more than max range of the for-loop. e.g. for (index=0;index<n;index++) ....In this case the count (i.e. index) would be more than "n" which is max-range.