Skip to main content

H1b回国签证攻略

马上就要是一年一度的H1b生效日了,小编也要年底回国去弄个H1b Stamp在护照上,这样以后去加拿大墨西哥玩玩也不怕。这里要注意的是很多小伙伴误解H1b生效日要回国去才能转换身份,其实当你H1b批了的时候,应 届生都是有Gap Cap OPT即OPT自动延长到生效日。这样的话,你不用回国也可以留在美国继续工作,直到你想回国的时候,再次入境就要签一个H1b才行。小编也是最近才开始 着手准备,看签经,问前辈,所以就把自己找到的资料分享出来给像我一样迷茫的小伙伴。在网上找到这些资料

H1B回国签证所要求的材料如下.
一. 核心材料:
DS-160最后那个确认页,打印出来带着
I-797(H1B 原件)
I-129 复印件
签证缴费收据(中信银行的)
护照
照片一张(签证照片)
雇佣证明(OFFER LETTER)如果是CONTRACTOR 去找自己的CLIENT MANAGER开一个请假
回国在职证明
个人简历(大使馆主页有模板)
二. 补充材料:(也许有的不需要 看个人情况, 带着无妨)
教育证明(学位,成绩单)
工作计划(基本介绍公司的工作计划 写一些)
SSN
Driver license
公司的BADGE
I-20
PAYSTUB 最近6个月的
bank of statement(主要有你现在的住址)
EAD card
三. 具体签证流程:
1. 中信缴费 1210人民币 H1B.买签证预约的电话卡,保留签证缴费收据
2. 准备一张签证照片
3. 在线填写DS160表格
4:电话预约面试时间:需要签证缴费收据和DS160填写后的确认号
5. 准备面试材料
6. 面试
注意: 可以自己准备些面试问题和零散的资料
小编的室友去年已经顺利签了,据说过程很简单。欢迎有过经历的大牛们也出来指点指点!

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