Skip to main content

STEM OPT的几点事项

一直以来,学生毕业都可以申请12个月的OPT (Optional Practical Training)。去年4
月4日,美国国土安全局宣布某些F-1 OPT学生可以再申请延长17个月的OPT, 如果这些
学生有一个科学、科技、工程、数学方面的学位(Science, Technology, Engineering
, or Mathematics, or called STEM)而且他们的雇主加入了E-verify的program. 这
项政策对于广大理工科学生而言,从一定程度上缓解了H-1B名额有限的问题。

1. 假如一位学生拥有一个STEM的本科学位,但是硕士确实读了一个非STEM的学位,
他是否可以申请延长17个月的OPT呢?
根据新的法律规定,是否能申请17个月的OPT extension 取决于现有OPT申请时所基于
的学位。换句话说,如果这位学生当初用的是非STEM专业的degree申请的OPT, 那么他
就不能弄用他之前获得的STEM学位申请17个月的OPT extension。

2. 假如一位学生拥有两个主修学位(dual major),其中一个学位是STEM专业,而
且他的工作是和这个STEM 专业的相关的,他是否可以申请17个月的OPT extension呢?
这个是可以的,但是必须是主修学位,而不能是辅修学位(minor)。

3. OPT期间失业时间的限制
学生在常规的OPT期间可以有90天的unemployment。
如果是STEM专业的学生,另外可以有30天的unemployment,也就是说总共可以有120天
的unemployment。
例外的是: 在前一份工作和下一份工作的转换之间,有10天是可以不用记入总的
unemployment时间之内的。

4. 如果一位学生现有的OPT EAD卡在STEM OPT extension批准之前已经过期了,该
怎么办?
在新的法律规定下,这位学生可以继续工作(不超过180天),直到extension的EAD卡
批准下来,但条件是这位学生在现有OPT过期以前申请了STEM OPT的extension。

5. OPT与H-1B Cap Gap 的问题
在以前,学生如果5月份毕业,然后申请12个月的OPT,再来年申请H-1B, 就会有一个身
份GAP的问题。因为他的OPT会在5月份结束,而H-1B则要到10月1日才开始。以前很多学
生因为这个GAP的问题,或者是回国签证,或者是找个学校继续保持学生的身份直到10
月1日H-1B开始为止。
自从去年的新规定出台后,如果一学生的H-1B申请被抽中和批准, 他的OPT可以自动延
至9 月30日,除非其H-1B申请被否决或驳回。

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...