answersLogoWhite

0

The Non-compounded increments belong to category where they are personal to the incumbents for having acquired PhD and / or MPhil degree (research degrees) whilst in service. They shall be calculated on the stage of the basic pay of incumbent at the time of acquiring such degree+AGP. then onwards the total sum arrived shall remain constant throught wityhout any change even after annual increment is added and / or placed in higher AGP whether PB 3 or 4 or even 10000 AGP. Such amount of increments will remain attached with the basic pay and AGP throught the entire career of the incumbent. This avoids the unpalatable cases of Junior drawing more pay than the senior subsequently and thus stepping up need.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Chemistry

What is the increment of change in a series of straight chain alkanes?

Each straight chain alkane in a series differs by a CH2 group, also known as a methylene unit. This results in an increment of 14 mass units for each successive alkane in the series.


What are the 3 steps for determining the scale on a graduated cylinder?

Start by looking at the graduated markings on the cylinder, which are typically evenly spaced. Identify the smallest division or increment between two markings. Count how many of these increments fit between the starting point (usually the bottom) and the liquid level, and multiply by the value of each increment to determine the volume.


How much of an increase or decrease in terms of H concentration does each increment of the pH scale represent?

Each increment on the pH scale represents a tenfold change in hydrogen ion concentration. For example, a pH of 4 has ten times more hydrogen ions than a pH of 5, and a pH of 3 has 100 times more hydrogen ions than a pH of 5.


What 50-mL graduated cylinder is marked into 1-mL segments?

A 50-mL graduated cylinder marked into 1-mL segments would have markings at every 1 mL increment from 0 to 50 mL. This means it would have a total of 50 markings on the cylinder at every 1-mL interval.


Which is most polar HBr HCl HI?

HI is the most polar among HBr, HCl, and HI because iodine (I) is larger and more electronegative than bromine (Br) and chlorine (Cl), leading to a greater electronegativity difference between hydrogen and iodine in HI.

Related Questions

What is compoundable offences?

Multiple conpelling evidence by the plaintiff


Can you increment the value of a variable by 2 using any increment operator?

There is no such increment operator in C language to increment the value of a variable by 2.An increment operator only increments the value by 1. however you can apply the increment operator twice to get an increment of 3. No: you cannot: ++(++a) won't compile. Yes. Example: a += 2; but += is not an increment operator, it's a shorthand of a=a+2; just like a++ is a shorthand for a= a+1


What is the percentage of increment an employee can expected?

None. They can earn an increment but may not expect anything!None. They can earn an increment but may not expect anything!None. They can earn an increment but may not expect anything!None. They can earn an increment but may not expect anything!


What is a small increment of time?

the smallest increment of time is... miliseconds.


Why are increment and decrement used in c?

To increment or decrement a value


Is x plus equals y is post increment or pre increment?

The '+=' operator behaves like a pre increment operator.


What is the percentage of increment for CBSE teacehrs?

percentage of increment of cbse board


Can you give an example of a sentence using the increment?

"The increment" means the distance between two things. If you measure the increment between those numbers, you can find the difference.


How do you increment strings in c?

Not possible. If you think otherwise, then please increment manually this string: "/"


Which loop statement does not contain an increment statement but automatically increment the counter at the end of each iteration?

For


How can you differentiate overloading of pre-fix and post-fix increment operator?

The prefix increment operator is overloaded as operator++() while the postfix increment operator is overloaded as operator++(int).


How different is pre and post increment in c plus plus from pre and post increment in C programming?

The pre and post increment (and decrement) operator is the same in C++ as it is in C.