| Back to Questions Page |
| |
| Question |
What is Stored procedure ? |
Rank |
Answer Posted By |
|
Question Submitted By :: Gurunadh |
| This Interview Question Asked @ Inspira-Technologies , Ibm |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Stored procedure is bunch of query. it more beneficial
then query.  |
| Arshi |
| |
| |
| Answer | Stored procedures are pre-compiled object in the Database
which is used to reduce the network traffic.  |
| Ravishankar |
| |
| |
| Question |
What is Assembly? |
Rank |
Answer Posted By |
|
Question Submitted By :: Gurunadh |
| This Interview Question Asked @ Inspira-Technologies |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | assembly is smallest unit of execution.  |
| Nutan |
| |
| |
|
|
| |
| Answer | *An assembly is the collection of exe and dll files ,
* An assenbly is the fundemental unit for application
development and development in the .net frame work.
an assembly contains a collection of types and resources
that are built to work togeather and form a logical unit of
functionality.  |
| Satyambabu |
| |
| |
| Question |
what is asp and asp.net ? |
Rank |
Answer Posted By |
|
Question Submitted By :: Gurunadh |
| This Interview Question Asked @ Inspira-Technologies |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Asp is technology comes with webserver iis.this is provided
in the form of dll file is called asp.dll.
this will support server side execution.
It supports scripting languages(vbscript,javascript).
Asp.net is a technology which provides set of
specifications for normal webapplications on webservices
and mobile applications.
this technology is intgrated with .Netframework.
it supports languages vb.net,c#, and vc++  |
| M_dasharatham |
| |
| |
| Answer | ASP is interpreter. and ASP.Net is compile base..asp.net is
centerlize Technology. supports languages vb.net,c#, and
vc++  |
| Kuldeep Khaware |
| |
| |
| Question |
i'm using WR 8.2 version to test a form developed using
ORACLE10g. The problem i'm facing is, the form has number
of edit objects in that only two objects are not able to
recognize by WR while running the script. ( if i FIND that
object in the GUI File it highlights the object but if i
press SHOW button not able to recognize) can anyone tell me
the reason for it?? |
Rank |
Answer Posted By |
|
Question Submitted By :: Suguna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | those two objects may not be the standard win object and
check there logical name, physical description and map it
to the nearst virtual object.  |
| Irayya |
| |
| |
| Answer | u can easily try this out by using the virtual object
method . i have faced this scenario while handling PDF file
and done with virtual object method.  |
| Prabaharan |
| |
| |
| Question |
in unix how to change old name to new name |
Rank |
Answer Posted By |
|
Question Submitted By :: Ravi148 |
| This Interview Question Asked @ Google , Iinfo |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | mv <old name> <new name> // for rename the file in the same
directory
mv <old name> /<absolute path>/<new name> for rename and
move the file in other diretory.  |
| Pravin Virkud |
| |
| |
| Answer | 1. open the file /etc/sysconfig/network and change the
parameter HOSTNAME=<old name> to new name.
2. restart the network services.
3. open the file vi /etc/hosts, and change the old name to
new name.
127.0.0.1 <old name> localhost.localdomain
localhost
 |
| Gaurav Verma [Krypton Tech] |
| |
| |
| Answer | mv <oldfilename> <newfilename>
eg:-
[root@localhost]# touch file1 //created a file named file1
[root@localhost]# ls //displays the file created
file1
[root@localhost]# mv file1 file2 //command to rename file1
[root@localhost]# ls //displays the renamed file
file2
 |
| Javed [Krypton Tech] |
| |
| |
| Answer | see there is no rename command in unix ,
so what u can use is "move" (mv) command
mv "(absolute path) old file name" "new file name"  |
| Googler [Krypton Tech] |
| |
| |
| Answer | rename <oldname> <newname>  |
| Kk.utnoor [Krypton Tech] |
| |
| |
| Answer | in RHEL-5 to change old name to new name of file command is....
#rename <oldname> <newname> <oldname>
......OK shital  |
| Shital [Krypton Tech] |
| |
| |
| Question |
what is the standard output in a file as well as disply it
on the terminal
options like
A)pr B) tail C) tee D)nl |
Rank |
Answer Posted By |
|
Question Submitted By :: Ravi148 |
| This Interview Question Asked @ Google , Ti |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | tail as it display ten current line
tail -f
option with this
tail -f -n 100  |
| Dhruv Mandal |
| |
| |
| Answer | I think, framing the question should be like
"What is the command used to write to the standard output
as well as to a file simultaneously ?
Answer) tee
It is a command that deals with pipes in unix. It
redirects the output of a command to an other command and
at the same time it redirects to a file also.  |
| Narendrasairam [Krypton Tech] |
| |
| |
| Question |
what is command like " #(cd unixos; pwd) " tell me OUTPUT |
Rank |
Answer Posted By |
|
Question Submitted By :: Ravi148 |
| This Interview Question Asked @ Google |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | first it will change the directory to unixos and then gives
the output as /<absolute path>/unixos  |
| Pravin Virkud |
| |
| |
| Answer | it is two commands runnung one by one.first the cd unixos
command will be executed,then the present working directory
will work.so the output will be showing the presentworking
dirctory that is unixos dir.  |
| Ramya [Krypton Tech] |
| |
| |
| Answer | WRONG when I hit this command no output or error is printed.  |
| Akj504 [Krypton Tech] |
| |
| |
| Answer | does it comment the command out?  |
| T [Krypton Tech] |
| |
| |
| Question |
in unix how to change old name to new name |
Rank |
Answer Posted By |
|
Question Submitted By :: Ravi148 |
| This Interview Question Asked @ Google |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | mv Command:
Use this command to change the name of file and
directories.
% mv foo foobar
The file that was named foo is now named foobar  |
| Anil.gaurav |
| |
| |
| Answer | one file and directory is moove one place to another places
and drectories in any places  |
| K.v.ramayya [Krypton Tech] |
| |
| |
| Answer | I think we should use the following command
#ren <oldname path> <newnamepath>
eg
#ren Desktop/file1 file2
{ here we change the old name FILE1 to new name FILE2  |
| Redhadon [Krypton Tech] |
| |
| |
| Question |
what is "ls* " is run
options are 1) x 2).x 3) hidden 4) no disply
tell exact answer. |
Rank |
Answer Posted By |
|
Question Submitted By :: Ravi148 |
| This Interview Question Asked @ Google |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | show all hidden file ls* not this command this is ls *  |
| Santosh |
| |
| |
| Answer | "ls *" will display all the contents in the current
directory as well us it will display the contents of all the
subdirectories. But it doesn't show the contents of
directories under those subdirectories. It will traverse for
a depth 1  |
| Bc [Krypton Tech] |
| |
| |
| Answer | "ls -1 * "
Will show you the contents of the directories also!
"ls -a"
will show everything including hidden files.
you can use "ls -1 */*"
or "ls -2 *"
same to list contents uptil two sub-directories.  |
| Parminder Pal Singh Padam [Krypton Tech] |
| |
| |
| Question |
tell me command for" to create more than one name to a
file". |
Rank |
Answer Posted By |
|
Question Submitted By :: Ravi148 |
| This Interview Question Asked @ Google |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | u can creat as many file as you wish with touch command
and then u can link the original file with these file....
link command can be use with ...# ln soruce file and
destination file.....as hardlink and #ln -s as soft link
file..  |
| Dalwinder Singh |
| |
| |
| Answer | we can use hardlink and soft link command  |
| D.veera [Krypton Tech] |
| |
| |
| Question |
how to create a new file command |
Rank |
Answer Posted By |
|
Question Submitted By :: Ravi148 |
| This Interview Question Asked @ Google |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | create new file touch and give filename it will create new
file  |
| Subhash |
| |
| |
| Answer | touch filename
cat >>filename  |
| Ramya [Krypton Tech] |
| |
| |
| Answer | creat new file vi command
vi filename  |
| Santosh [Krypton Tech] |
| |
| |
| Answer | create a new file
cat>filename
touch filename
vi filname  |
| Sudharsan [Krypton Tech] |
| |
| |
| Answer | nano filename  |
| Vinayakkatkar [Krypton Tech] |
| |
| |
| Answer | there are many ways to create new file , out of these two are.
1. create file and write simultanesly using
cat >> "file name" , this command will create file with name
" file name" and allowing you to enter text there itself.
2. create file now , and write in it later using
touch "file name" , this command simply create one file
named " file name" , but laert not prompt you to enter data
there
itself.  |
| Googler [Krypton Tech] |
| |
| |
| Answer | you can use
touch filename (this way you can also create zero byte file)  |
| Saim.saiyed [Krypton Tech] |
| |
| |
| Answer | vi filename or cat >>filename  |
| Pam [Krypton Tech] |
| |
| |
| Question |
what is command for "calj2007" |
Rank |
Answer Posted By |
|
Question Submitted By :: Ravi148 |
| This Interview Question Asked @ Google |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | # cal -j 2007 //it will display the calendar of 2007 from
Jan to Dec.  |
| Gaurav |
| |
| |
| Answer | cal -j 2007 displays 2007 calender in julian dates format
starting form jan-1  |
| Krishna [Krypton Tech] |
| |
| |
| Question |
how is "to run even after user logs out" |
Rank |
Answer Posted By |
|
Question Submitted By :: Ravi148 |
| This Interview Question Asked @ Google |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | correct wording:
Q: how to run a command even after user logs out?
A: use the nohup command like so
nohup ./some-script.sh  |
| S |
| |
| |
| Question |
what is QUOTA-V |
Rank |
Answer Posted By |
|
Question Submitted By :: Ravi148 |
| This Interview Question Asked @ Google |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | command used in linux for getting information about how
much space is available in disk for the storage of files
and directories  |
| Vas |
| |
| |
| Answer | QUOTA-V will give result "Command not found" and if u give
quota -v then only it will show ur quota.  |
| Kunal Jain [Krypton Tech] |
| |
| |
| Answer | Quota -V displays the version of the Quota software.  |
| Tirumal [Krypton Tech] |
| |
| |
| Question |
what is the command To print script arguments |
Rank |
Answer Posted By |
|
Question Submitted By :: Ravi148 |
| This Interview Question Asked @ Google |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | echo $* or $#  |
| Guest |
| |
| |
| Answer | $@ seems to be another option. Difference between $* and $@
is that $@ recognizes multiple strings given in quotes as a
single word.  |
| Bc [Krypton Tech] |
| |
| |
|
| |
|
Back to Questions Page |