SRM RMP-MCA -20.01.2024-AN

SRM RMP-MCA -20.01.2024-AN

Professional Development

15 Qs

quiz-placeholder

Similar activities

Nu ENE - Day 13 Vocabulary

Nu ENE - Day 13 Vocabulary

Professional Development

20 Qs

English

English

University - Professional Development

10 Qs

Industrial 7mo FINAL

Industrial 7mo FINAL

Professional Development

15 Qs

Verb to Be  - Present

Verb to Be - Present

Professional Development

14 Qs

Linguistics

Linguistics

University - Professional Development

15 Qs

FH3 U10 V, C, LP

FH3 U10 V, C, LP

Professional Development

17 Qs

school

school

1st Grade - Professional Development

10 Qs

There is

There is

1st Grade - Professional Development

17 Qs

SRM RMP-MCA -20.01.2024-AN

SRM RMP-MCA -20.01.2024-AN

Assessment

Quiz

English

Professional Development

Hard

Created by

CCC info@ccc.training

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Examine the structure of the student table: Student Table: sid, sname, contact_no Which one of these is an incorrect statement?
select sid student_rollnumber from student;
select sname as student_name from student;
select contact_no "student phone number" from student;
select sname as student name from student;

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which one of the following is a valid statement?
The concatenation operator is represented by pipe symbol(||)
The concatenation operator is links columns to other columns
The concatenation operator is links columns to arithmetic expressions or constants
All of the above

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Examine the structure of the student table: Student Table:sid,sname,contact_no,doj(date of join) Identify the query for deleting all details of students who joined eight years ago?
delete from student where months_between(sysdate,doj)>96
delete from student where years_between(sysdate,doj)>8
delete from student where months_between(doj,sysdate)>96
delete from student where years_between(doj,sysdate)>8

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which one is a valid statement?
to_char() function is used to convert number to characters
to_char() function is used to convert date to characters
to_char() function is used to convert characters to number
Both A and B

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Examine the structure of the STUDENT table: STUDENT_ID NUMBER Primary Key S_NAME VARCHAR2(25) S_BRANCH VARCHAR2(25) Identify the query for displying all details of students who's name start with 'K' and 3rd letter shoud be 'v'?
select S_NAME from STUDENT where S_NAME like 'K_v%'
select * from STUDENT where S_NAME like 'K%v_'
select student_id,s_name,s_branch from STUDENT where S_NAME like 'K_v%'
select * from STUDENT where S_NAME like 'k_v%'

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which one is a valid statement?
to_date() function is used to convert number to a valid date
to_date() function is used to convert date to characters
to_date() function is used to convert characters to a valid date
All of the above

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which one is a valid statement?
Group functions returns a single row based on groups of rows
Group functions can be appear in SELECT lists and HAVING clauses
Group functions can be appear in SELECT lists and not in HAVING clauses
except c

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?