ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage   interview questions urls   External Links  Contact Us     Login  |  Sign Up                      
tip       Ask Questions on ANYTHING, that arise in your Daily Life at     FORUM9.COM
Google
 
Categories >> Software
 
  HR-Questions (196)
 


 

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.
 
0
Arshi
 
 
Answer
Stored procedures are pre-compiled object in the Database 
which is used to reduce the network traffic.
 
0
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.
 
0
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.
 
0
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++
 
0
M_dasharatham
 
 
Answer
ASP is interpreter. and ASP.Net is compile base..asp.net is 
centerlize Technology.  supports languages vb.net,c#, and 
vc++
 
0
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.
 
0
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.
 
0
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.
 
0
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 



 
0
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
 
0
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"
 
0
Googler
[Krypton Tech]
 
 
Answer
rename <oldname> <newname>
 
0
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
 
0
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
 
0
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.
 
3
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
 
0
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.
 
0
Ramya
[Krypton Tech]
 
 
Answer
WRONG when I hit this command no output or error is printed.
 
0
Akj504
[Krypton Tech]
 
 
Answer
does it comment the command out?
 
0
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
 
0
Anil.gaurav
 
 
Answer
one file and directory is moove one place to another places
and drectories in any places
 
0
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
 
0
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 *
 
0
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
 
0
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.
 
0
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..
 
0
Dalwinder Singh
 
 
Answer
we can use hardlink and soft link command
 
0
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
 
0
Subhash
 
 
Answer
touch filename
cat >>filename
 
0
Ramya
[Krypton Tech]
 
 
Answer
creat new file vi command
 vi filename
 
0
Santosh
[Krypton Tech]
 
 
Answer
create a new file 
cat>filename
touch filename
vi filname
 
0
Sudharsan
[Krypton Tech]
 
 
Answer
nano filename
 
0
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.
 
0
Googler
[Krypton Tech]
 
 
Answer
you can use
touch filename (this way you can also create zero byte file)
 
0
Saim.saiyed
[Krypton Tech]
 
 
Answer
vi filename or cat >>filename
 
0
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.
 
2
Gaurav
 
 
Answer
cal -j 2007 displays 2007 calender in julian dates format
starting form jan-1
 
0
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
 
0
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
 
0
Vas
 
 
Answer
QUOTA-V will give result "Command not found" and if u give
quota -v then only it will show ur quota.
 
0
Kunal Jain
[Krypton Tech]
 
 
Answer
Quota -V displays the version of the Quota software.
 
0
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 $#
 
0
Guest
 
 
Answer
$@ seems to be another option. Difference between $* and $@
is that $@ recognizes multiple strings given in quotes as a
single word.
 
0
Bc
[Krypton Tech]
 
 
 
Back to Questions Page
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com