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   SiteMap shows list of All Categories in this site.
Google
 
Categories >> Software >> Scripts
 
  PHP (365)  ASP (156)  CGI-Perl (35)  JavaScript (63)  VB-Script (116)
  JSP (54)  Shell-Script (91)  Python (3)  Tcl (4)  Awk (2)
  Ajax (9)  Ruby-on-Rails (7)  Scripts-AllOther (21)
 


 

Back to Questions Page
 
Question
A company named Pensar Technologies in chennai has offered 
me a job as Software Trainee in chennai.But they are asking 
to pay demand draft of Rs.75000/- in the name of the 
company.They are saying the gross renumeration will pay 
Rs.90000/- annually.I want to know whether this is good or 
bad company?Help me out in this.
Rank Answer Posted By  
 Question Submitted By :: Sakthi
I also faced this Question!!   © ALL Interview .com
Answer
Simply you can understand the company status by paying 90K
per annum for software job. Dont go for it, Its a BAD
Company. we work to earn not to Pay...
 
0
Viki
 
 
Answer
It is not a good thing to get money from candiate....
 
0
Raj
 
 
Answer
Its only a security amount for a period of 12 months and 
will be refunded after that
 
0
Naveen
 
 
 
Answer
i think im the proper person to give the answer...bcz i'm a victim.i lost 1 lakh and job.but there are some companies they provide security for our money and our job as well...think twice.
 
0
Rahul
 
 
Answer
The companies which demand some amount from the candidate 
must be bad.
Do go for such companies keep it in black list company
 
0
Roshan S
 
 
Answer
Hi... Even I got selected in that company, but i din't go 
becoz I searched in the IT Companies directory to know 
about that company.But i couldn't even see the company's 
name in that list.. So don't go.. Rs.75000 is not a small 
amount know..:-)
 
0
Mehu
 
 
Answer
pensar is a developing software company.which definitely go
places in the future like microsoft.bcoz i am the CEO of
that company speaking
 
0
Rathinalingam
 
 
Answer
Don't Go in such company.
 
0
Nita
 
 
Answer
File a case in police station. God damn it
 
0
Raj
 
 
Answer
pls dont go these type of companys
 
0
Prabha
 
 
Question
what is the difference between require and use in perl?
Rank Answer Posted By  
 Question Submitted By :: Justin
This Interview Question Asked @   IBM
I also faced this Question!!   © ALL Interview .com
Answer
use:
 * Object Verification will happen @ Compile Time.
 * File will have extention of .pm
 * Module location will be set by @ISA Variable.

require:
 * Object Verification will happen @ Run TIme.
 * Method can be used from and .pm or .pl file.
 * Absolute path to be given, if file located in different 
dir.
 
0
Jayakumar.b
 
 
Question
how to install a package in perl ????
Rank Answer Posted By  
 Question Submitted By :: Hemalatamegh
I also faced this Question!!   © ALL Interview .com
Answer
Perl Installation on Linux/Unix:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	% perl Makefile.PL
	% make		// nmake for Windows.
	% make test
	% make install
	% make clean

Perl Installation on Windows:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	% perl -MCPAN -e shell
	% install <Module Name>		Eg: install Net::FTP
 
0
Jayakumar.b
 
 
Question
Specify array sort functions available in php ?
Rank Answer Posted By  
 Question Submitted By :: Binoyav
I also faced this Question!!   © ALL Interview .com
Answer
Hi,
   There are 11 functions available in php to sort array. 
They are
     1)asort()
     2)arsort()
     3)Ksort()
     4)Krsort()
     5)sort()
     6)uasort()
     7)uksort()
     8)usort()
     9)rsort()
    10)natsort()
    11)natcatsort()
 
0
Asha Banu
 
 
Answer
1)asort()
     2)arsort()
     3)Ksort()
     4)Krsort()
     5)sort()
     6)uasort()
     7)uksort()
     8)usort()
     9)rsort()
    10)natsort()
    11)natcatsort()
 
0
Selvam
 
 
Question
How will you create a bi-lingual site (multiple languages) ?
Rank Answer Posted By  
 Question Submitted By :: Binoyav
I also faced this Question!!   © ALL Interview .com
Answer
u can create your site multi langual by specifying seperate
folders for different languages like english, hindi, kannada
and more for seperate languages.
 
0
Prasadkonnur
 
 
Answer
use session...it work better. Check my sample
<?php
  session_start();
  session_register("language");
  
  if(empty($_SESSION['language']))
	{
		$_SESSION['language']='en';
	}
  
  if(isset($_GET[lang])){
  if($_GET[lang]=='id' or $_GET[lang]=='en'){
    $_SESSION['language']=$_GET[lang];
    
  echo '<meta http-equiv="refresh" content="0;
url=?language='.$_GET[lang].'">';
  }else{
  echo '<meta http-equiv="refresh" content="0;
url=?error=Unavailable_Language_Option">';
  }
  }
  
?>
Make this script on a single file, include the file in each
pages, then simply add link that give value $_GET[lang]. 
Each time there is $_GET[lang], this script will change the
$_session['language'].

Then in each part that need to be bilingual, check for
$_SESSION['language'].

Thats all
 
0
Ahmad Pujianto
 
 
Answer
I am working on an application which is multilingual we have
basically 3 languages , french, dutch and English

Our structure doing it best way...

What we are doing ?

The structure of the files are same but we are using 3
language files for the site as fr.php, nl.php and en.php

language selected by user we are keeping that in cookie and
if there is no cookie we are setting french as default and
in cookie.

How it works ?
Based on cookie we are including the language file in
controller or main page and it is effecting the site.

Example : suppose there is a button called sendemail and the
value or button text be different in three language

in fr - Réponse 
in nl - Respond
in en - Send

so in en.php 
<?php
define("button_text",Send);
?>

so in fr.php 
<?php
define("button_text",Réponse );
?>

so in nl.php 
<?php
define("button_text",Respond);
?>


so in main controller or index page

<?php 
include($_COOKIE['languague'].".php");

<input type='button' name='sendemail' value='<?php echo
button_text;?>'>


Why it is good ?
It will work very well and we can use any new language in
site like spenish - how ? create only language file called
sp.php and define value and set language cookie it will work

Thanks
:)
 
0
Abinash Grahacharya
 
 
 
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