Posts

Showing posts from April, 2011

Pass Exam Oracle PL/SQL Developer Certified Associate

Image
I have passed the 2st paper of Oracle Certificate Associate track i.e. Program with PL/SQL with 93% marks.Now i am Oracle Certified Associate . Now i am preparing Next Exam to become Oracle Forms Developer Certified Professional .

Important Shell Scripting Questions with Answers

What is $*? Its mainly used for showing up all params. This show all parameter values passed in shell script What does $# stand for? # will return the number of parameters that are passed as the command-line arguments. What does $? Return? $? will return exit status of command .0 if command gets successfully executed ,non-zero if command failed. What are Different types of shells? sh : the oldest shell csh : C shell ksh : Korn Shell bash : bourne again shell  How do you read arguments in a shell program – $1, $2? Shell script accepts parameters in following format… $1 would be the first command line argument, $2 the second, and so on $0 is the name of the script or function If your script has more than 9 params then accept in following way… ${12} : 12th param ${18} : 18th param What are the different kinds of loops available in shell script ? for, if, while, case What is the difference between a shell variable that is exported and the one that is not exported? The Shel

Pass Oracle Database 11g - SQL Fundamentals-I Exam

Image
On Friday 08-April-2011, I passed the 1st paper of Oracle Certificate Associate track i.e. Oracle Database 11g - SQL Fundamentals-I with 94% marks. Yaahoo Now i am preparing Next Exam to become Oracle PL/SQL Developer Certified Associate.