Javascript Program To Check For Balanced Brackets In An Expression (Well-Formedness) Using Stack
Given an expression string exp, write a program to examine whether the pairs and the orders of “{“, “}”, “(“, “)”, “[“, “]” are correct in exp....
read more
Javascript Program for Largest Sum Contiguous Subarray
Write an efficient program to find the sum of contiguous subarray within a one-dimensional array of numbers that has the largest sum....
read more
Oracle Interview Experience (Internship)
Academic Year: Third Year Undergraduate...
read more
Javascript Program To Merge Two Sorted Lists (In-Place)
Given two sorted lists, merge them so as to produce a combined sorted list (without using extra space).Examples:...
read more
Javascript Program For Stock Buy Sell To Maximize Profit
The cost of a stock on each day is given in an array, find the max profit that you can make by buying and selling in those days. For example, if the given array is {100, 180, 260, 310, 40, 535, 695}, the maximum profit can earned by buying on day 0, selling on day 3. Again buy on day 4 and sell on day 6. If the given array of prices is sorted in decreasing order, then profit cannot be earned at all....
read more
Introduction to Oracle Apex
Oracle Application Express (Oracle Apex) formerly called HTML DB. It is a rapid web application development tool for Oracle databases & available by default in all oracle database installations. It is developing a fully interactive, web-based system for data that resides within the Oracle database. Using only a web browser and limited programming experience, you can develop professional applications that are both fast and secure....
read more
Javascript Program For Removing Duplicates From A Sorted Linked List
Write a function that takes a list sorted in non-decreasing order and deletes any duplicate nodes from the list. The list should only be traversed once. For example if the linked list is 11->11->11->21->43->43->60 then removeDuplicates() should convert the list to 11->21->43->60....
read more
Detect cycle in an undirected graph
Given an undirected graph, The task is to check if there is a cycle in the given graph....
read more
Detect Cycle in a Directed Graph
Given the root of a Directed graph, The task is to check whether the graph contains a cycle or not....
read more
Queue using Stacks
The problem is opposite of this post. We are given a stack data structure with push and pop operations, the task is to implement a queue using instances of stack data structure and operations on them....
read more
Oracle Interview Experience | Server Technology Role Full Time (On-Campus Sept 2020)
Oracle came to our campus in Sept 2020, for a server technology profile. All rounds were audio and video proctored. The entire interview process was on zoom meetings. It was a very smooth virtual experience. There were counter rooms inside zoom meetings for post and pre-interview sessions....
read more
How to Create User in Oracle Database ?
In Oracle Database there are different types of user accounts like system, sys, hr, and many more. These user accounts are by default created by Oracle....
read more