`
zengshaotao
  • 浏览: 753945 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

英文面试

 
阅读更多

我2009年毕业于天津科技大学,我的专业是信息于计算科学,毕业以后一直从事java web 开发,到现在已经有5年了,5年来参与了很多项目的开发,有关于保险的,有银行的,财 务的,也有关于电子商务。在不同的项目中也担当着不同的角色。在这么多项目里,掌握 了很多相关的业务知识和技术经验,比如 servlet,jsp,jquery,struts1,struts2,spring,hibernate,ibatis 等等。也学会了如何 与人更好的相处,学会了如何提高工作效率.当然我知道一些其他操作系统,比如unix和 linux,也知道一些有关数据库方面的知识 I graduated from tianjin university of science and technology in 2009, and my major is information in computer science, after graduation i have been engaged in Java web development for 5 years ,in this time,i participated in several projects development , about insurance, bank, finance, also about Electronic commerce. and play different roles In different projects . In these projects, i master relevant knowledge of business and technical , such as a servlet, JSP, jquery, struts 2, struts 2, spring, hibernate, ibatis, UNIX and Linux, also know some relevant knowledge about database,and so on. Also learner how to get along better with others, learn how to improve the efficiency of the work.and I know some other operating system, such as ;that's all.

Corresponding 对应的 Maybe he is right 可能他是对的 for those 对于那些

relative 相对的,相关的 full,complete完全的。 meet the market demands 满足市场需求 fulfil(满足希望之类的) small stressors 少量压力 follow遵循 方法click会遍历回调函数的列表,然后一个个地调用它们。 The click method iterates through the list of callbacks and invokes each one.

装箱允许任意类型被加工为引用类型。 Boxing allows any type to be treated as a reference type save a lot of money 节约了大量的时间 this powerful tool saves many hours

unique 独特的,唯一的 entrust 委托 basis基本原则,依据 the development efficiency 开发效率 can you sell yourself in two minutes ? go for it 你能在两分钟内推销自己吗?大胆试试吧 In so many candidates,what advantage do you have 在那么多的候选人当中,你觉得自己有什么优势 with my qualifications and experience i feel i am hardworking give me a summary of your current job description i have been working as a computer programmer for five years,to be specific,i do system analysis,trouble shooting and provide software support actually,实际上 frankly,坦白的说 money is important ,but the responsibility that goes along with this job is what intersts me the most. 薪水固然重要,但是这工作伴随而来的责任更吸引我 i have accumulated lots of technical experice Access to shared data 访问共享数据 The last command was backslash 364 (反斜杠364) slash斜杠 CET6 .College English Test Band 6:大学英语6级考试; 对象的序列化(serialization)非常影响I/O的性能,尽量少用。 Object serialization (serialization) greatly affects the performance of I/O 这家公司的产品质量享誉全球 The company has a worldwide reputation for quality 它涉及了很多行业 It involves a lot of industry Involved in many industries, such as education, finance, traffic the result of some sort 一些排序后的结果 is transparent to the developer 对开发者来书是透明的 There are many execution paths in the program 程序里有多条执行路径 technical leader 技术领导,技术总监 Requirments,要求 Responsible for leading the design,development,delivery and maintenance of software application 负责主导设计,开发,交付和软件程序的维护 evaluate and select alternative technical solutions for identified requirment with knowledge of j2ee application development 3. suit yourself 随你的便;按自己的意愿行事 You don't want to join the club? Oh well, suit yourself. 你不愿意参加俱乐部是吗? 那好,随你的便吧。 4. it's up to you 听你的,由你决定 So if you really want class to make a difference in your life, it's up to you. 所以如果你真的想通过这门课改变生活,一切取决于你。 5. I don't care 我不在乎 I don't care what she thinks. 我不管她怎么想。 Question: What is transient variable? Answer: Transient variable can't be serialize. For example if a variable is declared as transient in a Serializable class and the class is written to an ObjectStream, the value of the variable can't be written to the stream instead when the class is retrieved from the ObjectStream the value of the variable becomes null. Question: Name the containers which uses Border Layout as their default layout? Answer: Containers which uses Border Layout as their default are: window, Frame and Dialog classes. Question: What do you understand by Synchronization? Answer: Synchronization is a process of controlling the access of shared resources by the multiple threads in such a manner that only one thread can access one resource at a time. In non synchronized multithreaded application, it is possible for one thread to modify a shared object while another thread is in the process of using or updating the object's value. Synchronization prevents such type of data corruption. E.g. Synchronizing a function: public synchronized void Method1 () { // Appropriate method-related code. } E.g. Synchronizing a block of code inside a function: public myFunction (){ synchronized (this) { // Synchronized code here. } } Question: What is Collection API? Answer: The Collection API is a set of classes and interfaces that support operation on collections of objects. These classes and interfaces are more flexible, more powerful, and more regular than the vectors, arrays, and hashtables if effectively replaces. Example of classes: HashSet, HashMap, ArrayList, LinkedList, TreeSet and TreeMap. Example of interfaces: Collection, Set, List and Map. Question: Is Iterator a Class or Interface? What is its use? Answer: Iterator is an interface which is used to step through the elements of a Collection. Question: What is similarities/difference between an Abstract class and Interface? Answer: Differences are as follows: Interfaces provide a form of multiple inheritance. A class can extend only one other class. Interfaces are limited to public methods and constants with no implementation. Abstract classes can have a partial implementation, protected parts, static methods, etc. A Class may implement several interfaces. But in case of abstract class, a class may extend only one abstract class. Interfaces are slow as it requires extra indirection to to find corresponding method in in the actual class. Abstract classes are fast. Similarities: Neither Abstract classes or Interface can be instantiated. Question: How to define an Abstract class? Answer: A class containing abstract method is called Abstract class. An Abstract class can't be instantiated. Example of Abstract class: abstract class testAbstractClass { protected String myString; public String getMyString() { return myString; } public abstract string anyAbstractFunction(); } Question: How to define an Interface? Answer: In Java Interface defines the methods but does not implement them. Interface can include constants. A class that implements the interfaces is bound to implement all the methods defined in Interface. Emaple of Interface: public interface sampleInterface { public void functionOne(); public long CONSTANT_ONE = 1000; } Question: Explain the user defined Exceptions? Answer: User defined Exceptions are the separate Exception classes defined by the user for specific purposed. An user defined can created by simply sub- classing it to the Exception class. This allows custom exceptions to be generated (using throw) and caught in the same way as normal exceptions. Example: class myCustomException extends Exception { // The class simply has to exist to be an exception } Question: Explain the new Features of JDBC 2.0 Core API? Answer: The JDBC 2.0 API includes the complete JDBC API, which includes both core and Optional Package API, and provides inductrial-strength database computing capabilities. New Features in JDBC 2.0 Core API: Scrollable result sets- using new methods in the ResultSet interface allows programmatically move the to particular row or to a position relative to its current position JDBC 2.0 Core API provides the Batch Updates functionality to the java applications. Java applications can now use the ResultSet.updateXXX methods. New data types - interfaces mapping the SQL3 data types Custom mapping of user-defined types (UTDs) Miscellaneous features, including performance hints, the use of character streams, full precision for java.math.BigDecimal values, additional security, and support for time zones in date, time, and timestamp values. Question: Explain garbage collection? Answer: Garbage collection is one of the most important feature of Java. Garbage collection is also called automatic memory management as JVM automatically removes the unused variables/objects (value is null) from the memory. User program cann't directly free the object from memory, instead it is the job of the garbage collector to automatically free the objects that are no longer referenced by a program. Every class inherits finalize() method from java.lang.Object, the finalize() method is called by garbage collector when it determines no more references to the object exists. In Java, it is good idea to explicitly assign null into a variable when no more in use. I Java on calling System.gc() and Runtime.gc(), JVM tries to recycle the unused objects, but there is no guarantee when all the objects will garbage collected. Question: How you can force the garbage collection? Answer: Garbage collection automatic process and can't be forced. Question: What is OOPS? Answer: OOP is the common abbreviation for Object-Oriented Programming. Question: Describe the principles of OOPS. Answer: There are three main principals of oops which are called Polymorphism, Inheritance and Encapsulation. Question: Explain the Encapsulation principle. Answer: Encapsulation is a process of binding or wrapping the data and the codes that operates on the data into a single entity. This keeps the data safe from outside interface and misuse. One way to think about encapsulation is as a protective wrapper that prevents code and data from being arbitrarily accessed by other code defined outside the wrapper. Question: Explain the Inheritance principle. Answer: Inheritance is the process by which one object acquires the properties of another object. Question: Explain the Polymorphism principle. Answer: The meaning of Polymorphism is something like one name many forms. Polymorphism enables one entity to be used as as general category for different types of actions. The specific action is determined by the exact nature of the situation. The concept of polymorphism can be explained as "one interface, multiple methods". Question: Explain the different forms of Polymorphism. Answer: From a practical programming viewpoint, polymorphism exists in three distinct forms in Java: Method overloading Method overriding through inheritance Method overriding through the Java interface Question: What are Access Specifiers available in Java? Answer: Access specifiers are keywords that determines the type of access to the member of a class. These are: Public Protected Private Defaults Question: Describe the wrapper classes in Java. Answer: Wrapper class is wrapper around a primitive data type. An instance of a wrapper class contains, or wraps, a primitive value of the corresponding type. save a lot of money 节约了大量的时间 this powerful tool saves many hours unique 独特的,唯一的 the development efficiency 开发效率 can you sell yourself in two minutes ? go for it 你能在两分钟内推销自己吗?大胆试试吧 In so many candidates,what advantage do you have 在那么多的候选人当中,你觉得自己有什么优势 with my qualifications and experience i feel i am hardworking give me a summary of your current job description i have been working as a computer programmer for five years,to be specific,i do system analysis,trouble shooting and provide software support actually,实际上 frankly,坦白的说 money is important ,but the responsibility that goes along with this job is what intersts me the most. 薪水固然重要,但是这工作伴随而来的责任更吸引我 i have accumulated lots of technical experice Access to shared data 访问共享数据 The last command was backslash 364 (反斜杠364) slash斜杠 CET6n.College English Test Band 6:大学英语6级考试; 对象的序列化(serialization)非常影响I/O的性能,尽量少用。 Object serialization (serialization) greatly affects the performance of I/O 这家公司的产品质量享誉全球 The company has a worldwide reputation for quality 它涉及了很多行业 It involves a lot of industry Involved in many industries, such as education, finance, traffic the result of some sort 一些排序后的结果 There are many execution paths in the program 程序里有多条执行路径

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics