Sei sulla pagina 1di 26

db2 Interview Questions

ALL-Interview.com Click on the Question to read answer and report incorrect category/incorrect Questions or answers What are the levels of isolation available with DB2V4? What is a Database Request Module(DBRM)? When is the results table for the query in a DECLARE CURSOR statement created? If the base table underlying a view is restructured, eg. attributes are added, does the application code accessing the view need to be redone? Is it possible to precompile if db2 goes down? explain check point with an example? insert into table name a column1, column2 select column1, column2 from table name b i am getting ab end -104. What is the error code -803 ? What do the initials DDL and DML stand for and what is their meaning? How will you delete duplicate records from a table? Lot of updates have been done on a table due to which indexes have gone haywire. What do you do? When do you specify the isolation level and How? What does it mean if the null indicator has -1, 0, -2? How do we create a table MANAGER (EMP-NO, MANAGER) where MANAGER is a foreign key which references to EMP-NO in the same table? Give the exact DDL. What is an inner join and an outer join? How is the SUBSTR keyword used in sql? What is a Resource Control Table(RCT)? Describe its characteristics? What is a clustering index? Where are plans stored? What is a root page?

Where is the access path logic created by the DB2 Optimizer stored? What happens to the PLAN if index used by it is dropped? What keyword does an SQL SELECT statement use for a string search? Which catalog table stores referential constraints? How to see the structure of db2 table? EXPLAIN has output with MATCHCOLS = 0. What does it mean? Give the COBOL definition of a VARCHAR field? When is the access path determined for dynamic SQL? What are the three lock types? How many buffer pools are there in DB2? What is the format(internal layout)of TIMESTAMP? What does CURRENTDATA option in bind indicate? What is dynamic SQL? What are simple,segmented and partitioned table spaces? What can the SET option of the Repair Utility accomplish? what is the maximum number of tables that can be joined? How do you Load a table and what is Load replace? What is the cascade rule and how does it relate to deletions made with a sub select? what are the frequent DB2 abends did you encounter in your programs?What are different SQL abends? How do you prepare a COBOL + DB2 program from coding till execution? what is commit & rollback?When and where they are used while compiling a COBOL-db2 program? How to solve 818 error? Do we have any option to search part of integer in DB2 as we have for character Like SUBSTR options? Can we install 2 different versions of Db2 on same mainframe?

In cursor program-1 can we create another cursor program-2 inside the cursor program-1.If yes how/no why ? what needs to be done if a table is in copy pending / check pending status? what is check point and restart Logic? why do we go for them? what is copy pending and check pending ? what is a plan and how do you refer the plan in the program? why should we bind the DB2 program?What happens if we did not BIND a BD2 program? My DB2 program first read the data from a file and then it look into a table with the data it got from the file.If we did not bind the program , should the file read before SQL execution be success? How to resolve the -305 error code in DB2 and how to resolve the db2 error codes? what is contained in the DB2 node lock file?A) data base names B)data base users names C)license keys D)server names which authority can be granted to group of users using the GRANT stmt?A)SYSCTRL B)SYSADM C)DBCTRL D)DB ADM which SQL commit successfully removes uncommitted changes from a DB2 database A)rollback B)delete C)drop D)recommit What is the purpose of coding FETCH in a SQL SELECT query? Explain with an example in Detail? What is the purpose of the SDSNLOAD data set in the STEPLIB while running DB2 programs? How to resolve -504 sql code in DB2? How to resolve -407 sql code in DB2? How to resolve -917 sql code in DB2? How to resolve -502 sql code in DB2? How to resolve -818 sql code in DB2? How to resolve -803 sql code in DB2? How to resolve -805 error in DB2? how the commit option works,how it save the changes? it will update the database or what?where we can see these saved changes How to define the a field which accepts value till 99999.99 in db2 Suppose the outcome of executing a query results in a row having null. Based on the answer how you use it? Its declaration

and inclusion? Is it possible to update a primary key value? If not, what is the error code given? If yes, can more than 1 primary key column be updated at a time? if we need to update a column, how you do that using cursor? Can a unique index have more than one null value? If not, what error code is given if an attempt is made to insert more than one null value? Can a primary key have null values? If we try to insert a null value in a primary key column, will it work or give an error code? What is the maximum length of a column name in DB2? 18 or 30 or anything other than these? In BIND, isolation level parameter specifies the duration of page lock and ACQUIRE, RELEASE also do almost the same thing. What is the exact difference between the two? Do they work in conjunction while executing SQL queries and obtaining locks? Is it Possible to read from PS file and write it to database by using dynamic sql(execute immediate) how does the defining of a stored procedure effect the size of a DB2 data base A) it increases the size of a data base B) it decreases the size of a data base C) it does not effect the size of the data base D) it changes the table space structures What is package visioning? give an example? why db2 is called as universal database?what is the storage capacity of db2v9 n what are the advantages of db2 If a table has a column "dept" (declared to have nulls) and there are 10 rows in the table of which 3 have a null value in the dept column, what will select count(*) and select count(distinct dept) return? DB2 is a A)data base/data communication system B)data base C)RDBMS D)Programming language What is the SQL query to select, delete and get count of duplicate rows in DB2? AGGREGATE function support by DB2. A)SUM & AVG B)SUM,MIN & AVG C)SUM,MAX,AVG,MIN &COUNT D)NONE What is Call attach facility? How does it work? If we keep the DCLGEN structure for a table in a copybook and include it in the COBOL program using the COPY statement, will there be any impact during compilation or at any stage of program execution? If a non-DB2 program calls a DB2 program, the calling program's name will be there in SYSIN of IKJEFT01 and the plan name will be that of the called program. But is a bind needed or a plan has to be created for the non-DB2 program also? Can SQL statements/queries be included in a copybook? When you are working with the project after coding what will u do? Like what type of documents u will prepare? How will u do testing?

what is the certification that has a good value for a practitioner in mainframes but not having much knowledge on db2 related stuff? How Plan is created while executing the query using SPUFI? What value the host variable will contain ,if null indicator value is -2? Will it contain the truncated value or nothing will move? What if we try to insert the base table through up datable view , but failed to give a column value which is defined as NOT NULL. What if,we failed to mentioned null indicator in sql select query,that may retrieve null value ? What if we fail to give values in columns declared as NOT NULL? what is difference between DROP TABLE & DELETE TABLE ? what if null values retrieved from database and no null indicator mentioned in query. What is sql code Can we able to find all the Table names under a Particular Plan? My COBOL program(not having any sql statements) is calling another COBOL program (having sql statements), what is needed for compilation and run in jcls . What error we will get if my select query gives multiple row while executing a COBOL-DB2 program.How can we solve it without using a cursor? tell me about the normalization five types? One program calling 5 subprograms, its a COBOL db2 program, after recompilation how many plans and packages will created? What techniques will be used to avoid deadlock? How to get Top 10 Salaries from a Table can we drop column from a table? How to know the primary key of a table without defining the primary key in the table? What are the functions in DB2? why we create view? Can we use select * statement in COBOL program without giving field names? what will be the output of the below given query, if no matching records are found : (a.) 0 (b.) null (c.) error select Avg(salary) from Table A where Dept no = 'insurance' what is consistency token?

How to update more then one record using update? How to insert more than one record using insert? Say CUST Table contains records like: CUSTNO CUSTNAME CUSTLOC 100 ABC SSS 200 XYZ 300 PQR 400 MNO WWW 500 CVV ------------- ------------- Now write a query to retrieve all records with CUSTLOC no data. We have requirement to Replace BMC Db2 Load product their CA FAST LOAD Plus product. Do anyone have JCL to for FAST LOADPLUS and what all are thing need to take in consideration what will happen with out using Commit,when closing cursor and program? What does this mean?GRANT BIND,EXECUTE ON PLAN MK2 TO PUBLIC; A Table Field is declared as Decimal(7,2). we want to insert the decimal in to this column throw COBOL-db2 program. How should we declare my local input file variable or any suggestion? How to resolve SQL Code -310. The db table Field is declared as Decimal(7,2). How to create a table using embedded sql? What is UNION,UNION ALL? What is FREEPAGE and PCTFREE in TABLESPACE creation? What does the REORG Utility do? In which column of which DB2 catalog would you find the length of the rows for all tables? What do you mean by NOT NULL WITH DEFAULT? When will you use it? What are the advantages of using a PACKAGE? On the create table space what does the CLOSE parameter do? What is page space? What is an access path? What can the Locate option of the Repair Utility accomplish? What happens to a table space when its recovery information has been removed and a full recovery is no longer possible? When is the authorization check on DB2 objects done - at BIND time or run time? What are the functions of Bind? What is IMAGECOPY ?

What is COPY PENDING status? Assuming that a site's standard is that program name = plan name, what is the easiest way to find out which Will precompile of an DB2-COBOL program bomb, if DB2 is down? What is lock contention? What is the COBOL picture clause for a DB2 column defined as DECIMAL(11,2)? What information is contained in a SYSCOPY entry? What is meant by AUTO COMMIT? What is the syntax required for the creation of a cursor? What is the database descriptor? Under what circumstances will DB2 allow an SQL statement to update more than one primary key value at a time? What is Skeleton cursor table (SKCT)? What Utility is used to migrate DB2 from one release to the next? What is read-only cursor? What is the significance of the CURSOR WITH HOLD clause in a cursor declaration? What are delete-connected tables? What is the purpose of the DSNC transaction? What are the disadvantages of using VARCHAR? What is the difference between TYPE 1 index & TYPE 2 index? what is a collection? what type of copies can be made with the COPY Utility ? What is an intent lock? What is sqlcode -811? What is a view?Why will you use it? What is the COMMIT accomplish?

How do you do the EXPLAIN of a dynamic SQL statement? Where would you find the information about the type of database authority held by the user? What is a precompiler? Can DASD types assigned to storage groups be intermixed (i.e., 3350s and 3380s)? What is correlated subquery? What is an asynchronous write? What is a composite index and how does it differ from a multiple index? Is it mandatory to use DCLGEN? If not, why would you use it at all? When one binds a PACKAGE( of a plan )what package information is stored and where it is stored? How could one combine a set of incremental image copies into a single copy? How can you quickly find out the number of rows updated after an update statement? Explain the use of the WHERE clause? How does DB2 store NULL physically? What is a recovery log? What is a DB2 access path? What does DSNDB07 database do? What is JOIN and different types of JOIN? Can All Users Have The Privilege To Use The SQL Statement Select (DML)? What is ACQUIRE/RELEASE in BIND? What is the syntax of SELECT statement when embedded in a COBOL program? How are write I/Os from the buffer pool executed? What is REORG?When is it used? What is the maximum number of tables that can be stored on a Partitioned Table Space? When would you prefer to use VARCHAR?

What do you mean by NOT NULL? When will you use it? what's the error code for Unique Index Violation? what are the max. & min. no. of partitions allowed in a partition table space? When can an insert of a new primary key value threaten referential integrity? Why do we use RUNSTAT Utility? can we alter a table (e.g. adding a column) when other user is selecting some columns or updating some columns from the same table? What DB2 Catalog column tell you when an index needs table reorganized? What information is held in SYSIBM.SYSCOPY? How is a typical DB2 batch program executed? Explain transactions,commits and rollbacks in DB2. What are column-name qualifiers used? What statistic will tell the DBA how much space can be reclaimed from dropped What statistic will tell the DBA how much space can be reclaimed from dropped table spaces on the next reorg run? What is the purpose of the QUIESE Utility? What does the RUNSTATS Utility do? What is meant by index cardinality? What are the possible isolation levels? what's the equivalent COBOL Data type for Decimal(x,y)in DB2? what does the current SQLID register contain? Name some fields from SQLCA? What is a LIKE table and how is it created? does which transaction use a command thread? What is correlation names? Can you access the DB2 Directory table using SQL?

tell me max number of columns in a db2 table? Can DB2 be accessed by TSO users? If yes, which command is used to invoke DB2? What's the Maximum Length of SQLCA and what's the content of SQLCABC? Can we declare DB2 HOST variable in COBOL COPY book? What is DCLGEN? What is meant by the attachment facility? In terms of DB2 indexing what is the root page? What are the disadvantages of PAGE level lock? when does the SQL statement get executed when you use cursor in the application programming? What are leaf pages? What is a NULL value? What are the pros and cons of using NULLS? What is cursor stability? What are the different methods of accessing db2 from TSO? How is the connection established between TSO & DB2? What technique is used to retrieve data from more than one table in a single SQL statement? What's the maximum number of characters that a table name can have? What is a DBRM and PLAN? Explain about the EXPLAIN statement? What is the significance of DB2 free space and what parameters control it? What are the three DB2 date and time data types and their associated functions? what is the name of the default db2 catalog database? What is QUIESCE? What is DB2 (IBM Database 2)? Describe the elements of the SELECT query syntax? DB2 can implement a join in three ways using a merge join, a nested join or a hybrid join. Explain the differences?

What is the FREE command? What is the command used by TSO users to invoke DB2? Compare a sub select to a join? What is meant by repeatable read? How does DB2 use multiple table indexes? What should be specified along with a cursor in order to continue updating process after commit? What is a lock? What is the function of buffer manager? Where is the output of EXPLAIN stored? The only place of VSAM KSDS in DB2 is? How would one remove old reorg information from the DB2 catalog? Usually, which is more important for DB2 system performance - CPU processing or I/O access? What is the SQL Communications Area and what are some of its key fields? What is a result table? How do you insert a record with a null able column? What do you need to do before you do EXPLAIN? What is a predicate? What is isolation level? Where besides the DB2 catalog is database object information stored by DB2? What is the STOSPACE Utility used for? How do you declare a host variable (in COBOL) for an attribute named emp-name of type VARCHAR(25)? How would you print the output of an SQL statement from SPUFI? what's the best lock size that you could use when you create a table space? What is the meaning of -805 SQL return code?

What are the three types of page locks that can be held? How do u achieve record level locking in DB2 versions when record level locking is not allowed? What are some characteristics of columns that benefit from indexes? How does DB2 determine what lock-size to use? What is a DB2 bind? What is sql code -922 ? What are some SQL aggregates and other built-in functions? Is there any advantage to denormalizing DB2 tables? What is the purpose of the WHENEVER statement Why might full image copies be faster to implement than an incremental image copy? What is a DB2 catalog? What is a buffer pool? What is a SELECT statement? What is the function of the Data Manager? How many clustering indexes can be defined for a table? What does the sqlcode of -818 pertain do? How many sub queries can you combine together? What is RUNSTATS? What is Declaration Generator(DCLGEN)? What are the contents of a DCLGEN? What will the DB2 optimizer do? Can you define an Index if the table size less than 10 PAGES? How would you move a table space (using STOGROUP) to a different DASD volume allocated to that table space? What is a sub query ?

What is meant by concurrency? What is the difference between IN sub select and EXISTS sub select? What information can you find in SYSIBM.SYS LINKS table? What will the FREE command do to a plan? What is the picture clause of the null indicator variable? What are the 4 environments which can access DB2 ? If we have a view which is a join of two or more tables,can this view be up datable? What are the various locking levels available? Where could you look if you had a question about whether a column has been defined as an index? What does the CHECK Utility do ? What is the physical storage length of each of the following DB2 data types: DATE, TIME, TIMESTAMP? How to define the data items to receive the fetch items for the SQL? Give some example of statistics collected during RUNSTATS? Can we use LOCK TABLE on a view? What information is used as input to the bind process? Once you create a view,where would information about the view be stored? What is a host variable? What else is there in the PLAN apart from the access path? How do you simulate the EXPLAIN of an embedded SQL statement in SPUFI/QMF? Give an example with a host variable in WHERE clause How do you retrieve the data from a nullable column? Name the different types of Table spaces? What is the difference between CS and RR isolation levels? What is the size of a data page?

How do you leave the cursor open after issuing a COMMIT? (for DB2 2.3 or above only) When Can you be sure that a query will return only one row? What is a sub select? Is it different from a nested select? What is SPUFI? Describe what a storage group(STOGROUP) is? In a DB2-CICS program which is acts as co-ordinate and which is participant? What are the four lockable units for DB2? How does one remove entries from the SCT02 table? Is DECLARE TABLE in DCLGEN necessary?Why it is used? Which catalog tables contain authorization information? What's the maximum number of volumes that can be added to a STOGROUP? What is filter factor? What is a thread? What is meant by a unit of recovery? What does DML stand for and what are some examples of it? When will you chose to run RUNSTATS? How do you filter out the rows retrieved from a Db2 table? How does one bind 2 versions of a CICS transaction with the same module name in two different CICS regions that share the same DB2 subsystem? What is the difference between a package and a plan? what is Runstats? When will u choose to runstats? What is bufferpool?Where we use it? what is the process of precompiler? How many Logical files can referenced to single Physical file?

how to get data definition of a table in DB2 database how to describe a table in DB2 database i have one rpg program.program name is rpg1. this program have sourcecode is deleted.but obj is their in system.how to retrieve the source code.
COMMON INTERVIEW QUESTIONS AND ANSWERS

why do you want to work for us? Why do you consider yourself suitable for this post? Give me an example of any major problem you faced and how you solved it Do you consider yourself successful? who is your inspiration and why what is your greatest strength

Why Do You Want To Work At Our Company? What motivates you,Money or Success ? why you choose our company? what is your job strength ? what is your ability? briefly describe your ideal job? what are your short term goals? Why do you think you are the best for this post? why u want to join this company? Tell me something about your self Why should we hire you? What Are your strengths and weaknesses? where do you see yourself in five(5) or ten(10) years from now?

Why did you leave your (current)present/previous job/Company? what exactly do you look for a job? what is your expected salary how to impress the interviewer? Describe any happy moment in your life? What is your philosophy of life? Why we should not hire you? Why,you would like to join this organization? What goals do you have in your career what makes you stand out among other candidates? Tell us about a time when you failed to meet a deadline. What were the repercussions? If you get a Opportunity to go with a reputed company which is ready to pay more than what we r going to pay here.Will you quit the job from here or what? Can you work well under deadlines or pressure?How? what is your goal of life? WHAT IS YOUR SALARY EXPECTATION? why do you want to work here? what is your memorable day tell me about your ideal person and why?

What would be your advantage in the future if you join now? How much salary do you want? What types of people do you get along with and why. How do you plan to achieve these goals? how do you manage your stress

Why do you think you do well? What are things most important to you in your job? What do you love and hate? tell me some thing about global warming what kind of salary are you looking for? What is your favorite past time? How do you see yourself? Describe how your experience, qualifications and competencies match the position for which you are applying What is more important to you: the money or the work? why did you apply for this job What are your future Plans? Why You Are Looking For A New Job What job would you like to have in five years time? what will you do if you dont get this job What motivates you to do a good job? Sometimes a person younger to you might be in a better position.Are you comfortable taking directions from him? Describe yourself as a third person? what is the best way to start with the interview what are the challenges you faced in previous job? Tell me a situation you solve with creativity tell about your favorite game What have you learned from your previous jobs? Describe your work ethic? Why have you chosen the role you are applying for?

Briefly describe your duties and accomplishments What is your greatest achievement? what education & training is required ?How did you find your job ? What is your most significant experience? how will u design a pipe Describe the workload in your current (or most recent) job Explain how you would be an asset to this organization Speak about city where you live What would you consider as your biggest achievement and why? Tell me about a time when you were able to identify a problem and resolve it before it became a major issue How long do you think it would be before you will make a significant contribution to the team/company? what do u preffer to be after 3years? Tell me something about your happiest day of your life. how can we justify yourself that you are fit for this job? AT WHAT YOU ARE THE BEST? What job position/s are you currently holding with your current employer? describe a difficult situation? tell about your most memorable movement How would you spend a million pounds? Tell me something about your worst day of your life. How would you describe your ideal job?As per my interest so that I can work with full devotion and can fulfill my professional ethics. why are you interested in our company. tell me about a situation when your work was criticized?

what is your ideal boss? Why cannot you clear the ijp(internal job posting) what attracted you to this position? what about your job profile can u speak around for 5mins about {Bangalore/any} city? What inspires you tell something about your father? Tell me about your family background. What will be your expected Salary? Can you justify your Salary? what is your career aspect & if they asked in general what should i answer? What are your strengths and areas of improvement? how long do you think you would want to be in the employment of the organization? what is positive and negative in you? what influenced you to choose this career?? Tell me about your dream job. what motivates you and de-motivates you What have you done to show initiative in your career? what is the negative & positive thing in you? How do you prioritize your personal matter over work? What is your principles and values in life Describe about your ideal company what was your toughest/hardest decision you ever had to make? what makes you the suitable candidate for this position Have you worked with other on team endeavors

Tell me about how you have left a position better than you found it what is your passion in life?

When do you get angry? what makes you dissatisfied about your current job? what are you doing before this job

What do you consider as the biggest challenge you have encounter in the work place Please explain to us one conflict situation that you have experienced in your work life and how did you solve it why u want to come to lower pay scale

Tell me about an experience in which you had to use tact? Who are our major competitors and what differences do you notice in our products? How do you determine or evaluate success? According to your definition of success, how successful have you been so far? What activities have you done in the past? What kind of person are you? What is Your organizational structure? what job profile are you interested in? What were your greatest accomplishments and challenges? if you were hiring a person for this job,what would look for? As a MBA marketing student why do you want to pursue your career in banking sector How to describe our city(Hyderabad) in a topic round during the interview time? what is your dream vacation Why do you think you are a qualified candidate for the job? what are your hobbies? how could i rate my self about my knowledge in programming

what is your name how would you relate your key competencies to this position? What is your career plan? what would you want to be paid. are you the right person for this job? whats a prefect introduction

How do you handle pressures and deadlines and multi-tasking? how do you plan your typical day at work how to answer for gap between education and work what are your job responsibility in your place of work? tell me about Bangalore

what can you contribute to this company? How much do you expect if we offer you this position how do u rate yourself on the scale of one to ten? what is the expansion of Philips? how many degrees of comparisons in English and explain about it? how did u spend your yesterday?

suppose you are asked a question concerning salary expectation, how do you tackle that question?

what are you doing why do you want a change? in which field u r working now How are you different from others?

dressing style for interview? What impact would you make in our organization? What is your aim how to give self introduction what is your weakness and why? Describe yourself what is your edge from the other applicants? why would u like to choose this profession? What attracted you to this job? In your last job,what would be the one thing that your peers most disliked about you? What qualities do you think make someone successful in business? Give us details of your present Employment Status. How soon can you travel down to any location posted to? how can you hire me when i have no experience?but i have ability to work for your company in your opinion,how many these weaknesses be addressed? why should we give you this job? why you would like to be considered for this role how do you see yourself after two years from now why you have left this job? what are your current weaknesses? why do you think you are fit for this job,you don't have experience,i don't think you are fit for a job What do you expect for your salary?Is this negotiable? How would your friends describe you? what is your favorite personality

Why are choosing this company instead of other company?

WRITE AT LEAST FOUR STRENGTHS how long will u work here what do you consider to be your most significant achievement?what difficulties did you encounter in realizing the achievement and how did you overcome them how do you work under pressure and solve your problems why do you want to join us? How creative are you?Give an example. Why should you be given the job? What are the benefits of being a graduate of Associate of computer Studies? What courses have you liked most?Least? Why? What do you do in your spare time? who serves as your inspiration while working? how do you find your salary? Can you give an advice to those students who are technician,taking computer programs? What does "success" mean to you?

when the interviewer asks, what is the Architecture of your project what we have to answer... plz provide the answer with the example Tell me about your current job and responsibility Why did you left the previous organization what is the best dress code for interview what is faithfulness in your point of view Give me your Self introduction why do you fit for the job

what you want to become in your life? can you briefly describe your current position, its duties , and responsibilities? what is your attitude towards adversity and temptation? what sort of things motivates you? Mention briefly organisation structure of the company indicating your position in the hierarchy and the levels above and below you what examples can you give that emphasize your interest in this kind of work What shall i do if i do not like some people at my office place . how shall i handle this kind of situation ? how long would you like to stay with this company? how do you rate yourself as a professional? tips for successful interviews how did you spend your last weekend What is the difference between doing a good job and doing a great job? what is the best possible answer of "why do you want to change" How shall i react if i do not like some people in our office why do like to work with us what is your daily routine how can i explain my project How long would you expect to work for us if hired? what motivates you ,money or work? Could you please introduce yourself? What attributes can you bring to this position? what initiative you did in last company as you worked for 3 years? Hi, Recently i have resigned a job. what i have to tell for the new employer that if he asks why you have resigned your previous job.i have worked there for 10 months.

WHY DO YOU WANT TO LEAVE YOUR PRESENT JOB? what value you will add to our company if you are selected why looking for job change within 6 months what makes you different from other candidates? WHAT IS THE DIFFERENCE BETWEEN HARD WORK AND SMART WORK? what kind of salary do you need? Where do do you want to being five year? why are you leaving this position? how to perform first round in interview What are the values & beliefs that have guided your life so far and how do you see them influencing your future? what do you expect to learn from this job what motivates you to work hard? Please tell us briefly about a situation in your life when you have had to stretch yourself to meet a new situation or higher standards? give me directions on how to get here in this office from where you currently reside what would you do if your boss needs several things done at the same time? introduce your self did you leave your job voluntarily or were you fired? Why are you looking for a new position (if you are currently employed)? kind of cement kind of pipe kind of g.i sheet size of shuttering scaffolding pipe How do you feel about the same job or work in progress right now. what are challenges and benefits from effective communication in the workplace Mention briefly organisation structure of the company Why did you leave your earlier job without any new job in hand?

What are your short term and long term career goals? what is personality What will you do if your senior officer do not mind your work ? what are some things about global warming how you spend your yesterday from morning to till evening? how long u will stay for us tell me about a problem you solved in unique way Please outline your long term goals and ambitions that may be of interest to us Why did you choose this particular field what work or personal qualifications are you most proud of? could you give me a general description of your job / career? how & why did you choose this career ? Were you doing anything at the age of 13 to prepare ? Is there anything you would have done differently to prepare ? Favorite part of career/job? Least favorite part what is the meaning of passion

Potrebbero piacerti anche