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
Why is static class not inherited?
What is polymorphism and why is it important?
Can main method override?
How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction
What is the use of oops?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
How is polymorphism achieved?
What are the 5 oop principles?
what is difference between class template and template class?
What is the benefit of oop?
What is multilevel inheritance explain with example?
Why is encapsulation used?
What is the main purpose of inheritance law?
when to use 'mutable' keyword and when to use 'const cast' in c++
Why do pointers exist?