Interviewer And Interviewee Guide

Oracle Database Interview Question:

What Are the Logical Operations?

Submitted by: Administrator
PL/SQL supports 3 logical operations as shown in the following sample script:

PROCEDURE proc_comparison AS
x BOOLEAN := TRUE;
y BOOLEAN := FALSE;
res BOOLEAN;
BEGIN
res = x AND y;
res = x OR y;
res = NOT x;
-- more statements
END;

Submitted by: Administrator

Read Online Oracle Database Job Interview Questions And Answers
Copyright 2007-2025 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.

Interview Questions Answers .ORG