Searching for "interface"

Q:

First payments bank in India to integrate the Unified Payments Interface (UPI) on its digital platform is-

A) Paytm Payment Bank B) Airtel Payment Bank
C) India Post Payment Bank D) FINO Payment Bank
 
Answer & Explanation Answer: B) Airtel Payment Bank

Explanation:

Airtel Payments Bank has become the first payments bank in India to integrate the Unified Payments Interface (UPI) on its digital platform.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

Q:

In Computer programming API is set of subroutinedefinitions, protocols, and tools for building software andapplications. Which among the following is an applicationprogramming interface for the programming language Java,which defines how a client may access a database?

A) J2EE B) JDK
C) JAVA SE D) JDBC
 
Answer & Explanation Answer: D) JDBC

Explanation:

Java Database Connectivity (JDBC) is an applicationprogramming interface (API) for the programminglanguage Java, which defines how a client may accessa database. It is part of the Java Standard Editionplatform, from Oracle Corporation

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

Q:

The main interface in Windows and OS X is __________ interface.

A) Command-line B) Embedded
C) Neural D) Graphical
 
Answer & Explanation Answer: D) Graphical

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Operating Systems
Exam Prep: Bank Exams
Job Role: Analyst , Bank Clerk , IT Trainer

Q:

You have started your own company based upon PMI methodologies and have been contracted by the government to develope a new interface for one of its computer applications. You develope a solution and win the bid for the contract but encounter problems at the end of the project when the customer says that you did not fullfill their needs. You are throughly shocked. What is your conclusion of the situation?

A) There are always more customers available B) If the customer is not satisfied, the project is not successful
C) Change control management was not effective D) The customer did not communicate very well
 
Answer & Explanation Answer: B) If the customer is not satisfied, the project is not successful

Explanation:

Answer A is incorrect because without satisfied customers, we do not have potential for new projects. Answer C is incorrect because the change control management process would have likely resolved this problem. Answer D is incorrect because it is the project manager's responsibility to seek communication with the customer to set realistic expectations.

Report Error

View Answer Report Error Discuss

Filed Under: PMP Certification

Q:

What’s the difference between Enumeration and Iterator interfaces ?

Answer

Enumeration is twice as fast as compared to an Iterator and uses very less memory. However, the Iterator is much safer compared to Enumeration, because other threads are not able to modify the collection object that is currently traversed by the iterator. Also, Iteratorsallow the caller to remove elements from the underlying collection, something which is not possible with Enumerations.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

What are the basic interfaces of Java Collections Framework ?

Answer

Java Collections Framework provides a well designed set of interfaces and classes that support operations on a collections of objects. The most basic interfaces that reside in the Java Collections Framework are:


Collection, which represents a group of objects known as its elements.


Set, which is a collection that cannot contain duplicate elements.


List, which is an ordered collection and can contain duplicate elements.


Map, which is an object that maps keys to values and cannot contain duplicate keys.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

What is the difference between an Interface and an Abstract class ?

Answer

1.Main difference is methods of a Java interface are implicitly abstract and cannot have implementations. A Java abstract class can have instance methods that implements a default behavior.


2.Variables declared in a Java interface is by default final. An abstract class may contain non-final variables.


3.Members of a Java interface are public by default. A Java abstract class can have the usual flavors of class members like private, protected, etc..


4.Java interface should be implemented using keyword “implements”; A Java abstract class should be extended using keyword “extends”.


5.An interface can extend another Java interface only, an abstract class can extend another Java class and implement multiple Java interfaces.


6.A Java class can implement multiple interfaces but it can extend only one abstract class.


7.Interface is absolutely abstract and cannot be instantiated; A Java abstract class also cannot be instantiated, but can be invoked if a main() exists.


8.In comparison with java abstract classes, java interfaces are slow as it requires extra indirection.

Report Error

View answer Workspace Report Error Discuss

Subject: Java

Q:

What is the Set interface ?

Answer

- The Set interface provides methods for accessing the elements of a finite mathematical set


- Sets do not allow duplicate elements


- Contains no methods other than those inherited from Collection


- It adds the restriction that duplicate elements are prohibited


- Two Set objects are equal if they contain the same elements

Report Error

View answer Workspace Report Error Discuss

Subject: Java