Interview Questions

Q:

How can we know the number of days between two given dates using php?

Answer

<?php
$tomorrow = mktime(0, 0, 0, date("m") , date("d")+1, date("Y"));
$lastmonth = mktime(0, 0, 0, date("m")-1, date("d"), date("Y"));
echo ($tomorrow-$lastmonth)/86400;
?>

Report Error

View answer Workspace Report Error Discuss

Subject: PHP

0 1979
Q:

How to check that whether the file object is pointing a folder or not?

Answer

boolean isDirectory();

Report Error

View answer Workspace Report Error Discuss

Subject: Java

0 1978
Q:

SQL vs. PL/SQL

Answer

SQL is a structured query language while PL/SQL is an extension of SQL by introducing a procedural flow. PL/SQL has blocks of statements. PL/SQL works like other procedural languages and has concepts like control statements, sequential statements, exception handling etc.

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

0 1977
Q:

Which of the following identifies broadband internet connections?

A) IP, Wi-Fi, FTTP B) FTP, OSP, IP
C) OSP, cellular radio network, FTP D) DSL, Wi-Fi, fixed wireless
 
Answer & Explanation Answer: D) DSL, Wi-Fi, fixed wireless

Explanation:

Internet Service Provider (ISP) is a company offering access to internet. They offer various services:

1. Internet Access

2. Domain name registration

3. Dial-up access

4. Leased line access

 

There exist several ways to connect to the internet. Following are these connection types available:

* Dial-up Connection

* ISDN

* DSL

* Cable TV Internet connections

* Satellite Internet connections

* Wireless Internet Connections

Report Error

View Answer Report Error Discuss

Filed Under: Network Administration
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 1976
Q:

What is the need to code COMMITS in batch programs?

Answer

COMMIT statements are used to release locks which are required for that unit of work, and then permit a new unit of work. In other words, if COMMITS are not coded in the program and the program has been sent for execution, then while processing, in place of just going back to a few inserts since the nearest commit, the program has to go back to the inserts which were made during the entire run of the program. This extra process takes around twice or thrice the time taken normally.

Report Error

View answer Workspace Report Error Discuss

0 1975
Q:

What is the use of API’s in cloud services?

Answer

API stands for Application programming interface is very useful in cloud platforms as it allows easy implementation of it on the system. It removes the need to write full fledged programs. It provides the instructions to make the communication between one or more applications. It also allows easy to create application with ease and link the cloud services with other systems.

Report Error

View answer Workspace Report Error Discuss

Subject: Cloud Computing

0 1975
Q:

Explain CBA.

Answer

CBA – Collective Bargaining Agreement is the result of collective bargaining procedure. 


These agreements can be in one of the two forms: 


i.) Procedural agreement


ii.) Substantive agreement


Procedural agreements – They usually deal with the relationship between employees and employers to resolve individual and group issues. These are usually filed in the company’s rule book. 


Substantive agreements – This kind of an agreement deals with specific issues like basic pay, leave policy, bonus payment etc.

Report Error

View answer Workspace Report Error Discuss

Subject: Law

5 1974
Q:

What is the Oracle Web Cache?

Answer

Oracle Web Cache is a secure reverse proxy cache and a compression engine deployed between Browser and HTTP server, Browser and Content Management server to improve the performance of web sites by caching frequently accessed content. Oracle Web Cache supports:


- Static content caching


- Dynamic content caching


- Partial Page catching


- Request Filtering.

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

0 1974