Oracle Interview Questions
1. How can variables be passed to a SQL routine
By use of the & symbol. For passing in variables the numbers 1-8 can be used (&1, &2,...,&8) to pass the values after the command into the SQLPLUS session. To be prompted for a specific variable, place the ampersanded variable in the code itself: "select * from dba_tables where owner=&owner_name;" . Use of double ampersands tells SQLPLUS to resubstitute the value for each subsequent use of the variable, a single ampersand will cause a reprompt for the value unless an ACCEPT statement is used to get the value from the user.
2. You want to include a carriage return/linefeed in your output from a SQL script, how can you do this
The best method is to use the CHR() function (CHR(10) is a return/linefeed) and the concatenation function "||". Another method, although it is hard to document and isn?t always portable is to use the return/linefeed as a part of a quoted string.
3. How can you call a PL/SQL procedure from SQL
By use of the EXECUTE (short form EXEC) command.
4. How do you execute a host operating system command from within SQL
By use of the exclamation ball "!" (in UNIX and some other OS) or the HOST (HO) command.
5. You want to use SQL to build SQL, what is this called and give an example
This is called dynamic SQL. An example would be: set lines 90 pages 0 termout off feedback off verify off spool drop_all.sql select ?drop user ?||username||? cascade;? from dba_users where username not in ("SYS?,?SYSTEM?); spool off Essentially you are looking to see that they know to include a command (in this case DROP USER...CASCADE;) and that you need to concatenate using the ?||? the values selected from the database.
6. What SQLPlus command is used to format output from a select
This is best done with the COLUMN command.
7. You want to group the following set of select returns, what can you group on
Max(sum_of_cost), min(sum_of_cost), count(item_no), item_no The only column that can be grouped on is the "item_no" column, the rest have aggregate functions associated with them.
8. What special Oracle feature allows you to specify how the cost based system treats a SQL statement
The COST based system allows the use of HINTs to control the optimizer path selection. If they can give some example hints such as FIRST ROWS, ALL ROWS, USING INDEX, STAR, even better.
9. You want to determine the location of identical rows in a table before attempting to place a unique index on the table, how can this be done
Oracle tables always have one guaranteed unique column, the rowid column. If you use a min/max function against your rowid and then select against the proposed primary key you can squeeze out the rowids of the duplicate rows pretty quick. For example: select rowid from emp e where e.rowid > (select min(x.rowid) from emp x where x.emp_no = e.emp_no); In the situation where multiple columns make up the proposed key, they must all be used in the where clause.
10. What is a Cartesian product
A Cartesian product is the result of an unrestricted join of two or more tables. The result set of a three table Cartesian product will have x * y * z number of rows where x, y, z correspond to the number of rows in each table involved in the join.
11. You are joining a local and a remote table, the network manager complains about the traffic involved, how can you reduce the network traffic Push the processing of the remote data to the remote instance by using a view to pre-select the information for the join. This will result in only the data required for the join being sent across.
11. What is the default ordering of an ORDER BY clause in a SELECT statement
Ascending
12. What is tkprof and how is it used
The tkprof tool is a tuning tool used to determine cpu and execution times for SQL statements. You use it by first setting timed_statistics to true in the initialization file and then turning on tracing for either the entire database via the sql_trace parameter or for the session using the ALTER SESSION command. Once the trace file is generated you run the tkprof tool against the trace file and then look at the output from the tkprof tool. This can also be used to generate explain plan output.
13. What is explain plan and how is it used
The EXPLAIN PLAN command is a tool to tune SQL statements. To use it you must have an explain_table generated in the user you are running the explain plan for. This is created using the utlxplan.sql script. Once the explain plan table exists you run the explain plan command giving as its argument the SQL statement to be explained. The explain_plan table is then queried to see the execution plan of the statement. Explain plans can also be run using tkprof.
14. How do you set the number of lines on a page of output? The width
The SET command in SQLPLUS is used to control the number of lines generated per page and the width of those lines, for example SET PAGESIZE 60 LINESIZE 80 will generate reports that are 60 lines long with a line width of 80 characters. The PAGESIZE and LINESIZE options can be shortened to PAGES and LINES.
15. How do you prevent output from coming to the screen
The SET option TERMOUT controls output to the screen. Setting TERMOUT OFF turns off screen output. This option can be shortened to TERM.
16. How do you prevent Oracle from giving you informational messages during and after a SQL statement execution
The SET options FEEDBACK and VERIFY can be set to OFF.
17. How do you generate file output from SQL
By use of the SPOOL comm
Oracle Interview Questions
1. Give one method for transferring a table from one schema to another:
There are several possible methods, export-import, CREATE TABLE... AS SELECT, or COPY.
2. What is the purpose of the IMPORT option IGNORE? What is it?s default setting
The IMPORT IGNORE option tells import to ignore "already exists" errors. If it is not specified the tables that already exist will be skipped. If it is specified, the error is ignored and the tables data will be inserted. The default value is N.
3. You have a rollback segment in a version 7.2 database that has expanded beyond optimal, how can it be restored to optimal
Use the ALTER TABLESPACE ..... SHRINK command.
4. If the DEFAULT and TEMPORARY tablespace clauses are left out of a CREATE USER command what happens? Is this bad or good? Why
The user is assigned the SYSTEM tablespace as a default and temporary tablespace. This is bad because it causes user objects and temporary segments to be placed into the SYSTEM tablespace resulting in fragmentation and improper table placement (only data dictionary objects and the system rollback segment should be in SYSTEM).
5. What are some of the Oracle provided packages that DBAs should be aware of
Oracle provides a number of packages in the form of the DBMS_ packages owned by the SYS user. The packages used by DBAs may include: DBMS_SHARED_POOL, DBMS_UTILITY, DBMS_SQL, DBMS_DDL, DBMS_SESSION, DBMS_OUTPUT and DBMS_SNAPSHOT. They may also try to answer with the UTL*.SQL or CAT*.SQL series of SQL procedures. These can be viewed as extra credit but aren?t part of the answer.
6. What happens if the constraint name is left out of a constraint clause
The Oracle system will use the default name of SYS_Cxxxx where xxxx is a system generated number. This is bad since it makes tracking which table the constraint belongs to or what the constraint does harder.
7. What happens if a tablespace clause is left off of a primary key constraint clause
This results in the index that is automatically generated being placed in then users default tablespace. Since this will usually be the same tablespace as the table is being created in, this can cause serious performance problems.
8. What is the proper method for disabling and re-enabling a primary key constraint
You use the ALTER TABLE command for both. However, for the enable clause you must specify the USING INDEX and TABLESPACE clause for primary keys.
9. What happens if a primary key constraint is disabled and then enabled without fully specifying the index clause
The index is created in the user?s default tablespace and all sizing information is lost. Oracle doesn?t store this information as a part of the constraint definition, but only as part of the index definition, when the constraint was disabled the index was dropped and the information is gone.
10. (On UNIX) When should more than one DB writer process be used? How many should be used
If the UNIX system being used is capable of asynchronous IO then only one is required, if the system is not capable of asynchronous IO then up to twice the number of disks used by Oracle number of DB writers should be specified by use of the db_writers initialization parameter.
11. You are using hot backup without being in archivelog mode, can you recover in the event of a failure? Why or why not
You can?t use hot backup without being in archivelog mode. So no, you couldn?t recover.
12. What causes the "snapshot too old" error? How can this be prevented or mitigated
This is caused by large or long running transactions that have either wrapped onto their own rollback space or have had another transaction write on part of their rollback space. This can be prevented or mitigated by breaking the transaction into a set of smaller transactions or increasing the size of the rollback segments and their extents.
13. How can you tell if a database object is invalid By checking the status column of the DBA_, ALL_ or USER_OBJECTS views, depending upon whether you own or only have permission on the view or are using a DBA account.
13. A user is getting an ORA-00942 error yet you know you have granted them permission on the table, what else should you check
You need to check that the user has specified the full name of the object (select empid from scott.emp; instead of select empid from emp;) or has a synonym that balls to the object (create synonym emp for scott.emp;)
14. A developer is trying to create a view and the database won?t let him. He has the "DEVELOPER" role which has the "CREATE VIEW" system privilege and SELECT grants on the tables he is using, what is the problem
You need to verify the developer has direct grants on all tables used in the view. You can?t create a stored object with grants given through views.
15. If you have an example table, what is the best way to get sizing data for the production table implementation
The best way is to analyze the table and then use the data provided in the DBA_TABLES view to get the average row length and other pertinent data for the calculation. The quick and dirty way is to look at the number of blocks the table is actually using and ratio the number of rows in the table to its number of blocks against the number of expected rows.
16. How can you find out how many users are currently logged into the database? How can you find their operating system id
There are several ways. One is to look at the v$session or v$process views. Another way is to check the current_logins parameter in the v$sysstat view. Another if you are on UNIX is to do a "ps -ef|grep oracle|wc -l? command, but this only works against a single instance installation.
17. A user selects from a sequence and gets back two values, his select is: SELECT pk_seq.nextval FROM dual;What is the problem Somehow two values have been inserted into the dual table. This table is a single row, single column table that should only have one value in it.
18. How can you determine if an index needs to be dropped and rebuilt
Run the ANALYZE INDEX command on the index to validate its structure and then calculate the ratio of LF_BLK_LEN/LF_BLK_LEN+BR_BLK_LEN and if it isn?t near 1.0 (i.e. greater than 0.7 or so) then the index should be rebuilt. Or if the ratio BR_BLK_LEN/ LF_BLK_LEN+BR_BLK_LEN is nearing 0.3.
Oracle Interview Questions
1. A tablespace has a table with 30 extents in it. Is this bad? Why or why not.
Multiple extents in and of themselves aren?t bad. However if you also have chained rows this can hurt performance.
2. How do you set up tablespaces during an Oracle installation?
You should always attempt to use the Oracle Flexible Architecture standard or another partitioning scheme to ensure proper separation of SYSTEM, ROLLBACK, REDO LOG, DATA, TEMPORARY and INDEX segments.
3. You see multiple fragments in the SYSTEM tablespace, what should you check first?
Ensure that users don?t have the SYSTEM tablespace as their TEMPORARY or DEFAULT tablespace assignment by checking the DBA_USERS view.
4. What are some indications that you need to increase the SHARED_POOL_SIZE parameter?
Poor data dictionary or library cache hit ratios, getting error ORA-04031. Another indication is steadily decreasing performance with all other tuning parameters the same.
5. What is the general guideline for sizing db_block_size and db_multi_block_read for an application that does many full table scans?
Oracle almost always reads in 64k chunks. The two should have a product equal to 64 or a multiple of 64.
6. What is the fastest query method for a table
Fetch by rowid
7. Explain the use of TKPROF? What initialization parameter should be turned on to get full TKPROF output?
The tkprof tool is a tuning tool used to determine cpu and execution times for SQL statements. You use it by first setting timed_statistics to true in the initialization file and then turning on tracing for either the entire database via the sql_trace parameter or for the session using the ALTER SESSION command. Once the trace file is generated you run the tkprof tool against the trace file and then look at the output from the tkprof tool. This can also be used to generate explain plan output.
8. When looking at v$sysstat you see that sorts (disk) is high. Is this bad or good? If bad -How do you correct it?
If you get excessive disk sorts this is bad. This indicates you need to tune the sort area parameters in the initialization files. The major sort are parameter is the SORT_AREA_SIZe parameter.
9. When should you increase copy latches? What parameters control copy latches
When you get excessive contention for the copy latches as shown by the "redo copy" latch hit ratio. You can increase copy latches via the initialization parameter LOG_SIMULTANEOUS_COPIES to twice the number of CPUs on your system.
10. Where can you get a list of all initialization parameters for your instance? How about an indication if they are default settings or have been changed
You can look in the init.ora file for an indication of manually set parameters. For all parameters, their value and whether or not the current value is the default value, look in the v$parameter view.
11. Describe hit ratio as it pertains to the database buffers. What is the difference between instantaneous and cumulative hit ratio and which should be used for tuning
The hit ratio is a measure of how many times the database was able to read a value from the buffers verses how many times it had to re-read a data value from the disks. A value greater than 80-90% is good, less could indicate problems. If you simply take the ratio of existing parameters this will be a cumulative value since the database started. If you do a comparison between pairs of readings based on some arbitrary time span, this is the instantaneous ratio for that time span. Generally speaking an instantaneous reading gives more valuable data since it will tell you what your instance is doing for the time it was generated over.
12. Discuss row chaining, how does it happen? How can you reduce it? How do you correct it
Row chaining occurs when a VARCHAR2 value is updated and the length of the new value is longer than the old value and won?t fit in the remaining block space. This results in the row chaining to another block. It can be reduced by setting the storage parameters on the table to appropriate values. It can be corrected by export and import of the effected table.
Oracle Interview Questions
1. Describe the difference between a procedure, function and anonymous pl/sql block. Candidate should mention use of DECLARE statement, a function must return a value while a procedure doesn?t have to.
2. What is a mutating table error and how can you get around it? This happens with triggers. It occurs because the trigger is trying to update a row it is currently using. The usual fix involves either use of views or temporary tables so the database is selecting from one while updating the other.
3. Describe the use of %ROWTYPE and %TYPE in PL/SQL Expected answer: %ROWTYPE allows you to associate a variable with an entire table row. The %TYPE associates a variable with a single column type.
4. What packages (if any) has Oracle provided for use by developers? Expected answer: Oracle provides the DBMS_ series of packages. There are many which developers should be aware of such as DBMS_SQL, DBMS_PIPE, DBMS_TRANSACTION, DBMS_LOCK, DBMS_ALERT, DBMS_OUTPUT, DBMS_JOB, DBMS_UTILITY, DBMS_DDL, UTL_FILE. If they can mention a few of these and describe how they used them, even better. If they include the SQL routines provided by Oracle, great, but not really what was asked.
5. Describe the use of PL/SQL tables Expected answer: PL/SQL tables are scalar arrays that can be referenced by a binary integer. They can be used to hold values for use in later queries or calculations. In Oracle 8 they will be able to be of the %ROWTYPE designation, or RECORD.
6. When is a declare statement needed ? The DECLARE statement is used in PL/SQL anonymous blocks such as with stand alone, non-stored PL/SQL procedures. It must come first in a PL/SQL stand alone file if it is used.
7. In what order should a open/fetch/loop set of commands in a PL/SQL block be implemented if you use the %NOTFOUND cursor variable in the exit when statement? Why? Expected answer: OPEN then FETCH then LOOP followed by the exit when. If not specified in this order will result in the final return being done twice because of the way the %NOTFOUND is handled by PL/SQL.
8. What are SQLCODE and SQLERRM and why are they important for PL/SQL developers? Expected answer: SQLCODE returns the value of the error number for the last error encountered. The SQLERRM returns the actual error message for the last error encountered. They can be used in exception handling to report, or, store in an error log table, the error that occurred in the code. These are especially useful for the WHEN OTHERS exception.
9. How can you find within a PL/SQL block, if a cursor is open? Expected answer: Use the %ISOPEN cursor status variable.
10. How can you generate debugging output from PL/SQL? Expected answer: Use the DBMS_OUTPUT package. Another possible method is to just use the SHOW ERROR command, but this only shows errors. The DBMS_OUTPUT package can be used to show intermediate results from loops and the status of variables as the procedure is executed. The new package UTL_FILE can also be used.
11. What are the types of triggers? Expected Answer: There are 12 types of triggers in PL/SQL that consist of combinations of the BEFORE, AFTER, ROW, TABLE, INSERT, UPDATE, DELETE and ALL key words: BEFORE ALL ROW INSERT AFTER ALL ROW INSERT BEFORE INSERT AFTER INSERT etc.
Oracle Interview Questions
1. How would you determine the time zone under which a database was operating?
using SELECT dbtimezone FROM DUAL;
2. Explain the use of setting GLOBAL_NAMES equal to TRUE.
It ensure the use of consistent naming conventions for databases and links in a networked environment.
3. What command would you use to encrypt a PL/SQL application?
4. Explain the difference between a FUNCTION, PROCEDURE and PACKAGE.
5. Explain the use of table functions.
6. Name three advisory statistics you can collect.
7. Where in the Oracle directory tree structure are audit traces placed?
8. Explain materialized views and how they are used.
9. When a user process fails, what background process cleans up after it?
It is PMON.
10. What background process refreshes materialized views?
11. How would you determine what sessions are connected and what resources they are waiting for?
12. Describe what redo logs are.
13. How would you force a log switch?
alter system switch logfile;
14. Give two methods you could use to determine what DDL changes have been made.
15. What does coalescing a tablespace do?
16. What is the difference between a TEMPORARY tablespace and a PERMANENT tablespace?
17. Name a tablespace automatically created when you create a database.
When database is created then system tablespace is created automatically.....
18. When creating a user, what permissions must you grant to allow them to connect to the database?
Grant create session to username;
19. How do you add a data file to a tablespace?
Syntax will be like this:
alter tablespace USERS add datafile '/ora01/oradata/users02.dbf' size 50M;
20. How do you resize a data file?
Alter database datafile '/ora01/oradata/users02.dbf' resize 100M;
21. What view would you use to look at the size of a data file?
dba_data_files
22. What view would you use to determine free space in a tablespace?
DBA_TS_QUOTAS
23. How would you determine who has added a row to a table?
By using trigger on INSERT option
24. How can you rebuild an index?
ALTER INDEX index_name REBUILD;
25. Explain what partitioning is and what its benefit is.
A table partition is also a table segment, and by using partitioning technique we can enhance performance of table access.
26. You have just compiled a PL/SQL package but got errors, how would you view the errors?
By using ERRNAME and ERRCODE;
27. How can you gather statistics on a table?
28. How can you enable a trace for a session?
alter session set sql_trace='TRUE';
29. What is the difference between the SQL*Loader and IMPORT utilities?
SQL*LOADER loads external data which is in OS files to oracle database tables while IMPORT utility imports data only which
is exported by EXPORT utility of oracle database.
30. Name two files used for network connection to a database.
TNSNAMES.ORA and SQLNET.ORA
Oracle Interview Questions
1. Explain the difference between a hot backup and a cold backup and the benefits associated with each.
A hot backup is basically taking a backup of the database while it is still up and running and it must be in archive log mode. A cold backup is taking a backup of the database while it is shut down and does not require being in archive log mode. The benefit of taking a hot backup is that the database is still available for use while the backup is occurring and you can recover the database to any ball in time. The benefit of taking a cold backup is that it is typically easier to administer the backup and recovery process. In addition, since you are taking cold backups the database does not require being in archive log mode and thus there will be a slight performance gain as the database is not cutting archive logs to disk.
2. You have just had to restore from backup and do not have any control files. How would you go about bringing up this database?
I would create a text based backup control file, stipulating where on disk all the data files where and then issue the recover command with the using backup control file clause.
3. How do you switch from an init.ora file to a spfile?
Issue the create spfile from pfile command.
4. Explain the difference between a data block, an extent and a segment.
A data block is the smallest unit of logical storage for a database object. As objects grow they take chunks of additional storage that are composed of contiguous data blocks. These groupings of contiguous data blocks are called extents. All the extents that an object takes when grouped together are considered the segment of the database object.
5. Give two examples of how you might determine the structure of the table DEPT.
Use the describe command or use the dbms_metadata.get_ddl package.
6. Where would you look for errors from the database engine?
In the alert log.
7. Compare and contrast TRUNCATE and DELETE for a table.
Both the truncate and delete command have the desired outcome of getting rid of all the rows in a table. The difference between the two is that the truncate command is a DDL operation and just moves the high water mark and produces a now rollback. The delete command, on the other hand, is a DML operation, which will produce a rollback and thus take longer to complete.
8. Give the reasoning behind using an index.
Faster access to data blocks in a table.
9. Give the two types of tables involved in producing a star schema and the type of data they hold.
Fact tables and dimension tables. A fact table contains measurements while dimension tables will contain data that will help describe the fact tables.
10. What type of index should you use on a fact table?
A Bitmap index.
11. Give some examples of the types of database contraints you may find in Oracle and indicate their purpose.
• A Primary or Unique Key can be used to enforce uniqueness on one or more columns.
• A Referential Integrity Contraint can be used to enforce a Foreign Key relationship between two tables.
• A Not Null constraint - to ensure a value is entered in a column
• A Value Constraint - to check a column value against a specific set of values.
12. A table is classified as a parent table and you want to drop and re-create it. How would you do this without affecting the children tables?
Disable the foreign key constraint to the parent, drop the table, re-create the table, enable the foreign key constraint.
13. Explain the difference between ARCHIVELOG mode and NOARCHIVELOG mode and the benefits and disadvantages to each.
ARCHIVELOG mode is a mode that you can put the database in for creating a backup of all transactions that have occurred in the database so that you can recover to any ball in time. NOARCHIVELOG mode is basically the absence of ARCHIVELOG mode and has the disadvantage of not being able to recover to any ball in time. NOARCHIVELOG mode does have the advantage of not having to write transactions to an archive log and thus increases the performance of the database slightly.
14. What command would you use to create a backup control file?
Alter database backup control file to trace.
15. Give the stages of instance startup to a usable state where normal users may access it.
STARTUP NOMOUNT - Instance startup
STARTUP MOUNT - The database is mounted
STARTUP OPEN - The database is opened
16. What column differentiates the V$ views to the GV$ views and how?
The INST_ID column which indicates the instance in a RAC environment the information came from.
17. How would you go about generating an EXPLAIN plan?
Create a plan table with utlxplan.sql.
Use the explain plan set statement_id = 'tst1' into plan_table for a SQL statement
Look at the explain plan with utlxplp.sql or utlxpls.sql
18. How would you go about increasing the buffer cache hit ratio?
Use the buffer cache advisory over a given workload and then query the v$db_cache_advice table. If a change was necessary then I would use the alter system set db_cache_size command.
19. Explain an ORA-01555.
You get this error when you get a snapshot too old within rollback. It can usually be solved by increasing the undo retention or increasing the size of rollbacks. You should also look at the logic involved in the application getting the error message.
20. Explain the difference between $ORACLE_HOME and $ORACLE_BASE.
ORACLE_BASE is the root directory for oracle. ORACLE_HOME located beneath ORACLE_BASE is where the oracle products reside.
General Questions
• Tell us about yourself/ your background.
• What are the three major characteristics that you bring to the job market?
• What motivates you to do a good job?
• What two or three things are most important to you at work?
• What qualities do you think are essential to be successful in this kind of work?
• What courses did you attend? What job certifications do you hold?
• What subjects/courses did you excel in? Why?
• What subjects/courses gave you trouble? Why?
• How does your previous work experience prepare you for this position?
• How do you define 'success'?
• What has been your most significant accomplishment to date?
• Describe a challenge you encountered and how you dealt with it.
• Describe a failure and how you dealt with it.
• Describe the 'ideal' job... the 'ideal' supervisor.
• What leadership roles have you held?
• What prejudices do you hold?
• What do you like to do in your spare time?
• What are your career goals (a) 3 years from now; (b) 10 years from now?
• How does this position match your career goals?
• What have you done in the past year to improve yourself?
• In what areas do you feel you need further education and training to be successful?
• What do you know about our company?
• Why do you want to work for this company. Why should we hire you?
• Where do you see yourself fitting in to this organization ...initially? ...in 5 years?
• Why are you looking for a new job?
• How do you feel about re-locating?
• Are you willing to travel?
• What are your salary requirements?
• When would you be available to start if you were selected?
Fresher Call Center Projects
Posted on:2011-Sep-02
Experience:Freshers
Location:India
Last Date:2011-Oct-01
Job Details:
You Can Start Up Your OwnCall Center Business, Voice/Backend Project Available, Single / Multi Seats, Complete Business Solution Provided Along With Training Program, Daily / Weekly Payments, You Can Start Up This Business In Any Part Of India Where Computers And Broadband Connection Is Available.
Contact No.: 9654017688/9582037655/011-45694755. Posted ID – JUB677
About Company
Company Name Delhi BPO
Additional Information
Contact Name Rupesh Gupta
Phone 919582037655
City Location -> Bhopal
States & Union Territories State & Union Territories -> Madhya Pradesh
How To Apply
Apply Details
Contact No.: 9654017688/9582037655/011-45694755.
Apply Email udhab.jub677(at)gmail.com
Apply URL Only subscribed members can view this field.
Category
Job Type Job Type -> Part-time & Full-time
Industry Type Industry Type -> Other
Classification Job Classification -> BPO -> Customer Service Executive (Voice)
Fresher Networking and Hardware Support Engineer
Posted on:2011-Sep-02
Experience:0-2 Years
Education:Any graduate
Location:Chennai
Key Skills:fresher, hardware, support, networking, engineer, network support, hardware
Job Details:
Comfyi Solution hiring Fresher Networking and Hardware Support Engineer
To work as Hardware and Networking Engineer to trouble shoot real time desktops.
Walk-in immediatly with two hard copies of the resume and other relvent documents for the interview.
Freshers who are havingstrong knowledge in desktop support and networking support can apply
Walk-in for a direct technical interview to the following address.
Comfyi Solution
# 1768 , i Block , 6th street 18th main road ,
Annanagar ( Opposite to Annanagar West Bus Depot)
CHENNAI,Tamilnadu,India 600040
http://www.comfyisolution.com/
PH: 9381278999
Candidate Profile:
Any other previous Networking/ Hardware Experience, a minimum of 1 year of experience with Good communication skills. Freshers with strong knowledge in desktop support and network support can apply
About Company
Company Name Comfyi Solution
Company Profile
COMFYI SOLUTION proffers continuum Resource Management in various domains on IT, Software Services, ITES, NON IT & Finance across the Indian industrial segments.
Additional Information
Address: Comfyi Solution
# 1768 , i Block , 6th street
18th mainroad , Annanagar
( Opposite to Annanagar West Bus Depot )
Chennai , Tamilnadu , INDIA 600040
PH:9381278999
City Location -> Chennai
States & Union Territories State & Union Territories -> Tamil Nadu
How To Apply
Apply Details
Walk-in immediatly to the address for the interview.
Category
Job Type Job Type -> Full-time
Industry Type Industry Type -> IT-Hardware & Networking
Classification Job Classification -> Walk-in Interviews
IT Recruiter
Posted on:2011-Sep-02
Experience:0 to 4 years
Education:Any degree
Location:Cyber Pearl, Hi Tech City, Hyderabad
Role:Recruiter
Job Details:
Synopsis:
Opening for US IT Recruiter at SD Soft Tech India Pvt. Ltd (http://www.sdsoftech.com) - Cyber Pearl, Hi-Tech City, Hyderabad - 0 to 4 years experience - Night Shift
* 2 years bond for freshers
*Night Shift (6.30pm to 3.30am)
*No Transport Facility
Description:
We need a US IT Recruiter as an addition into a small yet dynamic Recruiting offshore team,
operating from our India office in Cyber Pearl, Hi-Tech City, Hyderabad.
Please apply at sparchuru(at)everesttech.com. Freshers and entry-level graduates are welcome to
apply
Experience Level: 0 - 4 years
FRESHERS WILL UNDERGO TRAINING
Responsibilities:
- Recruits in a dynamic environment, for direct client requirements
- Independently handles recruiting life cycle, reports to the supervisor of any difficulties during
sourcing, screening, qualifying and closing and works towards eliminating drawbacks in the
process
- Sets high individual standards, displays excellent work ethics, professional communication and
understands learning is a never ending process
- Demonstrate sense-of-urgency in a fast paced environment with ability to handle multiple direct
client requirements simultaneously
- Work under minimum supervision, pro-active, self-driven, with a challenging attitude to defy
pressure and conventional recruiting difficulties
Requirements:
-Excellent at disposition, quality knowledge of business, systems, applications, industry and
related technologies.
- Adept at sourcing strategies, networking concepts, always striving for innovative approaches,
with a 'DO' attitude (better than 'Can Do'!)
- Applied understanding of W2, 1099, Corp-to-Corp, Sub Contractor negotiation and
documentation, and knowledge of state wise employment insurance, state wise taxes, TN visa,
H1B Transfer, etc
- Highly organized, detail oriented, excellent team player with understanding of good to worse
business conditions with ability to adapt to them
- Knowledge sharing attitude, willingness to help peers and participate in organizational
development
- Regular and prompt attendance required
Desired:
- Retail industry experience
- Prior experience and existing relationships with Oracle Retail (RETEK) professionals
Candidate Profile:
Committed, Honest, and Trustworthy individual with a desire and passion to achieve success and learn quickly.
About Company
Company Name SD Soft Tech India Pvt. Ltd.
Company Profile
Please visit http://www.sdsoftech.com to review company information
Additional Information
Contact Name Gayatri Mane / Viken Jain
Address: Ground Floor, Block 1, Unit 3, Cyber Pearl, Hi-Tech City, Madhapur, Hyderabad 500081
Phone 040-32415646
City Location -> Hyderabad
States & Union Territories State & Union Territories -> Andhra Pradesh
How To Apply
Apply Details
Apply Online or email resumes at sparchuru(at)everesttech.com
Apply Email sparchuru(at)everesttech.com
Category
Job Type Job Type -> Full-time
Industry Type Industry Type -> Recruitment/ Employment Firm
Classification Job Classification -> HR / Admin -> Recruitment Executive
Walk-In Data Entry Operators, 6th Sept 2011
Posted on:2011-Sep-03
Experience:0-5 Years
Location:Chandigarh
Key Skills:Sarkari naukri, Public sector, Government jobs, Babu jobs, govt jobs, Freshers
Last Date:2011-Sep-06
Job Details:
DOEACC Society , Chandigarh Centre
Walk In Interview
DOEACC Society, Chandigarh Centre, Branch Office Shimla need following personnel to be employed on contract basis for various projects.
Designation: Data Entry Operators
Walk-in interview date: 06-09-2011 at 10 am
Eligibility:
Graduate with Post-Graduate Diploma in Computer Science/Applications (PGDCA) / DOEACC ‘O’ Level with one year experience
Or
10+2 with diploma in computers/ DOEACC ‘O’ Level and typing speed of 30WPM in English /25 WPM in Hindi and two years experience
Pay: Rs. 5,500
The candidates selected for empanelment may be posted at various Departments and District H.Qs in Himachal Pradesh. The interested candidates may download the application form from our Website http://doeaccchd.edu.in/ or collect in person from this office. The candidates should come with duly filled form along with attested copies of certificates and the registration fee of Rs.350/- to be deposited in cash at Cash Counter or through DD in favour of Director, DOEACC Society, Chandigarh Centre, Branch Office, Shimla, payable at Shimla. For other details please visit our Website.
Note: Higher salary can be offered to the candidates depending upon qualifications and experience. The application form may be downloaded from our website “www.doeaccchd.edu.in” or obtained personally from the above-mentioned address on all working days. It is to be submitted strictly in the prescribed Performa along with non refundable registration fee of Rs. 350/- in cash or through Demand Draft (favoring Director, DOEACC SOCIETY,, Chandigarh Centre Branch Office Shimla ) payable at Shimla at the above premises.
The candidates should attach copies of certificates/ mark sheets, Date of Birth certificate, passport size photograph, and experience certificates with the application form and should bring all testimonials/ certificates/ experience certificates in original at the time of interview.
Candidate must report by 1 pm.
Website: www.doeaccchd.edu.in
ENQUIRY TELEPHONE: 0177-2804216, 0177-2650613
About Company
Company Name DOEACC Society, Chandigarh Centre
Company Profile
DOEACC Society , Chandigarh Centre
Branch Office : SHIMLA
(Department of IT , Ministry of Communication & IT, Govt. of India)
Cedarwood Bldg, Lower Jakhoo, Shimla-171001
Telephone:0177-2650613,2804216
Additional Information
Address: Branch Office : SHIMLA
(Department of IT , Ministry of Communication & IT, Govt. of India)
Cedarwood Bldg, Lower Jakhoo, Shimla-171001
Telephone:0177-2650613,2804216
City Location -> Chandigarh
States & Union Territories State & Union Territories -> Punjab
How To Apply
Apply Details
For Vacancy details and Application format please Click Here
Category
Job Type Job Type -> Full-time
Industry Type Industry Type -> Defence/ Government
Classification Job Classification -> Government Jobs -> Govt Walk-ins
IT Helpdesk Freshers Walk-In
Posted on:2011-Jul-23
Experience:0-1 Years
Location:Bengaluru/ Bangalore
Key Skills:bpo jobs,technical Support, Bpo, Fresher,Technical Helpdesk,Technical Assistance,computer troubleshooting
Last Date:2011-Jul-29
Job Details:
iGATE Patni Freshers Walk-in Interview
2010 Batch- Only BE/BTech, B.Com, BSc, BCA, MCA or Diploma (10+2+3)
2011 Batch- Only BSc, BCA, B.Com or Diploma (10+2+3)
Job Code: 21394
Experience: Freshers
Role: IT Helpdesk
Educational Qualification:
Batch 2010 (ONLY Full time/Regular BSc, B.E/BTech, BCA, B.Com, Diploma(10+2+3) or MCA)
Batch 2011 (ONLY Full time/Regular BCA, BSc , B.Com or Diploma (10+2+3)
Work Location: iGATE Patni, Bangalore
Date : 25th July 2011 to 29th July 2011, Day : Monday to Friday, Timings: 2:00 PM – 4:00 PM
Venue:
iGATE Patni,
158 - 162 & 165 – 170
EPIP Phase-2
Whitefield
Bangalore 560 066
Contact: Darshana & Greeshma
What should the candidates bring when they visit our campus:
One copy of their updated resume
One passport size photograph
Copy of this mail
NOTE: CANDIDATES WHO HAVE APPLIED IN THE LAST 6 MONTHS NEED NOT APPLY.
Candidate Profile:
Should possess 50% and above throughout academics. Should not have more than 1 year Gap in between their education. Should be willing to work in a technical voice process Should have basic computing skills like Hardware, Applications, Software, Networking support knowledge Should be willing to work in night shifts only. Should be willing to sign 2 years Service Agreement with us. Must have excellent Oral & Written Communication Skills.
About Company
Company Name iGATE Patni
Contact Information
Contact Name Darshana & Greeshma
Address: iGATE Patni,
158 - 162 & 165 170
EPIP Phase-2
Whitefield
Bangalore 560 066
City Location -> Bangalore
States & Union Territories State & Union Territories -> Karnataka
How To Apply
Apply Details
Walkin
Category
Job Type Job Type -> Full-time
Industry Type Industry Type -> BPO/ITES /CRM/Transcription
Classification Job Classification -> Walk-in Interviews
Posted on:2011-Jul-23
Experience:0-1 Years
Location:Ahmedabad, Bengaluru/ Bangalore, Cuttack ,Hyderabad/ Secunderabad ,Guwahati ,Thiruvananthapuram ,Delhi ,Chennai ,Jaipur ,Mumbai ,Kolkata ,Patna
Key Skills:freshers, QA skills, software testing, Manual Testing, software, engineer
Job Details:
The Software Quality Engineer (SQE) is responsible for analyzing, testing, and resolving technical issues to ensure that developed products meet the design specifications and are within eCollege standards.
Creates, plans and executes automated and performance tests using HP QuickTest Pro and LoadRunner respectively. Also executes SQL trace to capture stored procedure execution/duration and read/writes
Performs highly complex testing on complex projects using technical specifications: plans, schedules and implements testing projects, defines test objectives, writes scripts (manual, automated, and vugen), performs complex functional, application, regression, and/or performance tests
Investigates and resolves technical issues in QA Environments and communicates issues with various departments
Performs API/Web Services testing; may also be required to write test harnesses using web services and SOAP technologies
Formulates test plans including systems analysis, risk analysis, writing and plotting test strategies, and determines how to report defects
Provides training and mentoring to junior QA Engineers
Basic experience or knowledge required in: HTML; XML; Active Directory; Active Server Pages (ASP); JavaScript; Visual Basic 6.0, VB.NET; VB Script, Transact SQL; Database Concepts; Internet web browsers; Rally, Serena TeamShare
Knowledge in: Coding Fundamentals (variable declaration, program flow, functions, error handling, etc)
Experience with; automated testing tools (HP LoadRunner and QuickTest Pro), software development life-cycle and software development tools preferred; Preferred but not required; Fiddler, SoapSonar, Quality Center
Expert experience or knowledge required in the following; QA process, documentation, and testing
eCollege/Industry knowledge preferred but not required
Able to accurately estimate task durations and meet commitments in an Agile software development environment
Understanding internet and web server processes
Strong PC skills including thorough knowledge of MS Project, MS Word, MS Excel, Visio
Ability to learn and actively seek new skills and knowledge to keep up with the changing technology field
Ability to think outside the box, adapt to circumstances, learn from co-workers, and share information and experiences
Ability to be flexible and adapt to any given situation
Ability to perform multiple tasks concurrently
Excellent customer service attitude, communication skills (written and verbal), and interpersonal skills
Excellent organizational and time management skills
Excellent analytical and problem-solving skills
Ability to make timely and sound decisions
Detail oriented
Ability to work independently and in a team based environment
Ability to work efficiently in a fast paced environment
Ability to work under pressure and in high stress situations
Ability to be self motivated
About Company
Company Name Customer is King
Contact Information
City Location -> Bangalore
States & Union Territories State & Union Territories -> Karnataka
How To Apply
Apply Details
hr.customeriskinggmail.com
Apply Email hr.customeriskinggmail.com
Category
Job Type Job Type -> Full-time
Industry Type Industry Type -> IT-Software/ Software Services
Classification Job Classification -> I.T Software -> QA & Testing
Posted on:2011-Jul-23
Experience:Freshers
Education:Freshers Graduates BE, BSc, BCA, MCA, BCom
Location:Mumbai
Role:Software Development - PHP
Key Skills:Freshers IT, BE, BSc, Bcom, BCA, MCA
Dear Candidate
AceSys is Mumbai based IT solutions company. We offer professional training course in PHP & MySQL which is designed as per industry requirements. We delivere extremely high standards of teaching and practicals. We have tied up with numerous Software development companies in Mumbai. Through these tie ups we have requirement for more than 25 PHP professionals. We are inviting you to join our PHP training course and explore lucrative career in web development.
Eligibility - Freshers Graduates BE, BSc, BCA, MCA, BCom
The syllabus for our course is available on below link -
http://phptraining.in/php-training/php-training-course-syllab us-mumbai-india
We have batches in the morning and evening. Please feel free to contact us for further details.
Phone :9833046902
Email - acesysindiagmail.com
About Company
Company Name AceSys India
Company Profile
AceSys is Mumbai based IT services company. We offer professional training course in PHP & MySQL which is designed as per industry requirements. We delivere extremely high standards of teaching and practicals.
Contact Information
Contact Name Neha
Address: 12, Prabhu Niwas
Tekdi Bunglow, Teen Petrol Pump, LBS Road,
Thane (W) - 400602
City Location -> Mumbai
States & Union Territories State & Union Territories -> Maharashtra
How To Apply
Apply Details
Apply Online
Category
Job Type Job Type -> Full-time
Share it with Friends:
Freshers BE, BSC, BCA, MCA, BCom Graduates Req For Web/Software Developer
Posted by Ramchan in IT jobs
Experience:Freshers
Education:Freshers Graduates BE, BSc, BCA, MCA, BCom
Location:Mumbai
Role:Software Development - PHP
Key Skills:Freshers IT, BE, BSc, Bcom, BCA, MCA
Dear Candidate
AceSys is Mumbai based IT solutions company. We offer professional training course in PHP & MySQL which is designed as per industry requirements. We delivere extremely high standards of teaching and practicals. We have tied up with numerous Software development companies in Mumbai. Through these tie ups we have requirement for more than 25 PHP professionals. We are inviting you to join our PHP training course and explore lucrative career in web development.
Eligibility - Freshers Graduates BE, BSc, BCA, MCA, BCom
The syllabus for our course is available on below link -
http://phptraining.in/php-training/php-training-course-syllab us-mumbai-india
We have batches in the morning and evening. Please feel free to contact us for further details.
Phone :9833046902
Email - acesysindiagmail.com
About Company
Company Name AceSys India
Company Profile
AceSys is Mumbai based IT services company. We offer professional training course in PHP & MySQL which is designed as per industry requirements. We delivere extremely high standards of teaching and practicals.
Contact Information
Contact Name Neha
Address: 12, Prabhu Niwas
Tekdi Bunglow, Teen Petrol Pump, LBS Road,
Thane (W) - 400602
City Location -> Mumbai
States & Union Territories State & Union Territories -> Maharashtra
How To Apply
Apply Details
Apply Online
Category
Job Type Job Type -> Full-time
Share it with Friends:
Urgent recruitment for FRONT OFFICE IN-CHARGE / RECEPTIONIST
INFOTECH SOLUTIONS
Job Post Details
Job Description
ATTENDING GUEST / BILLING
NO. OF CANDIDATESc: 20 MALE / 20 FEMALE
THEIR MONTHLY SALARY [Min-Max]: Rs. 5000/- tO Rs. 8000/-
WORKING HOURS : 12 HRS, SHIFT BASIS
OTHER ALLOWANCES: INCLUDED IN SALARY, ESI & PF AVAILABLE
(D.A, T.A, W.A, HRA, etc IF ANY)
REMARKS: WANTED SMART & GOOD LOOKING
Education ANY BASIC DEGREE
Company Details
Company Name INFOTECH SOLUTIONS
Company Profile
Our INFOTECH is one of India's leading Company and was launched in the year 2000 with the goal of becoming the world's No.1 company and ever since that, has been growing vertically in its standards and has established itself in the length and breadth of industries of in numerous sectors. In addition, INFOTECH is registered under Government of India.
Required Places:BANGALORE, COIMBATORE, CHENNAI, DELHI, MUMBAI, HYDERABAD, CALCUTTA, PUNE, NOIDA, CHANDIGARH, GURGAON, GUWAHATI, GWALIOR, GOA, COCHIN, TRIVANDRUM, HOSUR, TIRUPUR, ERODE, AHMEDABAD, SECUNDARABAD, FARIDABAD, SILIGURI, SURAT, RAJKOT, VIZAG, KANPUR, BHOPAL, BHUBANESWAR, CUTTACK, INDORE, NAGPUR, JAIPUR, JODHPUR, LUCHNOW, MANGALORE, MYSORE, BELGAUM, THANE, PATNA, PONDY, SRINAGAR, SHIMLA, DEHRADON, IMPHAL, ITANAGAR, JAMSHEDPUR, JAMNAGAR, GANDHINAGAR, VADODARA & ALL OVER INDIA (Major Cities).
Candidate Details
Experience 0-3 Years
Keyword fresher, Walk-in, Opportunity, HR, Admin staff, Managers, Marketing officers, Business Development Executives, Supervisors, Designers, Secretary, Receptionist, Front office, Back Office Exe
Location Bangalore, Mumbai, Chennai, Hyderabad, Noida, Delhi, Across India
Deadline
Address Information
Contact Name Mrs. Sindhu
Address: ADMIN. OFF : INFOTECH SOLUTIONS, PRADEEP BUILDING, GAYATHRI LAYOUT, 4TH CROSS, BASAVANAPURA ROAD, K.R.PURAM, BANGALORE 560036, KARNATAKA STATE. 0-8880556388, infotechhrdeptgmail.com
City Location -> Across India
States & Union Territories State & Union Territories -> Tamil Nadu
How To Apply
Apply Details
Apply: E-Mail to your Resume Soft Copy + PP size Photo must (or) Send Hard copy with PP size Photo must +3Reply cover With Rs.5/-*3Nos. stamped thru courier.
ADMIN. OFF : INFOTECH SOLUTIONS, PRADEEP BUILDING, GAYATHRI LAYOUT, 4TH CROSS, BASAVANAPURA ROAD, K.R.PURAM, BANGALORE 560036, KARNATAKA STATE.
0-8880556388, infotechhrdeptgmail.com
Apply Email infotechhrdeptgmail.com
Category
Job Type Job Type -> Full-time
Industry Type
Classification Job Classification -> Hospitality & Tourism
Freshers Needed
iTarget Technologies
How to Apply See the Description and Application Instructions For more Details!
Job Post Details
Job Description
Fresher,s
+2 & Any Degree
Contact:
044-43538989/9281322 595
Job Function Application Developer - Cognos
Education +2 and Any degree
Company Details
Company Name iTarget Technologies
Candidate Details
Experience 0-2 Yrs
Reference 123
Keyword freshers, opening, software, engineer
Location Chennai
Deadline
Address Information
Address: hritargettech.com
Phone 044-43538989/9281322595
City Location -> Chennai
States & Union Territories State & Union Territories -> Tamil Nadu
How To Apply
Apply Details
Send your hritargettech.com
Category
Job Type Job Type -> Full-time
Industry Type Industry Type -> IT-Software/ Software Services
Classification Job Classification -> I.T Software -> Entry Level Jobs
Spring Source Technlogies
How to Apply See the Description and Application Instructions For more Details!
Job Post Details
Job Description
AS working as developer in java, Dotnet ,php
Education B.E. / B.Tech
Company Details
Company Name Spring Source Technlogies
Company Profile
This is the First IT Solutions in Vellore.
At Spring Source Technologies, we go beyond providing software solutions. We work with our clients technologies and business changes that shape their competitive advantages.
We have achieved this by creating and perfecting the global department and delivery of high quality, high value services, reliable and cost effective IT products to clients around the world varied offering.
Candidate Details
Desired profile should have a knowledge in related in software
Experience 1 Yr
Keyword JAVA,J2EE,DOTNET,ORACEL9I,EMBEDDED SYSTEM,VLSI,MATLAB
Location Vellore
Deadline
Address Information
Phone 9626247382,9626247381,9626247380
City Location -> Vellore
States & Union Territories State & Union Territories -> Tamil Nadu
How To Apply
Apply Details
Send your reusme at kamal.springgmail.com
Category
Job Type Job Type -> Full-time
Industry Type Industry Type -> IT-Software/ Software Services
Classification Job Classification -> I.T Software -> Entry Level Jobs
Intrack Inc
How to Apply See the Description and Application Instructions For more Details!
Job Post Details
Job Description
Good knowledge of testing process, test tools, test life cycle and defect life cycle, creation and understanding of testing artifacts like test plan, test case. Good Analytical skills to comprehend business requirements and convert them to test cases, independently. Execute test scripts and record results using Defect Management Tool. Good Communication in English.
**Candidates from Mumbai Only**
Apply jobsintrack.com
Company Details
Company Name Intrack Inc
Company Profile
Intrack Inc. is a Microsoft Partner focusing on specialized solutions for the Environmental, Health and Safety (EH&S) industry in the US. We provide software development and quality assurance services to our clients using a combination of technical and subject matter expertise. Our offices are located in Mumbai & Hyderabad, India and Woodbridge, NJ (USA). For details, visit our web site at http://www.intrack.com/
Candidate Details
Desired profile Manual Testing, Good Communication in English
Experience 0-2 Yrs
Keyword SQL, Automation testing, manual testing, Software Testing, Software Test Engineer
Location Mumbai
Deadline
Address Information
Address: Apply jobsintrack.com
City Location -> Mumbai
States & Union Territories State & Union Territories -> Maharashtra
How To Apply
Apply Details
Apply jobsintrack.com
Category
Job Type Job Type -> Full-time
Industry Type Industry Type -> IT-Software/ Software Services
Classification Job Classification -> I.T Software -> QA & Testing
Customer is King
How to Apply See the Description and Application Instructions For more Details!
Job Post Details
Job Description
VB.NET developer responsible for altering and creating the graphical user interface. Part of this position will involve web work as well as WinForms work.
You will be responsible for programming in an embedded environment in VB 6.0 and VB.NET. The person will wear many hats and must be available for travel. This is a progressive and fun company - complete with a BBQ out back and ping pong table.
College degree - preferred in either IT, EE (or technology related)
Must have knowledge of automotive systemsand how they work
Must be aware of electronics and Data Ack items to be able to write software to control them
Electrical, must be aware of ground loops
Automotive systems and how to test.
Requirements:
VB 6.0, VB.NET
VB.net using Visual Studio 2005 and up.
ASP.net.
Web services.
MySQL database / SQL query language.
Good graphic design experience.
Degree in Computer science preferred
keywords: Software developer, Programmer, Analyst, VB6, VB 6.0, SQL Server, Crystal Reports, VB.NET, .net, web application, web - based, Fresher, Software Engineer, Software Developer, Trainee, Developer, Software Trainee.
Company Details
Company Name Customer is King
Candidate Details
Experience 0-2 Years
Keyword Software developer, Programmer, Analyst, VB6, VB 6.0, SQL Server, Crystal Reports, VB.NET, .net, web application, web - based, Fresher, Software Engineer, Software Developer, Trainee, Developer, Software Trainee
Location Ahmedabad,Chennai,Bengaluru/ Bangalore, Hyderabad/ Secunderabad ,Guwahati ,Cochin/ Kochi/ Ernakulam ,Delhi, Mumbai, Kolkata ,Visakhapatnam ,Patna ,Vijayawada
Deadline
Address Information
Address: hr.customeriskinggmail.com
City Location -> Bangalore
States & Union Territories State & Union Territories -> Karnataka
How To Apply
Apply Details
hr.customeriskinggmail.com
Category
Job Type Job Type -> Full-time
Industry Type Industry Type -> IT-Software/ Software Services
Classification Job Classification -> I.T Software -> Entry Level Jobs
Jr. PHP Developer
Date of Posting: 29 March
Eligibility: BE/B.Tech (Computer Science Engineering, Information Science/Technology, Communication & Computer Engineering)
MCA (Computer)
Location: Lucknow
Job Category: IT/Software
Last Date: 3 April 11
Job Type: Full Time
'Hiring Process : Written-test.
Eligibility Criteria :
•Students from 2010/ 2011 BE/ B.Tech (CS/ IT)/ MCA batches with aggregate of 60% and above.
Skills Required :
•PHP 5, creating classes
•MySQL 5 - Database architecture and design
•Strong OOPS concepts
•Good RDBMS concepts
Job Description :
•Require PHP developer with knowledge in OOPS concept, classes, functions, etc.
Attributes Required :
•Good communication skills
•Ability to interpret written requirements and technical specification documents.
•Ability to code software according to published standards and design guidelines.
•Flexible attitude, ability to perform under pressure.
•A commitment to quality and a thorough approach to the work .
•Ability to work well within a team
Java Developer Date of Posting: 29 March Eligibility: BE/B.Tech (Applied Electronics, Computer Science Engineering, Electronics & Communication Engineering, Information Science/Technology, Communication & Computer Engineering)
MCA (Computer)
Location: Surat Job Category: IT/Software Last Date: 31 March 11 Job Type: Full Time Hiring Process: Written-test. Job Details
Job Description :
•Strong Conceptual and practical clarity of JAVA, J2EE
•Good knowledge in DB
•Tech documentation for his/her developed software including updating in system
•Testing His/her developed software
•Meeting with TL for requirement understanding
•Coding on various aspects as allocated by superior.
•Give Training to user
•Query solving
Eligibility :
•2009/2010 BE/ B.Tech (CSE/ ECE/ IT)/ MCA batches with aggregate of 60% and above
Off-Campus Recruitment
Eligibility: BE/B.Tech/MCA/ME/M.Tech/MSc
Location: Any where in India
Job Category: IT/Software
Last Date: 31 March 11
Job Type: Full Time Hiring
Process: Written-test.
Job Details
Cognizant's Combined Campus Freshers Recruitment Drive
Eligibility Criteria for IT :
•Open only to the students with following degrees
BE/ B.Tech / ME/ M.Tech / MCA/ M.Sc (Computer Science/ IT/ Software Engg)
•Year of graduation: 2010 batch only
•Consistent First Class (over 60%) in X, XII, UG and PG (if applicable)
•No outstanding arrears
•Candidates with degrees through correspondence/ part-time courses are not eligible to apply
•Good interpersonal, analytical and communication skills
Mock Online CTS exams launched at Power Placement Preparation “ You can find the latest Placement Papers with answers and shortest solving method at ‘CTS section in Power Placement Preparation’. Practice the CTS papers with timer to evaluate your success probability before attempting the real recruitment drive at CTS.
Subscribe now to Power Placement Preparation.
Login to View Company Profile Cognizant Technology Solutions (CTS) is a leading provider of information technology, consulting and business process outsourcing services. Cognizant?s single-minded passion is to dedicate our global technology and innovation know-how, our industry expertise and worldwide resources to working together with clients to make their businesses stronger. With more than 35 global delivery centers and over 50,000 employees, we combine a unique onsite/offshore delivery model infused by a distinct culture of customer satisfaction. A member of the NASDAQ-100 Index and S&P 500 Index, Cognizant is a Forbes Global 2000 company and is ranked among the top information technology companies in BusinessWeek?s Info Tech 100, Hot Growth and Top 50 Performers listings.
Movie is so good. It is very very super after long time i am seeing vijay in love subject. All are very happy about flim.
ximux Technologies
| |||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||
|
Bharat Electronics Limited (BEL)
| |||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||
|
Steel Authority of India Limited (SAIL)
| |||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
|
Professor, Associate Professor, Assistant professor, Information Scientist, Hindi Adhikari, Hidi Anuvadak, Hindi Tongkok
Posted by Ramchan in Jobs
Assam University
| |||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||
|
Procurement Specialist, Project Engineer, Project Officer, Environment Specialist, IT Specialist, Project Scientist Asst, Project Accts Asst, Project Procurement Asst, Project Office Assistant
Posted by Ramchan in Jobs
West Bengal Pollution Control Board (WBPCB)
| |||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||
|
Contributors
Followers
Ads
ramchan

At Kodaikanal
ramchan

At Kodaikanal
ramchan

At Ooty
ramchan

At Ooty Rose Garden
ramchan

At Kodaikanal Raam Still
ramchan

My favourite still
free seo sites
.If you wish to become medical transcriptionist then you need to check our Medical transcription training Online blog.
Categories
Blog Archive
-
▼
2011
(33)
-
►
January
(10)
- madurai jallikattu
- Palamedu jallikattu
- Alanganallur jallikattu
- Vijay movie, kavalan movie, kavalan review
- Customer Support Freshers required
- Software Professionals
- Junior Translators Hindi and English
- Professor, Associate Professor, Assistant professo...
- Procurement Specialist, Project Engineer, Project ...
-
►
January
(10)