recategorized by
1,848 views
1 votes
1 votes

$\text{Type-IV} JDBC$ driver is a driver

  1. which is written in $C++$
  2. which requires an intermediate layer
  3. which communicates through Java sockets
  4. which translates $JDBC$ function calls into $API$ not native to $DBMS$
recategorized by

1 Answer

Answer:

Related questions

9 votes
9 votes
2 answers
1
gatecse asked Dec 17, 2017
3,706 views
Consider the following $C$ function#include<stdio.h int main(void) { char c[]="ICRBCSIT17" char *p=c; printf("%s",c+2[p]-6[p]-1); return 0; }The output of the program is ...
3 votes
3 votes
2 answers
2
gatecse asked Dec 17, 2017
1,631 views
Consider the functionint func(int num) { int count=0; while(num) { count++; num>>=1; } return(count); }For $func(435)$ the value returned is$9$$8$$0$$10$
2 votes
2 votes
1 answer
3
gatecse asked Dec 17, 2017
2,117 views
Consider the functionint fun(x: integer) { If x>100 then fun=x-10; else fun=fun(fun(x+11)); }For the input $x=95$, the function will return$89$$90$$91$$92$
5 votes
5 votes
1 answer
4
gatecse asked Dec 17, 2017
1,432 views
Which one of the following are essential features of object-oriented language? A.Abstraction and encapsulation B.Strictly-typed C.Type-safe property coupled with sub-type...