Skip to main content

2013年12月18日美国大使馆签证面经

2013年12月18日美国大使馆签证面经
这次寒假回国选择面签是因为有同学CS phd 2013暑假被check 2个月(先递签通知面签又被check)。check与否与递签面签关系不大,面签即使被check一个月也足够了。回国前查了各种帖子,跑前跑后准备了 很全的材料,没想到很多东西都没用上,面谈的时候so easy 大概不到一分钟就通过走人了。不得不说美国政府这次签证手续改革大大的简化了签证申请的步骤。特别是网上预约面签的系统超赞,我飞机晚点,没赶上 Dec17号的面签,在芝加哥机场就把预约直接取消了。后来,到了日本终于又有了wifi,居然发现18号还有很多空位,于是就约了18号的。虽然飞机晚 点,回家的火车票已经订好的情况下,强大的预约系统给了我方便的重新预约的机会。比起去年用电话预约各种打不进去,各种坑爹,居然花钱让中介打相比,算是 很大的进步了。

以下步骤适用于硕士续签,我是CS MS,其他工程学科应该也差不多吧。
最简版:
1. 填DS160表格,打印确认页。
2. 注册新用户预约申请http://www.ustraveldocs.com/, 选择面签地点,填写信息包括已提交的DS160编号,直到蹦出来一个CGI reference number,让家人凭CGI reference number在中信银行网上银行里交钱。然后选择面签时间。(据说邮政储蓄银行的卡操作可以成功,其他的貌似有问题) ------(可以选择打印确认页,但是面签的时候没用)
2. 去IOS签travel signature
3. 去register office 打印成绩单
4. 打印过去交过的SEVIS费的确认页
5. 带好护照

在安家楼的美国大使馆,工作人员服务非常到位,到处都有人维护秩序,可以提供咨询:
1. 在一楼交材料(DS160, I20,SEVIS确认页, 护照),等待工作人员查验好材料
2. 去一路旁边窗口摁指纹
3. 按箭头指示去面谈

以下是我的面谈记录:
签证官: Only give me your passport
签证官: Are you a Master or Phd student?
我: Master
签证官:Is this your second time apply for visa
我: yes
签证官:Could you give me your transcript?
我: this is the offical sealed transcript
签证官:OK, 通过了
我: 需要办理邮寄吗?
签证官:不需要,直接去你预约系统填的中信银行地址取就好了。

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