Skip to main content

Optional Practical Training (OPT)

International students in the U.S. in valid F-1 immigration status are permitted to work off-campus in optional practical training (OPT) status both during and after completion of their degree. Rules established by the U.S. Citizenship and Immigration Service (USCIS) govern the implementation of OPT, and all OPT employment requires prior authorization from USCIS and from your school’s International Student Office.

You can apply for OPT after being enrolled for at least 9 months, but you cannot begin employment until you receive your Employment Authorization Document (EAD) from USCIS and you have been enrolled for at least a year. You do not need to have a job offer to apply for your OPT EAD, and your OPT employment can occur anywhere in the US. Start early—USCIS takes up to 90 days to process your application—and make sure you work closely with your school’s International Student Office. As with everything you will do while in the U.S., permission is based on maintaining lawful F-1 status, and your International Student Office is there to help you maintain that status throughout your stay.

General OPT Requirements

   1. Employment must be “directly related” to the student’s major
   2. Student must maintain lawful F-1 status
   3. Student must apply for OPT before completion of all work towards a degree
   4. Students who have engaged in 12 months or more of full-time Curricular Practical Training (CPT) are not eligible for OPT
   5. OPT is permitted for up to 12 months full-time in total – part-time OPT (while still in school) reduces available full-time OPT by half of the amount of part-time work (for instance, if you work part time for 6 months, you can work full-time for up to 9 months)

Students can be authorized for 12 months of OPT for each successive level of degree achieved – for instance, you can do 12 months of OPT after receiving your undergraduate degree, go back to graduate school, and then do 12 months of OPT after receiving your graduate degree. Pre-completion OPT (students are still in school) and post-completion OPT (students have completed their degree) each have different rules:

OPT before completing a degree:
• Students must be enrolled in school full-time
• Students may only work 20 hours per week while school is in session
• Students may work full-time during summer and other breaks (as long as the student will return to school after the break)
• Student may work full-time after completion of all coursework, if a thesis or dissertation is still required and student is making normal progress towards the degree

OPT after completing a degree:
• After completion of your degree, OPT work must be full time (40 hours/week)
• All OPT must be completed within 14 months after completion of your degree
• Applications for post-completion OPT must be received by USCIS before the completion of the degree

One final note – be mindful of the travel regulations governing F-1 students on OPT. If you leave the country after completion of your degree, but before receiving your EAD and obtaining a job, you may not be readmitted. You can leave the country after completion of your degree if you have your EAD and a job, but make sure you bring everything that you’ll need to get back in (including valid passport, valid EAD card, valid F1 visa, all your I-20s with page 3 endorsed for travel by your international student advisor within the past 6 months, and a letter of employment, including dates of employment and salary).



OPT Update - April 2008
In April 2008, the Department of Homeland Security updated their OPT requirements for students who are studying certain degree programs so that OPT can be extended for an additional 17 months, up to a total of 29 months of OPT. This was instituted to plug the gap between students who completed their OPT and did not have a chance to file for an H1B visa due to the time frames and visa caps that exist on the H1B visa. Students can now extend their OPT so they still have the opportunity to apply for an H1B visa.

The special extension of the OPT program is only available to those who are employed by companies who are enrolled in the E-Verify program, and you have to be studying one of the following subjects:

* Actuarial Science
* Computer Science Applications
* Engineering
* Engineering Technologies
* Life Sciences
* Mathematics
* Military Technologies
* Physical Sciences

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...