面试题与答案
Freshers / Beginner level questions & answers
Ques 1. What is JDBC? Describe the steps needed to execute a SQL query using JDBC.
We can connect to databases from java using JDBC. It stands for Java DataBase Connectivity.
- Register the jdbc driver with the driver manager
- Establish jdbc connection
- Execute an sql statement
- Process the results
- Close the connection
- Register/load the jdbc driver with the driver manager.
- Establish the connection thru DriverManager.getConnection();
- Fire a SQL thru conn.executeStatement();
- Fetch the results in a result set.
- Process the results.
- Close statement/result set and connection object.
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 2. How many different types of JDBC drivers are present? Discuss them.
There are four JDBC driver types.
Type 1: JDBC-ODBC Bridge plus ODBC Driver:
The first type of JDBC driver is the JDBC-ODBC Bridge. It is a driver that provides JDBC access to databases through ODBC drivers. The ODBC driver must be configured on the client for the bridge to work. This driver type is commonly used for prototyping or when there is no JDBC driver available for a particular DBMS.
Type 2: Native-API partly-Java Driver:
The Native to API driver converts JDBC commands to DBMS-specific native calls. This is much like the restriction of Type 1 drivers. The client must have some binary code loaded on its machine. These drivers do have an advantage over Type 1 d'rivers because they interface directly with the database.
Type 3: JDBC-Net Pure Java Driver:
The JDBC-Net drivers are a three-tier solution. This type of driver translates JDBC calls into a database-independent network protocol that is sent to a middleware server. This server then translates this DBMS-independent protocol into a DBMS-specific protocol, which is sent to a particular database. The results are then routed back through the middleware server and sent back to the client. This type of solution makes it possible to implement a pure Java client. It also makes it possible to swap databases without affecting the client.
Type 4: Native-Protocol Pure Java Driver:
These are pure Java drivers that communicate directly with the vendor's database. They do this by converting JDBC commands directly into the database engine's native protocol. This driver has no additional translation or middleware layer, which improves performance tremendously.
What does the "static" keyword mean in front of a variable or a method or a class?
- Means a class level variable
static method:
-Does not have "this". It is not allowed to access the not static members of the class.
can be invoked enev before a single instance of a class is created.
eg: main
static class:
No such thing.
static free floating block:
It is executed at the time the class is loaded. There can be multiple such blocks. This may be useful to load native libraries when using native methods.
eg:
native void doThis(){
static{
System.loadLibrary("myLibrary.lib");
}
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 3. What are the different driver types available in JDBC?
- A JDBC-ODBC bridge
- A native-API partly Java technology-enabled driver
- A net-protocol fully Java technology-enabled driver
- A native-protocol fully Java technology-enabled driver
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 4. How can you load the drivers?
Loading the driver or drivers you want to use is very simple and involves just one line of code. If, for example, you want to use the JDBC-ODBC Bridge driver, the following code will load it:
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Your driver documentation will give you the class name to use. For instance, if the class name is jdbc.DriverXYZ, you would load the driver with the following line of code:
Class.forName("jdbc.DriverXYZ");
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 5. What will Class.forName do while loading drivers?
It is used to create an instance of a driver and register it with the DriverManager. When you have loaded a driver, it is available for making a connection with a DBMS.
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 6. How can you make the connection?
To establish a connection you need to have the appropriate driver connect to the DBMS.
String url = "jdbc:odbc:WithoutBook";Connection con = DriverManager.getConnection(url, "Username", "Password");
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 7. How can you create JDBC statements and what are they?
A Statement object is what sends your SQL statement to the DBMS. You simply create a Statement object and then execute it, supplying the appropriate execute method with the SQL statement you want to send.
Statement stmt = con.createStatement();
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 8. How can you retrieve data from the ResultSet?
JDBC returns results in a ResultSet object, so we need to declare an instance of the class ResultSet to hold our results. The following code demonstrates declaring the ResultSet object:
ResultSet rs = stmt.executeQuery("SELECT NAME,SAL FROM EMPLOYEE");
String s = rs.getString("NAME");
The method getString is invoked on the ResultSet object (rs), so getString() will retrieve (get) the value stored in the column NAME in the current row of rs. Note: rs is ResultSet variable name here.
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 9. What are the different types of Statements?
- Regular statement (use createStatement method)
- prepared statement (use prepareStatement method)
- callable statement (use prepareCall)
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 10. How can you use PreparedStatement?
This special type of statement is derived from class Statement. If you need a Statement object to execute many times, it will normally make sense to use a PreparedStatement object instead.
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 11. What does setAutoCommit do?
When a connection is created, it is in auto-commit mode. This means that each individual SQL statement is treated as a transaction and will be automatically committed right after it is executed. The way to allow two or more statements to be grouped into a transaction is to disable auto-commit mode:
con.setAutoCommit(false);
Once auto-commit mode is disabled, no SQL statements will be committed until you call the method commit explicitly.
con.setAutoCommit(false);
PreparedStatement updateSales =
con.prepareStatement( "UPDATE EMPLOYEE SET SAL = ? WHERE EMP_NAME LIKE ?");
updateSales.setInt(1, 50000); updateSales.setString(2, "Arindam");
updateSales.executeUpdate();
PreparedStatement updateTotal =
con.prepareStatement("UPDATE EMPLOYEE SET TOTAL = TOTAL + ? WHERE EMP_NAME LIKE ?");
updateTotal.setInt(1, 50000);
updateTotal.setString(2, "Arindam");
updateTotal.executeUpdate();
con.commit();
con.setAutoCommit(true);
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 12. How do you call a stored procedure from JDBC?
The first step is to create a CallableStatement object. As with Statement an and PreparedStatement objects, this is done with an open
Connection object. A CallableStatement object contains a call to a stored procedure.
CallableStatement cs = con.prepareCall("{call SHOW_EMPLOYEES}");
ResultSet rs = cs.executeQuery();
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 13. What are the steps involved in establishing a JDBC connection?
involves two steps: loading the JDBC driver and making the connection.
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 14. What is JDBC Driver?
The JDBC Driver provides vendor-specific implementations of the abstract classes provided by the JDBC API. This driver is used to connect to the database.
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 15. What are the different JDB drivers available?
There are mainly four type of JDBC drivers available. They are:
Type 1 : JDBC-ODBC Bridge Driver - A JDBC-ODBC bridge provides JDBC API access via one or more ODBC drivers. Note that some ODBC native code and in many cases native database client code must be loaded on each client machine that uses this type of driver. Hence, this kind of driver is generally most appropriate when automatic installation and downloading of a Java technology application is not important. For information on the JDBC-ODBC bridge driver provided by Sun.
Type 2: Native API Partly Java Driver- A native-API partly Java technology-enabled driver converts JDBC calls into calls on the client API for Oracle, Sybase, Informix, DB2, or other DBMS. Note that, like the bridge driver, this style of driver requires that some binary code be loaded on each client machine.
Type 3: Network protocol Driver- A net-protocol fully Java technology-enabled driver translates JDBC API calls into a DBMS-independent net protocol which is then translated to a DBMS protocol by a server. This net server middleware is able to connect all of its Java technology-based clients to many different databases. The specific protocol used depends on the vendor. In general, this is the most flexible JDBC API alternative. It is likely that all vendors of this solution will provide products suitable for Intranet use. In order for these products to also support Internet access they must handle the additional requirements for security, access through firewalls, etc., that the Web imposes. Several vendors are adding JDBC technology-based drivers to their existing database middleware products.
Type 4: JDBC Net pure Java Driver - A native-protocol fully Java technology-enabled driver converts JDBC technology calls into the network protocol used by DBMSs directly. This allows a direct call from the client machine to the DBMS server and is a practical solution for Intranet access. Since many of these protocols are proprietary the database vendors themselves will be the primary source for this style of driver. Several database vendors have these in progress.
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 16. What are the different JDB drivers available?
There are mainly four type of JDBC drivers available. They are:
Type 1 : JDBC-ODBC Bridge Driver - A JDBC-ODBC bridge provides JDBC API access via one or more ODBC drivers. Note that some ODBC native code and in many cases native database client code must be loaded on each client machine that uses this type of driver. Hence, this kind of driver is generally most appropriate when automatic installation and downloading of a Java technology application is not important. For information on the JDBC-ODBC bridge driver provided by Sun.
Type 2: Native API Partly Java Driver- A native-API partly Java technology-enabled driver converts JDBC calls into calls on the client API for Oracle, Sybase, Informix, DB2, or other DBMS. Note that, like the bridge driver, this style of driver requires that some binary code be loaded on each client machine.
Type 3: Network protocol Driver- A net-protocol fully Java technology-enabled driver translates JDBC API calls into a DBMS-independent net protocol which is then translated to a DBMS protocol by a server. This net server middleware is able to connect all of its Java technology-based clients to many different databases. The specific protocol used depends on the vendor. In general, this is the most flexible JDBC API alternative. It is likely that all vendors of this solution will provide products suitable for Intranet use. In order for these products to also support Internet access they must handle the additional requirements for security, access through firewalls, etc., that the Web imposes. Several vendors are adding JDBC technology-based drivers to their existing database middleware products.
Type 4: JDBC Net pure Java Driver - A native-protocol fully Java technology-enabled driver converts JDBC technology calls into the network protocol used by DBMSs directly. This allows a direct call from the client machine to the DBMS server and is a practical solution for Intranet access. Since many of these protocols are proprietary the database vendors themselves will be the primary source for this style of driver. Several database vendors have these in progress.
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 17. What is the fastest type of JDBC driver?
Type 4 (JDBC Net pure Java Driver) is the fastest JDBC driver. Type 1 and Type 3 drivers will be slower than Type 2 drivers (the database calls are make at least three translations versus two), and Type 4 drivers are the fastest (only one translation).
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 18. Is the JDBC-ODBC Bridge multi-threaded?
No. The JDBC-ODBC Bridge does not support multi threading. The JDBC-ODBC Bridge uses synchronized methods to serialize all of the calls that it makes to ODBC. Multi-threaded Java programs may use the Bridge, but they won't get the advantages of multi-threading.
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Ques 19. How do you handle your own transaction?
Connection Object has a method called setAutocommit ( boolean flag) . For handling our own transaction we can set the parameter to false and begin your transaction . Finally commit the transaction by calling the commit method.
保存以便复习
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
Most helpful rated by users:
- What is JDBC? Describe the steps needed to execute a SQL query using JDBC.
- What are the steps involved in establishing a JDBC connection?
- Is JDBC-ODBC bridge multi-threaded?
- Does the JDBC-ODBC Bridge support multiple concurrent open statements per connection?
- What are the different driver types available in JDBC?
相关差异对比
Related interview subjects
| Java Applet 面试题与答案 - Total 29 questions |
| Java Mail 面试题与答案 - Total 27 questions |
| Google Gson 面试题与答案 - Total 8 questions |
| Java 21 面试题与答案 - Total 21 questions |
| RMI 面试题与答案 - Total 31 questions |
| Java Support 面试题与答案 - Total 30 questions |
| Apache Camel 面试题与答案 - Total 20 questions |
| Struts 面试题与答案 - Total 84 questions |
| JAXB 面试题与答案 - Total 18 questions |
| J2EE 面试题与答案 - Total 25 questions |
| JUnit 面试题与答案 - Total 24 questions |
| Java OOPs 面试题与答案 - Total 30 questions |
| Apache Tapestry 面试题与答案 - Total 9 questions |
| JSP 面试题与答案 - Total 49 questions |
| Java Concurrency 面试题与答案 - Total 30 questions |
| JDBC 面试题与答案 - Total 27 questions |
| Java 11 面试题与答案 - Total 24 questions |
| Java Garbage Collection 面试题与答案 - Total 30 questions |
| Java Swing 面试题与答案 - Total 27 questions |
| Java Design Patterns 面试题与答案 - Total 15 questions |
| Spring Framework 面试题与答案 - Total 53 questions |
| JPA 面试题与答案 - Total 41 questions |
| JSF 面试题与答案 - Total 24 questions |
| Java 8 面试题与答案 - Total 30 questions |
| Hibernate 面试题与答案 - Total 52 questions |
| JMS 面试题与答案 - Total 64 questions |
| Java 17 面试题与答案 - Total 20 questions |
| Java Beans 面试题与答案 - Total 57 questions |
| Java Exception Handling 面试题与答案 - Total 30 questions |
| Spring Boot 面试题与答案 - Total 50 questions |
| Servlets 面试题与答案 - Total 34 questions |
| Kotlin 面试题与答案 - Total 30 questions |
| EJB 面试题与答案 - Total 80 questions |
| Java 15 面试题与答案 - Total 16 questions |
| Java Multithreading 面试题与答案 - Total 30 questions |
| Apache Wicket 面试题与答案 - Total 26 questions |
| Core Java 面试题与答案 - Total 306 questions |
| JBoss 面试题与答案 - Total 14 questions |
| Log4j 面试题与答案 - Total 35 questions |
All interview subjects
| C# 面试题与答案 - Total 41 questions |
| LINQ 面试题与答案 - Total 20 questions |
| ASP .NET 面试题与答案 - Total 31 questions |
| Microsoft .NET 面试题与答案 - Total 60 questions |
| ASP 面试题与答案 - Total 82 questions |
| IBM Watson 面试题与答案 - Total 30 questions |
| Perplexity AI 面试题与答案 - Total 40 questions |
| ChatGPT 面试题与答案 - Total 20 questions |
| NLP 面试题与答案 - Total 30 questions |
| AI Agents (Agentic AI) 面试题与答案 - Total 50 questions |
| OpenCV 面试题与答案 - Total 36 questions |
| Amazon SageMaker 面试题与答案 - Total 30 questions |
| TensorFlow 面试题与答案 - Total 30 questions |
| Hugging Face 面试题与答案 - Total 30 questions |
| Gemini AI 面试题与答案 - Total 50 questions |
| Artificial Intelligence (AI) 面试题与答案 - Total 47 questions |
| Oracle AI Agents 面试题与答案 - Total 50 questions |
| Machine Learning 面试题与答案 - Total 30 questions |
| Google Cloud AI 面试题与答案 - Total 30 questions |
| Scala 面试题与答案 - Total 48 questions |
| Swift 面试题与答案 - Total 49 questions |
| Golang 面试题与答案 - Total 30 questions |
| Embedded C 面试题与答案 - Total 30 questions |
| VBA 面试题与答案 - Total 30 questions |
| C++ 面试题与答案 - Total 142 questions |
| COBOL 面试题与答案 - Total 50 questions |
| R Language 面试题与答案 - Total 30 questions |
| Python Coding 面试题与答案 - Total 20 questions |
| CCNA 面试题与答案 - Total 40 questions |
| Oracle Cloud Infrastructure (OCI) 面试题与答案 - Total 100 questions |
| AWS 面试题与答案 - Total 87 questions |
| Azure Data Factory 面试题与答案 - Total 30 questions |
| Microsoft Azure 面试题与答案 - Total 35 questions |
| OpenStack 面试题与答案 - Total 30 questions |
| ServiceNow 面试题与答案 - Total 30 questions |
| Snowflake 面试题与答案 - Total 30 questions |
| Oracle APEX 面试题与答案 - Total 23 questions |
| PDPA 面试题与答案 - Total 20 questions |
| OSHA 面试题与答案 - Total 20 questions |
| HIPPA 面试题与答案 - Total 20 questions |
| PHIPA 面试题与答案 - Total 20 questions |
| FERPA 面试题与答案 - Total 20 questions |
| DPDP 面试题与答案 - Total 30 questions |
| PIPEDA 面试题与答案 - Total 20 questions |
| CCPA 面试题与答案 - Total 20 questions |
| GDPR 面试题与答案 - Total 30 questions |
| HITRUST 面试题与答案 - Total 20 questions |
| LGPD 面试题与答案 - Total 20 questions |
| Data Structures 面试题与答案 - Total 49 questions |
| Computer Networking 面试题与答案 - Total 65 questions |
| Microsoft Excel 面试题与答案 - Total 37 questions |
| Computer Basics 面试题与答案 - Total 62 questions |
| Computer Science 面试题与答案 - Total 50 questions |
| MS Word 面试题与答案 - Total 50 questions |
| Operating System 面试题与答案 - Total 22 questions |
| Tips and Tricks 面试题与答案 - Total 30 questions |
| PoowerPoint 面试题与答案 - Total 50 questions |
| Pandas 面试题与答案 - Total 30 questions |
| Deep Learning 面试题与答案 - Total 29 questions |
| PySpark 面试题与答案 - Total 30 questions |
| Flask 面试题与答案 - Total 40 questions |
| PyTorch 面试题与答案 - Total 25 questions |
| Data Science 面试题与答案 - Total 23 questions |
| SciPy 面试题与答案 - Total 30 questions |
| Generative AI 面试题与答案 - Total 30 questions |
| NumPy 面试题与答案 - Total 30 questions |
| Python 面试题与答案 - Total 106 questions |
| Python Pandas 面试题与答案 - Total 48 questions |
| Python Matplotlib 面试题与答案 - Total 30 questions |
| Django 面试题与答案 - Total 50 questions |
| MariaDB 面试题与答案 - Total 40 questions |
| DBMS 面试题与答案 - Total 73 questions |
| Apache Hive 面试题与答案 - Total 30 questions |
| SSIS 面试题与答案 - Total 30 questions |
| PostgreSQL 面试题与答案 - Total 30 questions |
| Teradata 面试题与答案 - Total 20 questions |
| SQL Query 面试题与答案 - Total 70 questions |
| SQLite 面试题与答案 - Total 53 questions |
| Cassandra 面试题与答案 - Total 25 questions |
| Neo4j 面试题与答案 - Total 44 questions |
| MSSQL 面试题与答案 - Total 50 questions |
| OrientDB 面试题与答案 - Total 46 questions |
| SQL 面试题与答案 - Total 152 questions |
| Data Warehouse 面试题与答案 - Total 20 questions |
| IBM DB2 面试题与答案 - Total 40 questions |
| Data Mining 面试题与答案 - Total 30 questions |
| Elasticsearch 面试题与答案 - Total 61 questions |
| Oracle 面试题与答案 - Total 34 questions |
| MongoDB 面试题与答案 - Total 27 questions |
| AWS DynamoDB 面试题与答案 - Total 46 questions |
| Entity Framework 面试题与答案 - Total 46 questions |
| MySQL 面试题与答案 - Total 108 questions |
| Data Modeling 面试题与答案 - Total 30 questions |
| Redis Cache 面试题与答案 - Total 20 questions |
| Data Engineer 面试题与答案 - Total 30 questions |
| Robotics 面试题与答案 - Total 28 questions |
| AutoCAD 面试题与答案 - Total 30 questions |
| Power System 面试题与答案 - Total 28 questions |
| Electrical Engineering 面试题与答案 - Total 30 questions |
| Verilog 面试题与答案 - Total 30 questions |
| Digital Electronics 面试题与答案 - Total 38 questions |
| VLSI 面试题与答案 - Total 30 questions |
| Software Engineering 面试题与答案 - Total 27 questions |
| MATLAB 面试题与答案 - Total 25 questions |
| Civil Engineering 面试题与答案 - Total 30 questions |
| Electrical Machines 面试题与答案 - Total 29 questions |
| Oracle CXUnity 面试题与答案 - Total 29 questions |
| Web Services 面试题与答案 - Total 10 questions |
| Salesforce Lightning 面试题与答案 - Total 30 questions |
| IBM Integration Bus 面试题与答案 - Total 30 questions |
| Power BI 面试题与答案 - Total 24 questions |
| OIC 面试题与答案 - Total 30 questions |
| Web API 面试题与答案 - Total 31 questions |
| Dell Boomi 面试题与答案 - Total 30 questions |
| Salesforce 面试题与答案 - Total 57 questions |
| IBM DataStage 面试题与答案 - Total 20 questions |
| Talend 面试题与答案 - Total 34 questions |
| TIBCO 面试题与答案 - Total 30 questions |
| Informatica 面试题与答案 - Total 48 questions |
| Java Applet 面试题与答案 - Total 29 questions |
| Java Mail 面试题与答案 - Total 27 questions |
| Google Gson 面试题与答案 - Total 8 questions |
| Java 21 面试题与答案 - Total 21 questions |
| RMI 面试题与答案 - Total 31 questions |
| Java Support 面试题与答案 - Total 30 questions |
| Apache Camel 面试题与答案 - Total 20 questions |
| Struts 面试题与答案 - Total 84 questions |
| JAXB 面试题与答案 - Total 18 questions |
| J2EE 面试题与答案 - Total 25 questions |
| JUnit 面试题与答案 - Total 24 questions |
| Java OOPs 面试题与答案 - Total 30 questions |
| Apache Tapestry 面试题与答案 - Total 9 questions |
| JSP 面试题与答案 - Total 49 questions |
| Java Concurrency 面试题与答案 - Total 30 questions |
| JDBC 面试题与答案 - Total 27 questions |
| Java 11 面试题与答案 - Total 24 questions |
| Java Garbage Collection 面试题与答案 - Total 30 questions |
| Java Swing 面试题与答案 - Total 27 questions |
| Java Design Patterns 面试题与答案 - Total 15 questions |
| Spring Framework 面试题与答案 - Total 53 questions |
| JPA 面试题与答案 - Total 41 questions |
| JSF 面试题与答案 - Total 24 questions |
| Java 8 面试题与答案 - Total 30 questions |
| Hibernate 面试题与答案 - Total 52 questions |
| JMS 面试题与答案 - Total 64 questions |
| Java 17 面试题与答案 - Total 20 questions |
| Java Beans 面试题与答案 - Total 57 questions |
| Java Exception Handling 面试题与答案 - Total 30 questions |
| Spring Boot 面试题与答案 - Total 50 questions |
| Servlets 面试题与答案 - Total 34 questions |
| Kotlin 面试题与答案 - Total 30 questions |
| EJB 面试题与答案 - Total 80 questions |
| Java 15 面试题与答案 - Total 16 questions |
| Java Multithreading 面试题与答案 - Total 30 questions |
| Apache Wicket 面试题与答案 - Total 26 questions |
| Core Java 面试题与答案 - Total 306 questions |
| JBoss 面试题与答案 - Total 14 questions |
| Log4j 面试题与答案 - Total 35 questions |
| ITIL 面试题与答案 - Total 25 questions |
| Finance 面试题与答案 - Total 30 questions |
| JIRA 面试题与答案 - Total 30 questions |
| SAP MM 面试题与答案 - Total 30 questions |
| SAP ABAP 面试题与答案 - Total 24 questions |
| SCCM 面试题与答案 - Total 30 questions |
| Tally 面试题与答案 - Total 30 questions |
| Pega 面试题与答案 - Total 30 questions |
| Android 面试题与答案 - Total 14 questions |
| Mobile Computing 面试题与答案 - Total 20 questions |
| Xamarin 面试题与答案 - Total 31 questions |
| iOS 面试题与答案 - Total 52 questions |
| Ionic 面试题与答案 - Total 32 questions |
| Kubernetes 面试题与答案 - Total 30 questions |
| Microservices 面试题与答案 - Total 30 questions |
| Apache Kafka 面试题与答案 - Total 38 questions |
| Tableau 面试题与答案 - Total 20 questions |
| Adobe AEM 面试题与答案 - Total 50 questions |
| IAS 面试题与答案 - Total 56 questions |
| PHP OOPs 面试题与答案 - Total 30 questions |
| OOPs 面试题与答案 - Total 30 questions |
| Fashion Designer 面试题与答案 - Total 20 questions |
| Desktop Support 面试题与答案 - Total 30 questions |
| CICS 面试题与答案 - Total 30 questions |
| Yoga Teachers Training 面试题与答案 - Total 30 questions |
| Nursing 面试题与答案 - Total 40 questions |
| Linked List 面试题与答案 - Total 15 questions |
| Dynamic Programming 面试题与答案 - Total 30 questions |
| SharePoint 面试题与答案 - Total 28 questions |
| Behavioral 面试题与答案 - Total 29 questions |
| School Teachers 面试题与答案 - Total 25 questions |
| Language in C 面试题与答案 - Total 80 questions |
| Statistics 面试题与答案 - Total 30 questions |
| Digital Marketing 面试题与答案 - Total 40 questions |
| Apache Spark 面试题与答案 - Total 24 questions |
| Full-Stack Developer 面试题与答案 - Total 60 questions |
| IIS 面试题与答案 - Total 30 questions |
| System Design 面试题与答案 - Total 30 questions |
| VISA 面试题与答案 - Total 30 questions |
| Google Analytics 面试题与答案 - Total 30 questions |
| Cloud Computing 面试题与答案 - Total 42 questions |
| BPO 面试题与答案 - Total 48 questions |
| ANT 面试题与答案 - Total 10 questions |
| SEO 面试题与答案 - Total 51 questions |
| SAS 面试题与答案 - Total 24 questions |
| Control System 面试题与答案 - Total 28 questions |
| Agile Methodology 面试题与答案 - Total 30 questions |
| HR Questions 面试题与答案 - Total 49 questions |
| REST API 面试题与答案 - Total 52 questions |
| Content Writer 面试题与答案 - Total 30 questions |
| Banking 面试题与答案 - Total 20 questions |
| Checkpoint 面试题与答案 - Total 20 questions |
| Blockchain 面试题与答案 - Total 29 questions |
| Technical Support 面试题与答案 - Total 30 questions |
| Mainframe 面试题与答案 - Total 20 questions |
| Hadoop 面试题与答案 - Total 40 questions |
| Chemistry 面试题与答案 - Total 50 questions |
| Docker 面试题与答案 - Total 30 questions |
| Sales 面试题与答案 - Total 30 questions |
| Nature 面试题与答案 - Total 20 questions |
| Interview Tips 面试题与答案 - Total 30 questions |
| College Teachers 面试题与答案 - Total 30 questions |
| SDLC 面试题与答案 - Total 75 questions |
| Cryptography 面试题与答案 - Total 40 questions |
| RPA 面试题与答案 - Total 26 questions |
| Blue Prism 面试题与答案 - Total 20 questions |
| Memcached 面试题与答案 - Total 28 questions |
| GIT 面试题与答案 - Total 30 questions |
| DevOps 面试题与答案 - Total 45 questions |
| Accounting 面试题与答案 - Total 30 questions |
| SSB 面试题与答案 - Total 30 questions |
| Algorithm 面试题与答案 - Total 50 questions |
| Business Analyst 面试题与答案 - Total 40 questions |
| Splunk 面试题与答案 - Total 30 questions |
| Sqoop 面试题与答案 - Total 30 questions |
| JSON 面试题与答案 - Total 16 questions |
| OSPF 面试题与答案 - Total 30 questions |
| Insurance 面试题与答案 - Total 30 questions |
| Scrum Master 面试题与答案 - Total 30 questions |
| Accounts Payable 面试题与答案 - Total 30 questions |
| Computer Graphics 面试题与答案 - Total 25 questions |
| IoT 面试题与答案 - Total 30 questions |
| Bitcoin 面试题与答案 - Total 30 questions |
| Active Directory 面试题与答案 - Total 30 questions |
| Laravel 面试题与答案 - Total 30 questions |
| XML 面试题与答案 - Total 25 questions |
| GraphQL 面试题与答案 - Total 32 questions |
| Ansible 面试题与答案 - Total 30 questions |
| Electron.js 面试题与答案 - Total 24 questions |
| ES6 面试题与答案 - Total 30 questions |
| RxJS 面试题与答案 - Total 29 questions |
| NodeJS 面试题与答案 - Total 30 questions |
| Vue.js 面试题与答案 - Total 30 questions |
| ExtJS 面试题与答案 - Total 50 questions |
| jQuery 面试题与答案 - Total 22 questions |
| Svelte.js 面试题与答案 - Total 30 questions |
| Shell Scripting 面试题与答案 - Total 50 questions |
| Next.js 面试题与答案 - Total 30 questions |
| Knockout JS 面试题与答案 - Total 25 questions |
| TypeScript 面试题与答案 - Total 38 questions |
| PowerShell 面试题与答案 - Total 27 questions |
| Terraform 面试题与答案 - Total 30 questions |
| JCL 面试题与答案 - Total 20 questions |
| JavaScript 面试题与答案 - Total 59 questions |
| Ajax 面试题与答案 - Total 58 questions |
| Express.js 面试题与答案 - Total 30 questions |
| Ethical Hacking 面试题与答案 - Total 40 questions |
| Cyber Security 面试题与答案 - Total 50 questions |
| PII 面试题与答案 - Total 30 questions |
| Data Protection Act 面试题与答案 - Total 20 questions |
| BGP 面试题与答案 - Total 30 questions |
| Ubuntu 面试题与答案 - Total 30 questions |
| Linux 面试题与答案 - Total 43 questions |
| Unix 面试题与答案 - Total 105 questions |
| Weblogic 面试题与答案 - Total 30 questions |
| Tomcat 面试题与答案 - Total 16 questions |
| Glassfish 面试题与答案 - Total 8 questions |
| TestNG 面试题与答案 - Total 38 questions |
| Postman 面试题与答案 - Total 30 questions |
| SDET 面试题与答案 - Total 30 questions |
| UiPath 面试题与答案 - Total 38 questions |
| Quality Assurance 面试题与答案 - Total 56 questions |
| Selenium 面试题与答案 - Total 40 questions |
| Kali Linux 面试题与答案 - Total 29 questions |
| Mobile Testing 面试题与答案 - Total 30 questions |
| API Testing 面试题与答案 - Total 30 questions |
| Appium 面试题与答案 - Total 30 questions |
| ETL Testing 面试题与答案 - Total 20 questions |
| QTP 面试题与答案 - Total 44 questions |
| Cucumber 面试题与答案 - Total 30 questions |
| PHP 面试题与答案 - Total 27 questions |
| Oracle JET(OJET) 面试题与答案 - Total 54 questions |
| Frontend Developer 面试题与答案 - Total 30 questions |
| Zend Framework 面试题与答案 - Total 24 questions |
| RichFaces 面试题与答案 - Total 26 questions |
| HTML 面试题与答案 - Total 27 questions |
| Flutter 面试题与答案 - Total 25 questions |
| CakePHP 面试题与答案 - Total 30 questions |
| React 面试题与答案 - Total 40 questions |
| React Native 面试题与答案 - Total 26 questions |
| Angular JS 面试题与答案 - Total 21 questions |
| Web Developer 面试题与答案 - Total 50 questions |
| Angular 8 面试题与答案 - Total 32 questions |
| Dojo 面试题与答案 - Total 23 questions |
| GWT 面试题与答案 - Total 27 questions |
| Symfony 面试题与答案 - Total 30 questions |
| Ruby On Rails 面试题与答案 - Total 74 questions |
| CSS 面试题与答案 - Total 74 questions |
| Yii 面试题与答案 - Total 30 questions |
| Angular 面试题与答案 - Total 50 questions |