i have to create a view in SQL as like in ORACLE DATA
EXPRESS EDITION
Answers were Sorted based on User's Feedback
Answer / mugdha taru
create view <view name> as select * from <table name> where
<condition>;
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / palsaniya sadikhasan, meta.
create <view name> as select * from <table name>;
| Is This Answer Correct ? | 2 Yes | 1 No |
What is the highest level of cohesion?
Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.
Can anyone please explain runtime polymorphism with a real time example??at what ciscumstances we go for it??
what is the usage of clas templates
In multiple inheritance , to create sub class object , is there need to create objects for its superclasses??? in java and c++ both. Actually i have some information that is , all available members from its superclasses , memory created in subclass obj , so no need to create object for its superclasses...??? Thanks in Advance
How many types of access specifier in c# and vb.net?
What is cohesion in oop?
What is polymorphism and why is it important?
Define a class to represent a bank account. Include the following members: Data Members: Name of the Depositor Account Number Type of Account Balance amount in the account Member Functions: To assign the initial values. To deposit an account. To withdraw an amount after checking the balance. Write a C++ main program to display account number, name and balance.
What is polymorphism programming?
What is encapsulation c#?
How to call a non virtual function in the derived class by using base class pointer