Latest Articles

Page 4
Oracle Linux 6.7 Installation steps

Oracle Linux 6.7 Installation steps

This material describes how to install Oracle Linux 6.7 on a VM machine that can then be used as a seed to install Oracle software products, like Oracle Database, Clusterware, Enterprise Manager, Weblogic.. etc

1,345
Configuring the Database Archiving Mode in Oracle 12C

Configuring the Database Archiving Mode in Oracle 12C

To back up the database while it is open (database open mode), or to be able to perform complete or point-in-time media recovery, you must enable the archiving of redo log files. To do so, you place the database in ARCHIVELOG mode.

379
Two sum problem | Java program

Two sum problem | Java program

Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order.

346
Advertisement
FizzBuzz problem | Java program

FizzBuzz problem | Java program

Write a program that outputs the string representation of numbers from 1 to n. but for multiples of three it should output "Fizz" instead of the number and for the multiples of five output "Buzz". For numbers which are multiples of both three and five output "FizzBuzz".

359