第一篇:JAVA工程师离职证明
离职证明
兹证明@@@,身份证号码:
#,自 2015年 5月 5 日入职我公司,担任Java开发工程师一职,至
2018 年 6月 15日,其在职期间无不良表现。
因公司转型发展,已于2018年6月15日与@@@解除劳动合同。
######网络科技有限公司
****年**月**日
第二篇:工程师离职证明
兹有工程师(许可证类别及证号),证号本单位未聘用,特此证明。
单位负责人(签字):
单位(名称和公章):
年月日
第三篇:JAVA工程师
【岗位职责】
1.从事公司核心业务系统的开发、调试,参与产品的分析,设计、开发以及测试几个阶段;
2.编写系统开发文档、技术手册。
【任职资格】
1.计算机或相关专业本科以上学历,2年以上J2EE开发经验,有J2EE项目管理与项目设计经验优先;
2.精通Java编程,熟悉J2EE、MVC架构和UML建模语言等相关技术,熟练掌握面向对象的程序设计方法,熟悉或了解各种数据结构和算法模型;
3.能熟练使用开发框架:SpringMVC、myBatis、Spring;
4.熟练掌握Html、Css、Javascript、JSP、Servlet、XML、JDBC、SOA、AOP等J2EE常用技术;
5.能熟练使用MySql、Oracle等数据库产品,并能熟练编写SQL语句.6.能熟练使用Eclipse,IDEA等开发工具进行项目开发。
6.熟悉JBOSS、Tomcat等服务器产品,熟悉安装、调试、发布配置应用,熟悉Linux操作系统更佳;
7.有源码研究爱好者优先,如有参与开源项目请附上github或项目地址;
8.能承受一定的工作压力,有责任心、上进心,具备良好的自学能力和独立解决问题能力。
基本待遇:
富有竞争力的基本薪资+实际工资作为基数缴纳的五险一金+商业保险+工作日补助+加班补贴+各类国家规定的福利+公司内部特有员工福利等
第四篇:java工程师面试题
西安三元数码软件有限公司 外派JAVA软件工程师笔试题4303
返回上级目录
选择题
1:在软件生命周期中,下列哪个说法是不准确的?
A.软件生命周期分为计划、开发和运行三个阶段
B.在计划阶段要进行问题焉醛和需求分析
C.在开发后期要进行编写代码和软件测试
D.在运行阶段主要是进行软件维护
2:public class Parent {
int change(){…} }
class Child extends Parent {
}
Which methods can be added into class Child?
A.public int change(){} B.abstract int chang(){} C.private int change(){} D.none 3:
1.Give the following method: 2.public void method(){ 3.String a,b;
4.a=new String(“hello world”);5.b=new String(“game over”);6.System.out.println(a+b+”ok”);7.a=null;8.a=b;
9.System.out.println(a);10.}
11.In the absence of compiler optimization, which is the earliest point the object a refered is definitely elibile to be garbage collection.A.before line 5 B.before line 6 C.before line 7 D.before line 9 4:
1.String s=”Example String”;Which operation is not legal? A.int i=s.length();B.s[3]=”x”;
C.String short_s=s.trim();D.String t=”root”+s;
5:关于垃圾收集的哪些叙述是对的。
A.程序开发者必须自己创建一个线程进行内存释放的工作。
B.垃圾收集将检查并释放不再使用的内存。
C.垃圾收集允许程序开发者明确指定并立即释放该内存。
D.垃圾收集能够在期望的时间释放被java对象使用的内存。
6:
1.Give the following code: 2.public class Example{
3.public static void main(String args[]){ 4.int l=0;5.do{
6.System.out.println(“Doing it for l is:”+l);7.}while(--l>0)
8.System.out.println(“Finish”);9.} 10.}
11.Which well be output: A.Doing it for l is 3 B.Doing it for l is 1 C.Doing it for l is 2 D.Doing it for l is 0
7: Which of the following statements are true?
A.The automatic garbage collection of the JVM prevents programs from ever running out of memory
B.A program can suggest that garbage collection be performed and force it C.Garbage collection is platform independent
D.An object becomes eligible for garbage collection when all references denoting it are set to null.8:下面关于变量及其范围的陈述哪些是错的。
A.实例变量是类的成员变量。
B.实例变量用关键字static声明。
C.在方法中定义的局部变量在该方法被执行时创建
D.局部变量在使用前必须被初始化。
9:
1.Which is the most appropriate code snippet that can be inserted at line 18 in the following code? 2.3.(Assume that the code is compiled and run with assertions enabled)4.5.1.import java.util.*;6.7.2.8.9.3.public class AssertTest 10.11.4.{ 12.13.5.private HashMap cctld;14.15.6.16.17.7.public AssertTest()18.19.8.{ 20.21.9.cctld = new HashMap();22.23.10.cctld.put(“in”, “India”);24.25.11.cctld.put(“uk”, “United Kingdom”);26.27.12.cctld.put(“au”, “Australia”);28.29.13.// more code...30.31.14.} 32.33.15.// other methods....34.35.16.public String getCountry(String countryCode)36.37.17.{ 38.39.18.// What should be inserted here? 40.41.19.String country =(String)cctld.get(countryCode);42.43.20.return country;44.45.21.} 46.47.22.} A.assert countryCode!= null;
B.assert countryCode!= null : “Country code can not be null”;C.assert cctld!= null : “No country code data is available”;D.assert cctld : “No country code data is available”;10:在下述选项时,没有构成死循环的程序是
A.int i=100 while(1){ i=i%100+1;if(i>100)break;} B.for(;;);
C.int k=1000;do { ++k;}while(k>=10000);D.int s=36;while(s);--s;11:
1.给出下面的代码片断。。下面的哪些陈述为错误的? 2.1)public void create(){ 3.2)Vector myVect;4.3)myVect = new Vector();5.4)} A.第二行的声明不会为变量myVect分配内存空间。
B.第二行语句创建一个Vector类对象。
C.第三行语句创建一个Vector类对象。
D.第三行语句为一个Vector类对象分配内存空间
12:A class design requires that a member variable should be accessible only by same package, which modifer word should be used?
A.protected B.public C.no modifer D.private 13:
1.Give the following java source fragement: 2.//point x
3.public class Interesting{ 4.//do something 5.}
6.Which statement is correctly Java syntax at point x? A.public class MyClass{//do other thing…} B.static int PI=3.14
C.class MyClass{//do something…} D.none
14:Which fragments are not correct in Java source file?
A.package testpackage;public class Test{//do something...}
B.import java.io.*;package testpackage;public class Test{// do something...}
C.import java.io.*;class Person{// do something...} public class Test{// do something...} D.import java.io.*;import java.awt.*;public class Test{// do something...} 15:以下的C程序代码片段运行后C和d的值分别是多少
Int a =1,b =2;Int c,d;c =(a&b)&&a;d =(a&&b)&a;
A.0,0 B.0,1 C.1,0 D.1,1 16:
1.What will be the result of executing the following code? 2.3.public static void main(String args[])4.{
5.char digit = 'a';
6.for(int i = 0;i < 10;i++)7.{
8.switch(digit)9.{
10.case 'x' : 11.{ 12.int j = 0;13.System.out.println(j);14.} 15.default : 16.{
17.int j = 100;18.System.out.println(j);19.} 20.} 21.} 22.int i = j;
23.System.out.println(i);24.} 25.26.Choices: A.100 will be printed 11 times.B.The code will not compile because the variable i cannot be declared twice within the main()method.C.The code will not compile because the variable j cannot be declared twice within the switch statement.D.None of these.17:
1.Give this class outline: 2.class Example{ 3.private int x;
4.//rest of class body… 5.}
6.Assuming that x invoked by the code java Example, which statement can made x be directly accessible in main()method of Example.java? A.Change private int x to public int x B.change private int x to static int x C.Change private int x to protected int x D.change private int x to final int x 18:Which are not Java keywords? A.TRUE B.const C.super D.void
19:设有变量说明语句int a=1,b=0;则执行以下程序段的输出结果为()。
switch(a){ case 1: switch(b){
case 0:printf(“**0**”);break;case 1:printf(“**1**”);break;}
case 2:printf(“**2**”);break;}
printf(“n”);
A.**0** B.**0****2** C.**0****1****2** D.有语法错误
20:软件生命周期的瀑布模型把软件项目分为3个阶段、8个子阶段,以下哪一个是正常的开发顺序?
A.计划阶段、开发阶段、运行阶段
B.设计阶段、开发阶段、编码阶段
C.设计阶段、编码阶段、维护阶段
D.计划阶段、编码阶段、测试阶段
21:
1.What will happen when you attempt to compile and run the following code? 2.3.class Base 4.5.{ 6.7.int i = 99;8.9.public void amethod()10.11.{
12.13.System.out.println(“Base.amethod()”);14.15.} 16.17.Base()18.19.{
20.21.amethod();22.23.} 24.25.}
26.27.public class Derived extends Base 28.29.{
30.31.int i =-1;32.33.34.35.public static void main(String argv[])36.37.{
38.39.Base b = new Derived();40.41.System.out.println(b.i);42.43.b.amethod();44.45.} 46.47.public void amethod()48.49.{
50.51.System.out.println(“Derived.amethod()”);52.53.} 54.55.}
56.57.Choices: A.Derived.amethod()-1 Derived.amethod()B.Derived.amethod()99 C.Compile time error D.Derived.amethod()简答题
22:怎样在复杂的各种形式的网页中提取mp3下载的结构化数据?
23:编写一程序,利用RandomAccessFile类将一个文件的全部内容追加到另一个文件的末尾。
24:已知abc+cba=1333,其中a,b,c均为一位数,编程求出满足条件的a,b,c所有组合。
25:servlet的生命周期?
26:Static Inner Class 和 Inner Class的不同,说得越多越好。
27:如果有几千个session,怎么提高效率。
28:
1.public class Something { 2.void doSomething(){ 3.private String s = "";4.int l = s.length();5.} 6.} 7.有错吗? 29:是否可以从一个static方法内部发出对非static方法的调用?
30:error和exception有什么区别?
31:Is Tomcat faster than serving static HTML pages than Apache httpd?
第五篇:java工程师技术标准
JAVA初级工程师 岗位职责:
1、按照质量及过程管理要求,根据设计完成软件开发及内部测试;
2、负责开发过程中相关文档编写; 任职要求:
1、有扎实的软件理论基础,理解面向对象编程,良好的面向对象理解能力;
2、有1年以上J2EE项目开发经验并持续至今;
3、精通JAVA 语言,有良好的编程习惯,熟悉Struts,Hibernate,Spring等开源框架的使用;
4、能够正确理解和阅读UML设计文档;
4、熟练使用SQL语言;
5、可承受较大的工作压力,有团队意识和钻研精神;
JAVA中级工程师 岗位职责:
1、负责中低难度的软件设计、较高难度的代码开发,有很强的质量意识;
2、负责中低难度的需求分析;
3、负责需求、设计中相关文档编写;
4、编写制订各项较低难度技术方案;
5、指导、培训初级工程师;
6、维护处理系统日常问题。任职要求:
1、有扎实的软件理论基础,理解面向对象编程,良好的面向对象理解能力;
2、有3年以上J2EE项目开发经验并持续至今;
3、精通JAVA 语言,有良好的编程习惯,熟悉Struts,Hibernate,Spring等开源框架的使用,了解其理论基础;
4、精通UML,熟练掌握UML设计工具,有良好文档编写习惯;
4、熟练使用SQL语言,有一定ORACLE、SYBASE等大型数据库使用及设计、开发经验;
5、熟悉银行金融业务;
6、可承受较大的工作压力,有团队意识和钻研精神;
JAVA高级工程师 岗位职责:
1、负责较高难度的软件设计、核心重要模块开发,有很强的质量意识;
2、负责需求、设计中相关文档编写;
3、编写制订各项技术方案;
4、负责较高难度的需求分析;
5、指导、培训中初级工程师、新员工;
6、解决项目中技术难题。任职要求:
1、有扎实的软件理论基础,深刻理解面向对象编程,良好的面向对象分析设计能力;
2、有5年以上大中型项目开发经验并持续至今,其中3年以上基于J2EE架构大型应用系统的模块设计开发经验;
3、精通JAVA 语言,有良好的编程习惯,掌握Struts,Hibernate,Spring等开源框架原理;
4、具备ORACLE、SYBASE等大型数据库使用及设计、开发经验;
5、精通UML,熟练掌握UML设计工具,有良好文档编写习惯;
6、掌握常用安全加密技术,具有安全加密设计、分析能力;
7、了解常用网络设备,熟悉TCP/IP协议,具有网络架构和分析能力;
8、可承受较大的工作压力,有团队意识和钻研精神;
9、熟悉银行金融业务。
JAVA技术经理 岗位职责:
1、对整个项目的技术成败负责,有很强的质量意识;
2、负责系统开发分工,包括软件需求、设计、开发和维护;
3、负责高难度的软件设计、核心重要模块开发;
4、负责软件实施过程中的重要文档编写;
5、协助、主导解决项目中各类技术难题;
6、负责项目组内员工的技术培训与工作指导;
7、制定项目组内技术规范;
8、参与项目招标相关事务,参加各类项目技术会议。任职要求:
1、有扎实的软件理论基础,深刻理解面向对象编程,有独立负责子系统分析设计的经验;有一定理论提取能力;
2、有7年以上大中型项目工作经验,3年以上基于J2EE架构大型应用系统的设计开发经验;
3、掌握软件开发流程和软件工程相关知识,良好的结构设计和程序代码编写能力,具备良好的编程习惯;热爱技术,对编程有足够的兴趣,勇于尝试,较强的创新能力;
4、掌握ORACLE、SYBASE等大型数据库;
5、精通JAVA 语言,熟悉Struts,Hibernate,Spring等一种以上开源框架,掌握其核心原理和设计理念,精通框架中各种J2EE技术;
6、精通UML,熟练掌握UML设计工具,有良好文档编写习惯;
7、掌握常用安全加密技术,具有安全加密设计、分析能力;
8、了解常用网络设备,熟悉TCP/IP协议,具有网络架构和分析能力;
9、具有高度的责任感和敬业精神,具有良好的职业道德,工作认真、踏实可承受较大的工作压力;
10、熟悉银行金融业务。