Khác biệt giữa bản sửa đổi của “Cố Viêm Võ”

Bách khoa toàn thư mở Wikipedia
Nội dung được xóa Nội dung được thêm vào
Không có tóm lược sửa đổi
Dòng 1: Dòng 1:
UNEMPLOYMENT BENEFITS ELIGIBILITY REQUIREMENTS FOR STATE AGENCY EMPLOYEES SEPARATED UNDER THE WORKFORCE TRANSITION ACT
=Mastering Binary Math=
Cisco certification candidates, from the CCNA to the CCIE, must master binary math. This includes basic conversions, such as binary-to-decimal and decimal-to-binary, as well as more advanced scenarios involving subnetting and VLSM.<p>
There’s another conversion that might rear its ugly head on your Cisco exam, though, and that involves hexadecimal numbering.<p>
Newcomers to hexadecimal numbering are often confused as to how a letter of the alphabet can possibly represent a number. Worse, they may be intimidated – after all, there must be some incredibly complicated formula involved with representing the decimal 11 with the letter “b”, right?<p>
Wrong. <p>
The numbering system we use every day, decimal, concerns itself with units of ten. Although we rarely stop to think of it this way, if you read a decimal number from right to left, the number indicates how many units of one, ten, and one hundred we have. That is, the number “15” is five units of one and one unit of ten. The number “289” is nine units of one, eight units of ten, and two units of one hundred. Simple enough!<p>
{| border="1"
| || Units Of 100 || Units Of 10 || Units Of 1
|- || || ||
| The decimal “15” || 0 || 1 || 5
|- || || ||
| The decimal “289” || 2 || 8 || 9
|}
Hex numbers are read much the same way, except the units here are units of 16. The number “15” in hex is read as having five units of one and one unit of sixteen. The number “289” in hex is nine units of one, eight units of sixteen, and two units of 256 (16 x 16).<p>
{| border="1"
| || Units Of 256 || Units Of 16 || Units Of 1
|- || || ||
| The decimal “15” || 0 || 1 || 5
|- || || ||
| The decimal “289” || 2 || 8 || 9
|}
Since hex uses units of sixteen, how can we possibly represent a value of 10, 11, 12, 13, 14, or 15? We do so with letters. The decimal “10” is represented in hex with the letter “a”; the decimal 11 with “b”; the decimal “12” with “c”, “13” with “d”, “14” with “e”, and finally, “15” with “f”. (Remember that a MAC address of “ffff.ffff.ffff” is a Layer 2 broadcast.)<br>
==Practice Your Conversions for Exam Success==
Now that you know where the letters fall into place in the hexadecimal numbering world, you’ll have little trouble converting hex to decimal and decimal to hex – if you practice.<p>
How would you convert the decimal 27 to hex? You can see that there is one unit of 16 in this decimal; that leaves 11 units of one. This is represented in hex with “1b” – one unit of sixteen, 11 units of one.<br>
===Work From Left To Right To Perform Decimal – Hexadecimal Conversions.===
{| border="1"
| || Units of 256 || Units of 16 || Units of 1 || Hexadecimal Value
|- || || || ||
| Decimal Number “27” || 0 || 1 || B (11) || 1b
|}
Converting the decimal 322 to hex is no problem. There is one unit of 256; that leaves 66. There are four units of 16 in 66; that leaves 2, or two units of one. The hex equivalent of the decimal 322 is the hex figure 142 – one unit of 256, four units of 32, and 2 units of 2.<p>
{| border="1"
| || Units of 256 || Units of 16 || Units of 1 || Hexadecimal Value
|- || || || ||
| Decimal Number “322” || 1 || 4 || 2 || 142
|}
Hex-to-decimal conversions are even simpler. Given the hex number 144, what is the decimal equivalent? We have one unit of 256, four units of 16, and four units of 4. This gives us the decimal figure 324.<p>
{| border="1"
| || Units of 256 || Units of 16 || Units of 1 || Decimal Value
|- || || || ||
| Hexadecimal Number “144”” || 1 || 4 || 4 || 256 + 64 + 4 = 324
|}
What about the hex figure c2? We now know that the letter “c” represents the decimal number “12”. This means we have 12 units of 16, and two units of 2. This gives us the decimal figure 194.<p>
{| border="1"
| || Units of 256 || Units of 16 || Units of 1 || Decimal Value
|- || || || ||
| Hexadecimal Number “c2” || 0 || 12 || 2 || 192 + 2 = 194
|}
<br>
==Tips for Exam Day==
Practice your binary and hexadecimal conversions over and over again before you take your CCNA exams. Binary math questions come in many different forms; make sure you have practiced all of them before exam day. The number one reason CCNA candidates fail their exam is that they’re not prepared for the different types of binary math questions they’re going to be asked, and that they aren’t ready for hexadecimal questions at all.<p>
As you can see, hexadecimal conversions are actually simple. You have to practice them, though!<p>
You don’t have time to learn how to do in on exam day. You’ve got to be ready before you go into the exam room, and the only way to be ready is a lot of practice.<p>
Finally, make sure you read the question carefully. You’ve got hex, decimal, and binary numbers to concern yourself with on your CCNA and CCNP exams. Make sure you give Cisco the answer in the format they’re looking for.<p>
I have written 20 practice questions that will help you practice your hexadecimal conversion skills. Once you practice with these questions, and know exactly how each answer was arrived at, you’ll have no problem with hexadecimal conversions on your Cisco exams.<p>
Best of luck! <br>
To your success, <p>
1. Convert the following hexadecimal number to decimal: 1c <p>
2. Convert the following hexadecimal number to decimal: f1 <p>
3. Convert the following hexadecimal number to decimal: 2a9 <p>
4. Convert the following hexadecimal number to decimal: 14b <p>
5. Convert the following hexadecimal number to decimal: 3e4 <p>
6. Convert the following decimal number to hexadecimal: 13 <p>
7. Convert the following decimal number to hexadecimal: 784 <p>
8. Convert the following decimal number to hexadecimal: 419 <p>
9. Convert the following decimal number to hexadecimal: 1903 <p>
10. Convert the following decimal number to hexadecimal: 345 <p>
11. Convert the following hex number to binary: 42 <p>
12. Convert the following hex number to binary: 12 <p>
13. Convert the following hex number to binary: a9 <p>
14. Convert the following hex number to binary: 3c <p>
15. Convert the following hex number to binary: 74 <p>
16. Convert the following binary string to hex: 00110011 <p>
17. Convert the following binary string to hex: 11001111 <p>
18. Convert the following binary string to hex: 01011101 <p>
19. Convert the following binary string to hex: 10011101 <p>
20. 20.Convert the following binary string to hex: 11010101 <p>
Answers begin on the next page. No peeking! <br>
Before we go through the answers and how they were achieved, let's review the meaning of letters in hexadecimal numbering: <p>
A = 10, B = 11, C = 12, D = 13, E = 14, F = 15. (And remember that ffff.ffff.ffff is a Layer 2 broadcast!) <br>
===Examination===
Conversions involving hexadecimal numbers will use this chart: <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| x || x || x
|}
_________________________________________________________________________ <br>
1. Convert the following hexadecimal number to decimal: 1c <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| || 1 || c
|}
There is one unit of 16 and twelve units of 1. 16 + 12 = 28. <p>
_________________________________________________________________________ <br>
2. Convert the following hexadecimal number to decimal: f1 <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| || f || 1
|}
There are fifteen units of 16 and 1 unit of 1. <p>
240 + 1 = 241 <p>
_________________________________________________________________________ <br>
3. Convert the following hexadecimal number to decimal: 2a9 <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 2 || a || 9
|}
There are two units of 256, ten units of 16, and nine units of 1. 512 + 160 + 9 = 681 <p>
_________________________________________________________________________ <p>
4. Convert the following hexadecimal number to decimal: 14b <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 1 || 4 || b
|}


The following information is provided in an attempt to give general guidance concerning the unemployment insurance (UI) benefit rights of individuals separated from a state agency under the Workforce Transition Act (WTA). WTA provides severance benefits to certain individuals who are involuntarily separated from state employment. Generally, the receipt of WTA severance does not affect eligibility for UI benefits. It must be noted, however, that UI eligibility is determined on a case by case basis, and that eligibility specifics cannot be determined until a UI claim is filed. The following are frequently asked questions concerning UI and WTA entitlement:
There is one unit of 256, four units of 16, and 11 units of 1. 256 + 64 + 11 = 331 <p>
_________________________________________________________________________ <br>
5. Convert the following hexadecimal number to decimal: 3e4 <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 3 || e || 4
|}
There are three units of 256, fourteen units of 16, and four units of 1. 768 + 224 + 4 = 996 <p>
________________________________________________________________________ <br>
6. Convert the following decimal to hexadecimal: 13 <p>
When converting decimal to hex, work with the same chart from left to right. Are there any units of 256 in the decimal 13? No. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 0 || ||
|}
Are there any units of 16 in the decimal 13? No. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 0 || 0 ||
|}
Are there any units of 1 in the decimal 13? Sure. Thirteen of them. Remember how we express the number "13" with a single hex character? <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 0 || 0 || d
|}
The answer is "d". It's not necessary to have any leading zeroes when expressing hex value. <p>
_________________________________________________________________________<br>
7. Convert the following decimal to hexadecimal: 784 <p>
Are there any units of 256 in the decimal 784? Yes, three of them, for a total of 768. Place a "3" in the 256 slot, and subtract 768 from 784. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 3 || ||
|}
784 - 768 = 16 <p>
Obviously, there's one unit of 16 in 16. Since there is no remainder, we can place a "0" in the remaining slots. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 3 || 1 || 0
|}
The final result is the hex number "310". <p>
_________________________________________________________________________ <br>
8. Convert the following decimal to hexadecimal: 419 <p>
Are there any units of 256 in the decimal 419? Yes, one, with a remainder of 163. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 1 || ||
|}
Are there any units of 16 in the decimal 163? Yes, ten of them, with a remainder of three. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 1 || a ||
|}
Three units of one take care of the remainder, and the hex number "1a3" is the answer. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 1 || a || 3
|}
_________________________________________________________________________ <br>
9. Convert the following decimal to hexadecimal: 1903 <p>
Are there any units of 256 in the decimal 1903? Yes, seven of them, totaling 1792. This leaves a remainder of 111. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 7 || ||
|}
Are there any units of 16 in the decimal 111? Yes, six of them, with a remainder of 15. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 7 || 6 ||
|}
By using the letter "f" to represent 15 units of 1, the final answer "76f" is achieved. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 7 || 6 || f
|}
_________________________________________________________________________ <br>
10. Convert the following decimal to hexadecimal: 345 <p>
Are there any units of 256 in 345? Sure, one, with a remainder of 89. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 1 || ||
|}
Are there any units of 16 in 89? Yes, five of them, with a remainder of 9. <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 1 || 5 ||
|}
Nine units of nine give us the hex number "159". <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 1 || 5 || 9
|}
_________________________________________________________________________ <br>


Q: How do I file my UI claim?
===continued…===
11. Convert the following hex number to binary: 42 <p>
First, convert the hex number to decimal. We know "42" in hex means we have four units of 16 and two units of 1. Since 64 + 2 = 66, we have our decimal. <p>
Now we've got to convert that decimal into binary. Here's our chart showing how to convert the decimal 66 into binary: <p>
{| border="1"
| || 128 || 64 || 32 || 16 || 8 || 4 || 2 || 1
|- || || || || || || || ||
| 66 || 0 || 1 || 0 || 0 || 0 || 0 || 1 || 0
|}
The correct answer: 01000010 <p>
_________________________________________________________________________ <br>
12. Convert the following hex number to binary: 12 <p>
First, convert the hex number to decimal. The hex number "12" indicates one unit of sixteen and two units of one; in decimal, this is 18. <p>
Now to convert that decimal into binary. Use the same chart we used in Question 11: <p>
{| border="1"
| || 128 || 64 || 32 || 16 || 8 || 4 || 2 || 1
|- || || || || || || || ||
| 18 || 0 || 0 || 0 || 1 || 0 || 0 || 1 || 0
|}
The correct answer: 00010010 <p>
_________________________________________________________________________ <br>
13. Convert the following hex number to binary: a9 <p>
First, convert the hex number to decimal. Since "a" equals 10 in hex, we have 10 units of 16 and nine units of 1. 160 + 9 = 169 <p>
Now convert the decimal 169 to binary: <p>
{| border="1"
| || 128 || 64 || 32 || 16 || 8 || 4 || 2 || 1
|- || || || || || || || ||
| 169 || 1 || 0 || 1 || 0 || 1 || 0 || 0 || 1
|}


A: A claim may be filed online at www.VaEmploy.Com, by telephone at (866) 832-2363 or by reporting to the Virginia Employment Commission (VEC) office nearest you.
The correct answer: 10101001 <p>
_________________________________________________________________________ <br>
14. Convert the following hex number to binary: 3c <p>
First, convert the hex number to decimal. We have three units of 16 and 12 units of 1 (c =
12), giving us a total of 60 (48 + 12). <p>
Convert the decimal 60 into binary: <p>
{| border="1"
| || 128 || 64 || 32 || 16 || 8 || 4 || 2 || 1
|- || || || || || || || ||
| 60 || 0 || 0 || 1 || 1 || 1 || 1 || 0 || 0
|}
The correct answer: 00111100 <p>
_________________________________________________________________________ <br>
15. Convert the following hex number to binary: 74 <p>
First, convert the hex number to decimal. We have seven units of 16 and four units of 1, resulting in the decimal 116 (112 + 4). <p>
Convert the decimal 116 into binary: <p>
{| border="1"
| || 128 || 64 || 32 || 16 || 8 || 4 || 2 || 1
|- || || || || || || || ||
| 116 || 0 || 1 || 1 || 1 || 0 || 1 || 0 || 0
|}
The correct answer: 01110100 <p>
_________________________________________________________________________ <br>
===continued…===
The next five questions dealt with converting binary to hex. We're going to use much the same method in solving these questions, but this point bears repeating: Make sure to answer the question in the format that Cisco is asking for on your exams. <p>
_________________________________________________________________________ <br>
16. Convert the following binary string to hex: 00110011 <p>
First, we'll convert the binary string to decimal: <p>
{| border="1"
| 128 || 64 || 32 || 16 || 8 || 4 || 2 || 1 || Decimal
|- || || || || || || || ||
| 0 || 0 || 1 || 1 || 0 || 0 || 1 || 1 || 51
|}
To finish answering the question, convert the decimal 51 to hex. Are there any units of 256 in the decimal 51? No. Are there any units of 16 in the decimal 51? Yes, three, for a total of 48 and a remainder of three. Three units of one give us the hex number "33". <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 0 || 3 || 3
|}


Q: How are UI benefit amounts calculated?
_________________________________________________________________________<br>
17. Convert the following binary string to hex: 11001111 <p>
First, we'll convert the binary string to decimal: <p>
{| border="1"
| 128 || 64 || 32 || 16 || 8 || 4 || 2 || 1 || Decimal
|- || || || || || || || ||
| 1 || 1 || 0 || 0 || 1 || 0 || 1 || 1 || 207
|}
Now convert the decimal 207 to hex. Are there any units of 256 in the decimal 207? No. Are there any units of 16 in the decimal 207? Yes, twelve of them, for a total of 192 and a remainder of 15. Twelve is represented in hex with the letter "c". Fifteen units of one are expressed with the letter "f", giving us a hex number of "cf". <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 0 || c || f
|}


A: An individual’s unemployment benefit amount and duration are based on the amount of wages earned during the first four of the last five calendar quarters prior to filing a claim. For example, the UI weekly amount for claims filed in October through December 2008 is based on wages earned from all employers for the period of July 1, 2007 through June 30, 2008. This twelve-month period is known as the “base period.”
_________________________________________________________________________<br>
18. Convert the following binary string to hex: 01011101 <p>
First, convert the binary string to decimal: <p>
{| border="1"
| 128 || 64 || 32 || 16 || 8 || 4 || 2 || 1 || Decimal
|- || || || || || || || ||
| 0 || 1 || 0 || 1 || 1 || 1 || 0 || 1 || 93
|}
Now convert the decimal 93 to hex. There are no units of 256, obviously. How many units of 16 are there? Five, for a total of 80 and a remainder of 13. We express the number 13 in hex with the letter "d". The final result is the hex number "5d". <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 0 || 5 || d
|}


Q: How much do I need to have earned to qualify?
_________________________________________________________________________<br>
19. Convert the following binary string to hex: 10011101 <p>
As always, convert the binary string to decimal first: <p>
{| border="1"
| 128 || 64 || 32 || 16 || 8 || 4 || 2 || 1 || Decimal
|- || || || || || || || ||
| 1 || 0 || 0 || 1 || 1 || 1 || 0 || 1 || 157
|}
Now convert the decimal 157 to hex. There are no units of 256. How many units of 16 are there in the decimal 157? Nine, for a total of 144 and a remainder of 13. You know to express the number 13 in hex with the letter "d", resulting in a hex number of “9d". <p>
{| border="1"
| 256 || 16 || 1
|- || ||
| 0 || 9 || d
|}


A: To qualify for benefits, an individual must have earned at least a total of $2700 in two quarters in the base period.
________________________________________________________________________<br>

20. Convert the following binary string to hex: 11010101 <p>
Q: How much will I receive in UI benefits and for how long?
First, convert the binary string to decimal: <p>

{| border="1"
A: Currently the maximum weekly benefit amount is $378 and the minimum is $54. Individuals must have earned at least $18,900.01 in two quarters during the base period to qualify for the maximum weekly benefit amount. Benefit duration varies from 12 to 26 weeks also depending on wages earned in the base period. Congress enacted a federal extension that increases the original benefit period by 50%, following the exhaustion of your initial benefit
| 128 || 64 || 32 || 16 || 8 || 4 || 2 || 1 || Decimal
entitlement. For example, an individual receiving benefits for 12 weeks will get an additional 6 weeks under the federal extension.
|- || || || || || || || ||

| 1 || 1 || 0 || 1 || 0 || 1 || 0 || 1 || 213
===1===
|}

Now convert the decimal 213 to hex. No units of 256, but how many of 16? Thirteen of them, with a total of 208 and a remainder of 5. Again, the number 13 in hex is represented with the letter "d", and the five units of one give us the hex number "d5". <p>
Q: Is there a waiting period before I can collect UI benefits?
{| border="1"

| 256 || 16 || 1
A: There is a one-week unpaid waiting period which cannot begin until a claim is filed. The waiting period is the first week of your claim during which you meet all of the eligibility requirements. UI claims are effective beginning the Sunday of the week in which they are filed.
|- || ||

| 0 || d || 5
Q: Does receipt of WTA severance benefits affect my UI benefits?
|}

A: Severance payments made under WTA are allocated to the date of separation and do not affect the receipt of UI benefits. The only exception to this occurs when you file a UI claim during the same week in which you are laid off. In that instance, the severance payment is deducted from the UI benefit amount in the first week, but has no effect on UI eligibility in subsequent weeks.

Q: If I file for UI benefits is my WTA entitlement affected?

A: The Workforce Transition Act requires that severance payments made under the WTA be reduced by the amount of UI benefits an individual is entitled to receive. However, the amount of the WTA reduction will be repaid in a lump sum at the time of the last WTA payment. For example, if you are entitled to receive $500 per week for 19 weeks from WTA and $200 per week in UI benefits, the WTA amount will be reduced to $300 per week ($500 minus $200). At the end of the 19 weeks, you will be paid for the total amount of these deductions, or $3,800 ($200 X 19).

Q: Can the payment of accrued sick or annual leave affect my receipt of UI benefits?

A: Accrued leave payments made to you by the separating state agency will not affect your eligibility for UI benefits. The only exception occurs when you file a UI claim during the same week in which you are laid off. In that instance, the leave payment will be deducted from the UI benefit amount in the first week, but has no effect on UI eligibility in subsequent weeks.

Q: Can I draw UI benefits if I qualify for state retirement?

A: If you are receiving a retirement pension from an employer for whom you worked during the base period, the weekly amount of the pension will be deducted dollar for dollar from your weekly UI benefit amount. You will be
ineligible for UI benefits if the pension equals or exceeds the UI benefit amount.

===2===

Q: Are there other requirements I must meet to be eligible for UI benefits?

A: You will be subject to the same continuing eligibility requirements as other claimants. These requirements include: <p>
„h Being ready, willing, and able to work each week. <p>
„h Providing documentation of your search for work each week benefits are claimed. <p>
„h Reporting all wages earned during any weeks benefits are claimed. <p>

Q: Can VEC help me find another job?

A: To be eligible for UI benefits, an individual must register with the VEC for employment assistance online at www.vawc.virginia.gov. The VEC can provide job seekers exposure to a variety of job opportunities, including local and statewide jobs in the private sector, as well as state and federal government positions. A substantial cross-section of employers use the VEC to assist them in hiring new staff, and some companies elect to have the VEC do all of their recruiting.

===3===

Phiên bản lúc 20:32, ngày 30 tháng 10 năm 2012

UNEMPLOYMENT BENEFITS ELIGIBILITY REQUIREMENTS FOR STATE AGENCY EMPLOYEES SEPARATED UNDER THE WORKFORCE TRANSITION ACT

The following information is provided in an attempt to give general guidance concerning the unemployment insurance (UI) benefit rights of individuals separated from a state agency under the Workforce Transition Act (WTA). WTA provides severance benefits to certain individuals who are involuntarily separated from state employment. Generally, the receipt of WTA severance does not affect eligibility for UI benefits. It must be noted, however, that UI eligibility is determined on a case by case basis, and that eligibility specifics cannot be determined until a UI claim is filed. The following are frequently asked questions concerning UI and WTA entitlement:

Q: How do I file my UI claim?

A: A claim may be filed online at www.VaEmploy.Com, by telephone at (866) 832-2363 or by reporting to the Virginia Employment Commission (VEC) office nearest you.

Q: How are UI benefit amounts calculated?

A: An individual’s unemployment benefit amount and duration are based on the amount of wages earned during the first four of the last five calendar quarters prior to filing a claim. For example, the UI weekly amount for claims filed in October through December 2008 is based on wages earned from all employers for the period of July 1, 2007 through June 30, 2008. This twelve-month period is known as the “base period.”

Q: How much do I need to have earned to qualify?

A: To qualify for benefits, an individual must have earned at least a total of $2700 in two quarters in the base period.

Q: How much will I receive in UI benefits and for how long?

A: Currently the maximum weekly benefit amount is $378 and the minimum is $54. Individuals must have earned at least $18,900.01 in two quarters during the base period to qualify for the maximum weekly benefit amount. Benefit duration varies from 12 to 26 weeks also depending on wages earned in the base period. Congress enacted a federal extension that increases the original benefit period by 50%, following the exhaustion of your initial benefit entitlement. For example, an individual receiving benefits for 12 weeks will get an additional 6 weeks under the federal extension.

1

Q: Is there a waiting period before I can collect UI benefits?

A: There is a one-week unpaid waiting period which cannot begin until a claim is filed. The waiting period is the first week of your claim during which you meet all of the eligibility requirements. UI claims are effective beginning the Sunday of the week in which they are filed.

Q: Does receipt of WTA severance benefits affect my UI benefits?

A: Severance payments made under WTA are allocated to the date of separation and do not affect the receipt of UI benefits. The only exception to this occurs when you file a UI claim during the same week in which you are laid off. In that instance, the severance payment is deducted from the UI benefit amount in the first week, but has no effect on UI eligibility in subsequent weeks.

Q: If I file for UI benefits is my WTA entitlement affected?

A: The Workforce Transition Act requires that severance payments made under the WTA be reduced by the amount of UI benefits an individual is entitled to receive. However, the amount of the WTA reduction will be repaid in a lump sum at the time of the last WTA payment. For example, if you are entitled to receive $500 per week for 19 weeks from WTA and $200 per week in UI benefits, the WTA amount will be reduced to $300 per week ($500 minus $200). At the end of the 19 weeks, you will be paid for the total amount of these deductions, or $3,800 ($200 X 19).

Q: Can the payment of accrued sick or annual leave affect my receipt of UI benefits?

A: Accrued leave payments made to you by the separating state agency will not affect your eligibility for UI benefits. The only exception occurs when you file a UI claim during the same week in which you are laid off. In that instance, the leave payment will be deducted from the UI benefit amount in the first week, but has no effect on UI eligibility in subsequent weeks.

Q: Can I draw UI benefits if I qualify for state retirement?

A: If you are receiving a retirement pension from an employer for whom you worked during the base period, the weekly amount of the pension will be deducted dollar for dollar from your weekly UI benefit amount. You will be ineligible for UI benefits if the pension equals or exceeds the UI benefit amount.

2

Q: Are there other requirements I must meet to be eligible for UI benefits?

A: You will be subject to the same continuing eligibility requirements as other claimants. These requirements include:

„h Being ready, willing, and able to work each week.

„h Providing documentation of your search for work each week benefits are claimed.

„h Reporting all wages earned during any weeks benefits are claimed.

Q: Can VEC help me find another job? A: To be eligible for UI benefits, an individual must register with the VEC for employment assistance online at www.vawc.virginia.gov. The VEC can provide job seekers exposure to a variety of job opportunities, including local and statewide jobs in the private sector, as well as state and federal government positions. A substantial cross-section of employers use the VEC to assist them in hiring new staff, and some companies elect to have the VEC do all of their recruiting.

3