BCA Raipur - BCA Notes S-1

Post your notes and other just by mailing us at bcaraipur@live.com

BCA Raipur - BCA Notes S-2

Post your notes and other just by mailing us at bcaraipur@live.com

BCA Raipur - BCA Notes S-3

Post your notes and other just by mailing us at bcaraipur@live.com

BCA Raipur - BCA Notes S-4

Post your notes and other just by mailing us at bcaraipur@live.com

BCA Raipur - BCA Notes S-5

Post your notes and other just by mailing us at bcaraipur@live.com

google search

Popular Posts


Welcome to BCA Notes

>>>>>>>>>>>>>>>>

Visitors

Search This Blog

Blogger templates

Visitor Map


Friday 28 February 2014

oracle


oracle


oracle


oracle


oracle


Oracle


insert into emplrkb(eno,sal) values (109,15000);

select * from table name here emplrkb;

Oracle notes

select * from emplrkb;

//here emplrkb is a table name

oracle Notes

insert into emplrkb values ('kushal',360,30000);

Wednesday 26 February 2014

Re: coding link with commands

oracle classes



On 26 February 2014 16:28, rishabh kumar Jain <wonderishabh@gmail.com> wrote:
desc empl;



On 26 February 2014 16:21, rishabh kumar Jain <wonderishabh@gmail.com> wrote:
http://ora:5560/isqlplus

go to this link using any web browser with i.d. and password 
scott
tiger
then 
commands:-
create table empl(ename varchar2(25),eno number(3),sal number(5));


oracle classes

http://ora:5560/isqlplus

go to this link using any web browser with i.d. and password 
scott
tiger
then 
commands:-
create table empl(ename varchar2(25),eno number(3),sal number(5));

code using object and class to find factorial of any number using c++

#include<iostream.h>
class factorial
{
 public:
 int count,n,fact;
 public:
 void fun()
 {
  cout<<"Enter The No. :\n";
  cin>>n;
  count=1;
  fact=1;
  while(count!=n)
  {
   count++;
   fact = fact * count;
  }
  cout<<"Factorial Value is :\n"<<fact<<endl;
  
 }
};
main()
{
 class factorial f1;
 f1.fun();
 
 
}

coding link with commands

http://ora:5560/isqlplus

go to this link using any web browser with i.d. and password 
scott
tiger
then 
commands:-
create table empl(ename varchar2(25),eno number(3),sal number(5));