what is the main difference between c and c++?
Answer Posted / hasrs
if(@CALLTYPE='GETMIN')
BEGIN
select MIN_QUALIFICATION from TABLE_COURSE STUDENT_DETAIL
WHERE (COURSE_NAME=@COURSE_NAME)
END
--================ Function for GETTING MIN QUALIFICATION
OF SELECTED COURSE ENDS==============================-------
---
--================ Function for POPULATING
STUDENT=================================================--
if(@CALLTYPE='POPULATE')
begin
select
S.STUDENT_ID,S.FIRST_NAME ,S.lAST_NAME ,S.CITY,S.USER_ID,
Q.CLASS,Q.PERCENTAGE from STUDENT_DETAIL S join
QUALIFICATION Q on S.STUDENT_ID=Q.STUDENT_ID WHERE (
S.COURSE_APP=@SELECTCOURSE AND Q.CLASS=@MIN_QUAL and
Q.PERCENTAGE between @MIN AND @MAX)
end
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What is the main purpose of inheritance law?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
How can you overcome the diamond problem in inheritance?
What does sksksk mean in text slang?
What is oops and its features?
hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.
what type of question are asked in thoughtworks pair programming round ?
How do you define a class in oop?
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
When not to use object oriented programming?
Write a program to reverse a string using recursive function?
What is coupling in oops?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
What is encapsulation c#?