java英文面试笔试题

Java是一门面向对象编程语言,不仅吸收了C++语言的各种优点,还摒弃了C++里难以理解的多继承、指针等概念,小编收集了java英文面试笔试题,欢迎阅读。

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

【java英文面试笔试题】相关文章:

java英文笔试题_java英文面试笔试题相关推荐

  1. java与mysql笔试题_JAVA和数据库笔试题

    java部分: 选择:1.下面的执行结果: Java代码 public class Test3 { public static void main(String args[]){ int a=222; ...

  2. 软件测试英语笔试,软件测试英文面试笔试题

    软件测试笔试题:What are the reasons that WinRunner fails to identify an object on the GUI? WinRunner fails ...

  3. Java高并发和多线程的面试笔试题——稳拿offer

    1.在java中守护线程和本地线程区别? java中的线程分为两种:守护线程(Daemon)和用户线程(User). 任何线程都可以设置为守护线程和用户线程,通过方法Thread.setDaemon( ...

  4. java高级编程笔试题_JAVA 高级编程笔试题

    <使用Java实现面向对象编程>阶段测试-笔试试卷 一.选择题(共25题,每题4分,满分100分) 1)下列选项中关于Java中ArrayList.LinkedList.HashMap三个 ...

  5. python开发面试笔试题_python集合面试笔试题

    1 哪些关于Python的set类型的描述是正确的: A. 集合可能包含可变元素. B. 集合是可变的. C. 集合中元素的顺序很重要. D. 给定元素不能出现在集合中多次. 2 以下哪些定义集合{' ...

  6. 常见MySQL面试题(1)(MySQL面试笔试题)

    文章目录 1.你能想到的优化MYSQL数据库的方法 2.应用有大量数据,主要给用户查询,更新操作比较少,那么存储引擎用MyISAM好还是InnoDB好,为什么? 3.写出无限级的分类表结构,表个数不限 ...

  7. 常见PHP面试题(1)(PHP面试笔试题)

    文章目录 1.说一下PHP的传值和引用 2.面向对象的概念和理解 3.谈一下依赖注入 4.静态类和静态方法区别和用途 5.写出以下输出结果 6.请用PHP写出一个函数验证电子邮件的格式是否正确(要求使 ...

  8. java笔试面试题_Java面试笔试题大全

    Java面试笔试题大全 42.swtich是否能作用在byte上,是否能作用在long上,是否能作用在String上? switch(expr1)中,expr1是一个整数表达式.因此传递给 switc ...

  9. java面试笔试题大汇总

    java面试笔试题大汇总 JAVA相关基础知识 1.面向对象的特征有哪些方面 1.抽象: 抽象就是忽略一个主题中与当前目标无关的那些方面,以便更充分地注意与当前目标有关的方面.抽象并不打算了解全部问题 ...

最新文章

  1. Redis初学:9(Zset类型)
  2. 数据中心战略的三个真相
  3. python3中的type与object
  4. 一些关于bootstrap,bagging,Adaboost,random forest, gradient boost的基本理解
  5. boost::hana::test::TestLogical用法的测试程序
  6. [Apple开发者帐户帮助]三、创建证书(3)创建企业分发证书
  7. Linux实时查看进程命令top笔记
  8. rsa java模数_RSA公私钥获取模数和质数
  9. linux基础命令怎么记,linux基础命令--笔记(示例代码)
  10. HTML5关于上传API的一些使用(上)
  11. 【备忘录】word利用mathtype进行公式分章节编号和引用
  12. 已经学过51单片机,如何进阶?我来教你
  13. Leetcode(java)
  14. flash如何同时访问本地文件系统和网络文件
  15. 客户管理系统哪个好用 crm客户管理系统排名
  16. python发送soap报文_python处理SOAP API
  17. 动态树专题 WC 2006 Tube 还有范浩强的“动态树好题”
  18. 【每日一题】一起冲击蓝桥杯吧——Day4【蓝桥真题一起练】
  19. 解决Win7安装C++ Redistributable2015失败
  20. 十本经典JavaScript书籍

热门文章

  1. mysql如何重复_mysql 处理重复数据
  2. android手机存储速度慢,安卓内存泄露后台应用被迫关闭、系统速度慢的解决方法...
  3. 微信小程序引用php函数,微信小程序Page中data数据操作和函数调用详细介绍
  4. mongodb java and or,【MongoDB】-Java实现对mongodb的And、Or、In操作
  5. android平台代号、版本、API 级别和 NDK 版本
  6. Fragment学习1--生命周期
  7. 基于JAVA+SpringMVC+Mybatis+MYSQL的二手电动车交易系统
  8. 基于JAVA+Servlet+JSP+MYSQL的在线购物系统
  9. django.template.exceptions.TemplateSyntaxError: ‘staticfiles‘ is not a registered tag library. Must
  10. PostgreSQL函数(存储过程)----笔记