Question
Easy
The operation which allows the combining of two relations by merging pairs of tuples, one from each relation, into a single tuple is
1
Select
2
Join
3
Union
4
Intersection
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter:
Topic:
Correct Answer
Option
Explanation
Read More
Similar Questions from HTET Exam - Level 3 - Year 2015
Question 1
Easy
Source :
HTET 2015
You can use the following C++ function to assign a value to a string variable
Question 2
Easy
Source :
HTET 2015
The function abort () is declared in the header file
Question 3
Easy
Source :
HTET 2016
........... Programming style is a single entry single exit program construct.
Question 4
Easy
Source :
HTET 2016
What is the output of the following C++ program? #include int x=7; void showx (); void showxagain (); void main() { showx (); showx ();…