GeekInterview.com
Answered Questions

Object to generate XML

Asked By: robindas | Asked On: Dec 28th, 2012

What are the various methods provided by the dataset object to generate XML? note:- XML is one of the most important leap between classic ADO and ADO.Net.So this question is normally asked more generally how can we convert any data to XMLformat. Best answer is convert in to dataset and use the below...

Answered by: Lokesh M on: Jan 7th, 2013

DataSet object provides the following methods to generate XML:
ReadXML
WriteXML
GetXML

Touch potential

Asked By: Padlock | Asked On: Nov 19th, 2012

What determines touch potential

Answered by: Lokesh M on: Jan 3rd, 2013

You create a low-impedance path by bonding the metal parts of the electrical system and the grounded (neutral) conductor. You can achieve a touch potential of < 50v by reducing the resistance between...

How to explain sales project in interview.

Asked By: kishore sai | Asked On: Aug 3rd, 2012

How to explain sales project in interview.Could u tell me modules or dim table with some column names and facts how to move data from dim to facts.And give me what logic u implement in that projects

Answered by: Lokesh M on: Jan 3rd, 2013

For explaining your sales project: You can follow these points and cover them based on your actual project. 1. Name of the Project 2. Name of the Client 3. Brief Description of the Client 4. Brief ...

What is the advantage in creating force view?

Asked By: samyuvi | Asked On: Feb 18th, 2012

Answered by: Lokesh M on: Feb 18th, 2012

Force view creates the view even if the underlying tables / referenced objects are not present. Force View are used while executing a script that has create tables and views statements or while creating a view for remote table.

Who is responsible for the maintenance of the software after it is deployed?

Asked By: rolex1 | Asked On: Feb 17th, 2012

Answered by: Lokesh M on: Feb 18th, 2012

In case of computer networks, the network engineer is responsible for the maintenance of computer hardware and software that comprises a computer network otherwise maintenance group and the maintenance programmer is responsible for the maintenance.

How to export the contents of a combo box to the table?

Asked By: rolimohanty | Asked On: Feb 12th, 2012

I want to export the contents of a combo box to the data table so that I can parametrize the test using the data present in the combo box. thanks in advance roli

Answered by: prashanth on: Mar 28th, 2012

You can see the combo box values in the run time data table. "vb cb_count=Window("window name").WinComboBox("Combobox name").GetItemsCount For x = 0 to cb_count-1 cb_item = Wind...

Answered by: Lokesh M on: Feb 18th, 2012

combo_box = Window("Window Name").WinComboBox("ComboBox Name");
cb_count = combo_box.GetItemsCount
For x = 0 to cb_count-1
cb_item = comboBox.GetItem(x)
INSERT INTO TableName VALUES(cb_item)
Next

Explain when Java application can run out of memory ?

Asked By: janpachno | Asked On: Feb 12th, 2012

Answered by: Anon on: Apr 12th, 2012

if you have an infinite loop that keeps on doing things that take up memory (like creating objects).

Answered by: sampra on: Mar 6th, 2012

We all know Java automatically garbage collects unused objects. But you must remember that an object is considered as unused only when the object no longer referenced. That means a referenced class continues to exist and to take up memory space even if it is not used.

Why is multiple inheritance not allowed in c#?

Asked By: Con2Vini | Asked On: Feb 10th, 2012

Answered by: Lokesh M on: Feb 12th, 2012

One reason is to avoid name collision or avoid the problem of Identity which can lead to collision in method overriding. However, please note that absolute multiple inheritance is not possible in C# but C# partially supports multiple inheritance via Interfaces.

What is picking and packing in computer networking

Asked By: Ajay Kr. Sharma | Asked On: Feb 9th, 2012

Answered by: Lokesh M on: Feb 12th, 2012

As far as I know this term is used for items that needs to be picked from various locations in a warehouse whenever a customer fills the shopping cart and & submits the list for purchase.

Can constructor throw an exception?

Asked By: naveen.chinthala | Asked On: Feb 9th, 2012

Answered by: avinash on: Sep 26th, 2012

yes,if exception related statements are there in constructor then it automatically throws an exception,if that is un-checked.

Answered by: Jacqui on: Aug 13th, 2012

How can that be if constructors are not inheritable?

Can we declare main() as final?

Asked By: naveen.chinthala | Asked On: Feb 9th, 2012

Answered by: visal Sigh on: Oct 26th, 2012

Yes we can.

Answered by: manas on: Jul 7th, 2012

As main is static we cant declare final.

Tiny, large, huge memory models

Asked By: Lovababu_Golthi | Asked On: Feb 7th, 2012

I need the above said memory types explanation. please tell me any one.

Answered by: Lokesh M on: Feb 14th, 2012

There are six types of memory models. 1. TINY Memory Model: Used when code under 64KB is and data is under 64KB 2. SMALL Memory Model: Used when code under 64KB is and data is under 64KB 3. MEDIUM Me...

What is decommission liability? In which senior it will occurs in balance sheet?

Asked By: mpratish | Asked On: Feb 6th, 2012

Answered by: Lokesh M on: Feb 9th, 2012

Decommission Liability is costs that a company expects to incur in the future when the plant is shut down.

Properties in c#

Asked By: Velvizhi.Sadanah | Asked On: Feb 6th, 2012

What are properties in c#? What are the advantages of using properties ?

Answered by: Sivavt on: Mar 25th, 2012

Properties combine the behavior of method & variable.

Answered by: Lokesh M on: Feb 9th, 2012

Properties are members of classes. They are also used in structs and interfaces. Properties are an extension of fields but they do not designate storage locations. Properties provide a flexible mech...

What is bit twiddling in Java?

Asked By: Nitin Vavdiya | Asked On: Jan 27th, 2012

Answered by: Lokesh M on: Feb 10th, 2012

Bit Twiddling was used in earlier days for efficiency. It is a technique used for bit manipulation. Java bitwise and bit shift operators such as NOT, AND, OR, XOR, LEFT-SHIFT, RIGHT-SHIFT, UNSIGNED-RI...

What is the usage of abstract method?

Asked By: karthikkannan1988 | Asked On: Jan 27th, 2012

Answered by: Lokesh M on: Feb 10th, 2012

Abstract classes used to implement polymorphism. Abstract class allows additional method declaration in the class.

Please read detailed discussion here http://www.geekinterview.com/question_details/19145

Sit testing

Asked By: me.tamanna12 | Asked On: Jan 26th, 2012

What should be responsibility and scope for system integration testing

Answered by: Nithin on: Apr 24th, 2013

I am strongly against the point "Developers are responsible for System integration testing". UNIT testing is the only testing area of developer. It should be modified as "Unit testing on integration of systems is responsibility of developer"

Answered by: manisha on: Feb 7th, 2013

I am not satisfied by your answer, SIT is end to end testing and is done by tester.

What is singleton? What is the purpose of singleton? How to get connection in websphere portal server?

Asked By: nareshKumarwps | Asked On: Jan 21st, 2012

Answered by: Lokesh M on: Feb 9th, 2012

Singleton class is a class in which only one instance of the object exist at any point of time. So a Singleton class is basically used when we want to restrict instantiation of a class to only one obj...

What is the purpose of clonable interface?

Asked By: nareshKumarwps | Asked On: Jan 21st, 2012

Answered by: Lokesh M on: Feb 10th, 2012

Cloneable interface is a marker interface and has no members. Cloneable is used whenever you want to manipulate a copy of the object without altering the original object. It is used to indicate that...

What is xref?

Asked By: vardhan.frd | Asked On: Jan 19th, 2012

Answered by: Lokesh M on: Feb 10th, 2012

XRef data is written for Assembler, COBOL, or PL/I programs. XREF makes the Compiler produce a cross-reference listing. XRef data is written for the file and each field in the file that are accessed in the program using an
EXEC ADABAS GENERATE or a COPY statement.

How to solve soc 7 error.?

Asked By: vardhan.frd | Asked On: Jan 7th, 2012

Non numeric data transfer to numeric causes soc 7.But I want with reference to .....Xref,line number,..

Answered by: Lokesh M on: Feb 18th, 2012

You can make use of Tool Expeditor to get the SOC7 Abbend corrected. S0C7 error is caused due to data exception or bad record because of wrong data in the program. Find out the offset value in joblog. Mapping that offset value to the lines of codes where error occurred. Get it corrected.

What is nim server in aix?

Asked By: rakesh.keepgoing | Asked On: Dec 29th, 2011

Answered by: Lokesh M on: Feb 10th, 2012

NIM Server stands for Network Installation Management server. It is used for maintenance as well as management of AIX images on LPARs and also on individual stand alone servers. NIM can group instance...

Message error

Asked By: nghiavt2004 | Asked On: Dec 17th, 2011

How can I get off a error message Oracle form a0001 ask me to save the record when I change a record to other ?

Answered by: Shital Mistry on: Aug 11th, 2012

If it an oracle error you are trying to trap than I would use ON-ERROR trigger on specific block, use built ins DBMS_ERROR_CODE, DBMS_ERROR_TEXT to trap the error.

Answered by: Shital Mistry on: Aug 6th, 2012

I would write ON_MESSAGE trigger on block level, trap particular message with built ins MESSAGE_CODE, MESSAGE_TEXT and handle the error...

What is clustered table in Oracle? Difference between clustered table and view?

Asked By: Pradeep_Oracle | Asked On: Dec 12th, 2011

A cluster is a schema object that contains data from one or more tables, all of which have one or more columns in common.

Answered by: ravinder on: May 4th, 2012

Clustered table store data of multiple table based on common columns.

View is virtual table or which has attached select query.Its not actual table.

Answered by: Lokesh M on: Feb 13th, 2012

A cluster is a group of tables which share the same data blocks. Clusters are an optional method of storing table data. Cluster share common columns and are often used together. It is a powerful met...

Extract statement

Asked By: Alokiteshwar Tiwari | Asked On: Dec 10th, 2011

What does the extract statement do in ABAP program?

Answered by: Lokesh M on: Dec 11th, 2011

Extract statement is a shortform for EXTRACT HEADER. It is used to extract dataset.
When Extract statement is encountered then the System creates the extract dataset and adds the first extracted record.

Domain and data element

Asked By: Alokiteshwar Tiwari | Asked On: Dec 10th, 2011

What do you define in domain and data element?

Answered by: Pradeep Abaper on: Jul 16th, 2012

domain is used to assign data type and values for a field to be created in a program. if you make any changes in the domain the attributes of the table related to that domain also changes accordingly ...

Answered by: sharmistha on: Mar 2nd, 2012

domain is a technical characteristic of a field such as data types and length.

Description of a field is provided by a data element

What is table maintenance generator?

Asked By: Alokiteshwar Tiwari | Asked On: Dec 10th, 2011

Answered by: srinivasaraju.vysyaraju on: Jun 6th, 2012

About Table maintenance generator: If your table maintenance generate end user easily enter data for the table. there are two types in it. 1. one-step 2. two-step if you do one-step processor what are...

Answered by: rajesh on: Dec 21st, 2011

Without using data dictionary end user can access the data by using a t.code it is to modify, change, delete.

Table maintanace genarator t.code is sm30.

What will be happen if data store down in citrix?

Asked By: needvicky | Asked On: Dec 5th, 2011

Answered by: Lokesh M on: Feb 10th, 2012

If Data store is down then MetaFrame administrators will not be able to edit any configurations in the Management Console such as publishing applications and new MetaFrame Presentation Servers cannot be added to the farm.

How to handle credit claims?

Asked By: Louise Spencer | Asked On: Dec 4th, 2011

Answered by: Lokesh M on: Feb 7th, 2012

- Gather, transfer and transmit complete information and details related to credit claims such as identification, assessment and valuation - Assign of identification numbers for the claim - Check eli...

Write function vowels to count the vowels and letters

Asked By: yong ha | Asked On: Dec 3rd, 2011

Write function vowels to count the vowels and letters in free text given as string. Then print out the number of occurrences of each of the vowels a, e, i, o and u in the string, the total number of letters, and each of the vowels as an integer percentage of the letter total. suggested output format...

Answered by: Lokesh M on: Feb 14th, 2012

I would suggest you make use of string.find() and string.substring() methods, make use of loops and counter variables to achieve the objective.

Write a function reverse which takes a strings as a parameter and prints it out in reverse.

Asked By: yong ha | Asked On: Dec 3rd, 2011

Example:reverse (hello) prints out (olleh)

Answered by: mahamad on: Jun 14th, 2012

Code
  1. #include<stdio.h>
  2. #include<conio.h>
  3. #include<string.h>
  4. main()
  5. {
  6. char s[100];
  7. int i;
  8. printf("Enter ANy String:=>");
  9. scanf("%s",&s);
  10. printf("-----------Reverse String is---------------
  11. ");
  12. for(i=strlen(s);i>=1;i--)
  13. {
  14.       printf("%c",s[i]);
  15. }
  16. getch();
  17. return 0;
  18. }

Answered by: ankur on: Jun 7th, 2012

Code
  1. #include<stdio.h>
  2. #include<string.h>
  3. void main()
  4. {
  5. int a,i;
  6. char b[100];
  7. char s[100]="in this world let there be a name and fame to those who can";
  8. a=strlen(s);
  9. for(i=0;i<=s;i++)
  10. {
  11. b[i]=s[a-i];
  12. }
  13. printf("%s",b);
  14. }

What are some methods to allocate support cost?

Asked By: cmartinez | Asked On: Dec 1st, 2011

Answered by: Lokesh M on: Feb 7th, 2012

Some methods to allocate support cost are:

1. Direct Allocation Method
2. Step-Down Method (also known as Sequential Allocation Method)
3. Reciprocal Method

What is a chargeback?

Asked By: cmartinez | Asked On: Dec 1st, 2011

Answered by: Lokesh M on: Feb 7th, 2012

Chargeback means refund / return of funds to the buyer. Here the bank reverts back the transaction between the buyer and seller when chargeback is initiated. A chargeback is initiated by the buyer w...

What are the etl tester responsibilities?

Asked By: phani.nekkkalapudi | Asked On: Nov 28th, 2011

Answered by: Lokesh M on: Feb 18th, 2012

Some of the ETL Testers Responsibilities are as follows: - Test ETL software. - Test ETL datawarehouse components. - Executing backend data-driven test. - Create, design and execute test plans, test ...

Etl testing in Informatica

Asked By: phani.nekkkalapudi | Asked On: Nov 28th, 2011

As an etl tester what are the things to test in Informatica tool. What are the types of testing has to do in Informatica and the things to test in each type? If there is any documents on etl testing

Answered by: lakshmi on: Jan 31st, 2013

ETL Testing in Informatica: 1. First check the workflow exist in specified folder. 2. Run the workflow. If the workflow is success then check the target table is loaded on proper data else we can nee...

Answered by: Lokesh M on: Feb 18th, 2012

- Test ETL software. - Test ETL datawarehouse components. - Executing backend data-driven test. - Create, design and execute test plans, test harnesses and test cases. - Identify, troubleshoot and pro...

What are Oracle hints and how do you use them ?

Asked By: Jaikumar D V | Asked On: Nov 24th, 2011

Explain the real-time situation where would you use Oracle hits

Answered by: Lokesh M on: Dec 7th, 2011

Oracle optimizer is responsible for handling different situations by making appropriate decisions based on database statistics. It will create route path that is most appropriate to execute the code. ...

What is a query subject?

Asked By: Rajani | Asked On: Nov 20th, 2011

Answered by: srihari on: Apr 6th, 2013

Query subject is nothing but a Table

Answered by: Ashish on: Mar 15th, 2012

A query subject is like a select statements which contain certain columns from the database. It is not exactly the replica of the columns in the database so you cannot say it as the database table. It is a view of the database table containing few or all of its columns.

How to generate systemutil.Run command automatically while recording?

Asked By: raj | Asked On: Nov 16th, 2011

I have QTP 9.2(mercury) when I record a test the scripts are generated but the very first line (i.E)systemutil.Run is not generated and while running the test I get the message as cannot find all programs object parent.

Answered by: Lokesh M on: Nov 28th, 2011

Navigate to Tools Menu -> Options -> Windows Applications Here Click on "Advanced" button and the scroll down You will see "Utility Object" Select the "Record SystemUtil.Run commands" Click on OK bu...

What is index property in descriptive programming?

Asked By: amrutagore | Asked On: Nov 10th, 2011

Could you explain, why is it bad practice to use index property in descriptive programming?

Answered by: bindu on: Aug 24th, 2012

1. get cell data using webtable("webtable").getcelldata(row,column) and we can click the link
2. Get all the links count in the webtable and click the link

Answered by: balagp84 on: Aug 7th, 2012

Hi Lokesh,

Can you please elaborate your answer with example, how an index property negates the DP?

How to hide the files with vbscript ?

Asked By: cameron | Asked On: Nov 6th, 2011

Hi, i want code in vbscript that make all (files and folders) : a- if there are some (files and folders) not hidden make them hidden and if there are other (files and folders) hidden stay hidden without any change.

Answered by: Lokesh M on: Dec 20th, 2011

You need to make use of GetFile method on FileSystemObject and then set the value of "Attributes" property to -1 to hide the file.

Database driver

Asked By: rjk1203 | Asked On: Oct 31st, 2011

How to find which type driver used in Java or j2ee applications? Which type used commonly?

Answered by: sampra on: Mar 6th, 2012

oracle.jdbc.driver.OracleDriver

Answered by: Lokesh M on: Nov 29th, 2011

java.sql.Driver interface used to find and use the JDBC driver for a database. Oracle thin driver is commonly used

Code
  1. oracle.jdbc.driver.OracleDriver

What is awr report in Oracle?

Asked By: zyed.shaikh3 | Asked On: Oct 24th, 2011

Answered by: oracle2066 on: Dec 28th, 2011

You also have AWRSQRPT that collects statistics and tracks SQL statements as well.

Answered by: Lokesh M on: Nov 29th, 2011

Automatic Workload Repository (AWR) is the enhanced version of statspack and is used as performance gathering and reporting tool. AWR is basically used to gather performance related statistic such as ...

Informatica error rep_12014 : error occured while accessing the registry

Asked By: vishallakhotia | Asked On: Oct 20th, 2011

Hiiam learning Informatica 8.1 ( which is what I could get my hands on)..I am connecting to Oracle 10g.I created 2 connections to the db using connection --> relational connection browser.The source and target are the same db in this case, just diff table names. But created 2 separate connections .I...

Answered by: Raghu on: Mar 9th, 2012

Delete it

Answered by: Lokesh M on: Dec 20th, 2011

Try these and see if it helps

- Delete statics and try to retrieve.
- Try to export with INDEXES=n STATISTICS=none
- Disable auditing with "noaudit session"
SQL> noaudit session;

How do you find the size of the object in Java ?

Asked By: vikas kushwah | Asked On: Oct 15th, 2011

Answered by: Lokesh M on: Nov 28th, 2011

You can make use of getObjectSize function to find size of the Object.

Code
  1. long getObjectSize(Object objectToSize)

Insert method in ASP.Net

Asked By: sudheer766 | Asked On: Oct 11th, 2011

How an insert method of the SQLdata source control works in asp .Net

Answered by: Lokesh M on: Jan 4th, 2013

The SQLDataSource methods such as Insert method is associated with ad Hoc SQL queries or stored procedures. When SQLDataSource is invoked via Web control: - A database connection is established, - O...

Shared object repository

Asked By: sivsuresh.bv | Asked On: Sep 21st, 2011

How to get local repository as shared repository?

Answered by: Lokesh M on: Nov 28th, 2011

There are many ways to move objects from Local Repository to Shared Repository. For instance, you can "Export Local Object" option under "File" Menu in the Object Repository to perform this.

Bpt framework

Asked By: sureshgottipati | Asked On: Sep 20th, 2011

How to drag the QTP code(actions) to qc bpt components

Answered by: Lokesh M on: Dec 8th, 2011

Create Components in Quality Center BPT Tab Create Initialization Component Create One Component for Each Tab Create Verification Components Create QTP Automation for New BPT Components Drag and Drop ...

Ordinance in correlation

Asked By: cheran teja | Asked On: Sep 19th, 2011

What is the significance of ordinance in web_reg_save_param during correlation?

Answered by: Pavithra on: Apr 1st, 2013

Ordinance is used to capture all the values of a dropdown

Answered by: Chitra C on: Sep 7th, 2012

In Manual correlation web_reg_save_param("C_xxx", "LB=xxxxx", "RB=xxxxxx", "ORD=All", ...

MPFI

Asked By: nikhil | Asked On: Sep 17th, 2011

How does MPFI works? & explain me the mechanism of it? What is the purpose of it ?

Answered by: Rajnish Kumar on: Sep 22nd, 2011

MPFI means Multi point fuel injection.MPFI injects fuel into the intake ports just upstream of each cylinder's intake valve, rather than at a central point within an intake manifold. MPFI (or just MPI...

Answered by: Lokesh M on: Sep 18th, 2011

MFIS stands for Multi Fuel Injection System. MFIS controls timing along with the amount of fuel that gets injected. In MFIS, air and the fuel is mixed just before the inlet. MPFI system injectors ar...

What is descriptive object program?

Asked By: dipungrh | Asked On: Sep 15th, 2011

Answered by: Rahul on: Jan 31st, 2012

The object diagram should use , When relationship of objects are getting at the runtime and system is very complex

Answered by: Lokesh M on: Nov 28th, 2011

The technique of identifying objects on the basis of their properties collection or by giving description in the form of string arguments is known as Descriptive Programming. It is mainly used in the...

How to set GLobal setting for query studio?

Asked By: chandu22.csp | Asked On: Aug 24th, 2011

Answered by: Lokesh M on: Nov 28th, 2011

Steps to set / modify Global Setting for Query Studio: 1. Stop the Cognos 8|ReportNet server. 2. On the Cognos 8|ReportNet Server, go to the directory /c8|crn/templates/ps/async/ 3. Either create a n...

Locality of reference

Asked By: glory agarwal | Asked On: Aug 27th, 2011

What does locality of reference mean in term of operating system

Answered by: Lokesh M on: Nov 30th, 2011

In order to run a computer, several data locations needs to be referenced in a short period of time. Such data locations consists are in relatively well predictable clusters. This concept of frequentl...

Vertical and horizontal cluster

Asked By: raghav | Asked On: Aug 26th, 2011

What are the advantages & disadvantages of vertical cluster & horizontal cluster? Which is the best? Why?

Answered by: Lokesh M on: Dec 9th, 2011

In horizontally clustered environment, cluster-enabled application is deployed on multiple physical machines. Each machine is available for requests. Horizontal clusters offers protection over hardwar...

Alternative to tk prof in Oracle 11g

Asked By: ishashi | Asked On: Aug 22nd, 2011

Hi, what is alternative to tk prof (used in Oracle 9i) in 10g and 11g? regards, shashi

Answered by: geekano on: Jan 4th, 2012

Trace Analyzer Traditionally, tkprof has been the best tracing diagnostics tool available. That is, until the introduction of Trace Analyzer which is everything tkprof is and more. However, as ...

Answered by: Lokesh M on: Nov 29th, 2011

You can make use of PL/SQL based TRCA

Other notable alternatives are
SQLTXPLAIN
Method-R profiler
OraSRP
TVD$XTAT

What is disk scheduling algorithm?

Asked By: pollarnets | Asked On: Aug 15th, 2011

Answered by: Lokesh M on: Dec 9th, 2011

Disk scheduling algorithms are algorithms designed and used for scheduling disk operations Disk scheduling algorithms dramatically increase disk performance Disk scheduling algorithms aims to minimiz...

Hybrid automation framework structure

Asked By: Nithin | Asked On: Aug 11th, 2011

I was been asked to write the hybrid framework structure in an interview. Could you please let me know the hybrid framework structure.

Answered by: Lokesh M on: Dec 9th, 2011

As the name implies, Hybrid framework is a combimation of many frameworks. Frameworks such as Data Driven Framework, Keyword Driven Framework and Functional Decomposition framework are combined togeth...

How to create pivot table ?

Asked By: sachinvinaya | Asked On: Jul 19th, 2011

Explain with an example which situation that pivot tables can save time compared to any other reporting tools available

Answered by: Lokesh M on: Jan 3rd, 2013

Using Pivot Table we can view data multidimensionally. It is basically used for improved presentation of data. A Pivot Table not only summarizes data by categories but also by subcategories. One of t...

Internet connection issue

Asked By: Rob Doyle | Asked On: Jul 12th, 2011

If someone finds that their internet connectivity is down, how would you fix the problem?:

Answered by: Stan on: Aug 23rd, 2011

If someone is using a laptop they may have accidentally turned their wifi connection off. This is fixed by:

Looking for the wifi connection button on the top row of the keyboard. It looks similar to the letter A surrounded by parenthesis. Push it to turn the wifi connection back on.

Answered by: Lokesh M on: Jul 13th, 2011

I would ask them to do the following steps.

Step 1. Reset / Restart the Modem.
If no connection then

Step 2. Reset Network Connection / Restart the PC
If not connection then

Step 3. Call up the Internet Service Provider and log a complaint.

High water mark

Asked By: hkravipati | Asked On: Jul 9th, 2011

What is high water mark? Give an example where it can be useful ?

Answered by: Lokesh M on: Dec 12th, 2011

High Water Mark (HWM) represents total number of extent blocks used by a table. The value of High Water Mark could sometime be more then the actual size required/used by a table. This is because, some...

Importance of Java.Lang.Obj

Asked By: sandyl2 | Asked On: Jun 30th, 2011

What is the significance of Java.Lang.Object class?

Answered by: sampra on: Mar 6th, 2012

java.lang.Object provides several methods which are common to objects. java.lang.Class object is created whenever JVM creates an object.

Answered by: Lokesh M on: Nov 29th, 2011

java.lang.Object provides several methods which are common to objects. java.lang.Class object is created whenever JVM creates an object. java.lang.Class is a superclass of all objects and it describe...

MySQL query problem

Asked By: GAUTAMJANGRA | Asked On: Jun 16th, 2011

I have two table a and b.With table a I fired a query to get a count, and a query with table b to get a count.Now I want total of both count.But I want to this all in one query.Example:- I fired tqo queries as-1- select date(today_date), count(1) from table day1 group by date(today_date);2- select date(yesturday_date),...

Answered by: Lokesh M on: Jan 3rd, 2013

You can do it like this

SELECT (SELECT COUNT(1) FROM table DAY1 GROUP BY DATE(Today_DATE)) + (SELECT COUNT(1) FROM table DAY2 GROUP BY DATE(Yesterday_DATE)) AS TotalCount FROM day1 LIMIT 1

Sort_area_size usage

Asked By: raghava.727 | Asked On: Jun 10th, 2011

Why we use sort_area_size parameter in init.Ora file?Kindly let me know?

Answered by: Lokesh M on: Dec 6th, 2011

SORT_AREA_SIZE is one of the deferred Oracle Server Parameters which is set in init.ora. Its value as bytes (integer) sets the size of in-memory sort work area. The default is 64K and the maximum valu...

Difference between data abstraction, schema and instance

Asked By: Omer Alwi | Asked On: Jun 5th, 2011

Difference between the three levels of data abstraction, and between a schema and instances.. Consider a two dimensional integer array of size n*m that is to be used in your favorite programming language. Using the array as an example, illustrate the difference (a) between the three levels of data abstraction,...

Answered by: Lokesh M on: Nov 19th, 2011

Data Abstraction means suppression of information / details of data organization and storage. Data Abstraction gives importance to mainly essential aspects in order to help better understanding of th...

In what situation you have to prefer offline and online backups ?

Asked By: karthikdb | Asked On: May 20th, 2011

Answered by: Lokesh M on: Dec 6th, 2011

Online backup also known as hot backup / open backup can be performed even the database is open and while users are working and is available for read and write activity. To perform Online backup, the ...

Invoice discrepancy

Asked By: candiehuston | Asked On: Mar 28th, 2011

How do you resolve a invoice discrepancy that you discover

Answered by: Lokesh M on: Feb 11th, 2012

Send a debit note/memo to vendor
Ask the vendor to send credit note/memo for the discrepancies caused.

Rom image

Asked By: mmsherin | Asked On: Mar 6th, 2011

Define rom image and explain each section of a rom image in an exemplary system?

Answered by: Lokesh M on: Dec 10th, 2011

A ROM image captures the data from a read-only memory chip, such as hardware firmware, video and arcade game boards, etc. It is often used for emulation.

Run PL/SQL block from SQL server

Asked By: vrushali | Asked On: Jan 18th, 2011

How do you run PL/SQL block from SQL server

Answered by: Lokesh M on: Dec 12th, 2011

Try these and see...

Go To Options -> Run SQL
Set "Statement Delimiter" to None

Go To Options -> Technical Parameters
Tick "Use SQLExecDirect"

Vlan trunking

Asked By: icarunprasad | Asked On: Nov 29th, 2010

What is vlan trunking? How does it work?

Answered by: Lokesh M on: Jan 7th, 2013

VLAN trunking enables single network adapter to act as "n" number of virtual network adapters, "n" has a theoretical upper limit of 4096 VLAN network segments. However it is limited to 1000 VLAN n...

Quality and productivity measures

Asked By: bgunanathan | Asked On: Nov 25th, 2010

The individual who supports in preparing metrics need to have working knowledge of quality and productivity measuresa – trueb – false

Answered by: Lokesh M on: Jan 4th, 2013

Yes, Answer is A True,
Test metrics team is required to possess a working knowledge of quality and productivity measures.

Delete entire linked list

Asked By: shyamkumar1221 | Asked On: Nov 20th, 2010

How to delete a entire linked list?

Answered by: Lokesh M on: Dec 10th, 2011

You delete a linked list by iterating through the list and deleting the nodes one by one. Begin at the head Get address of first node Get address of next node Delete first node Do not to access next ...

Ip vpn and internet vpn

Asked By: shanishp | Asked On: Nov 13th, 2010

What is the difference between ip vpn and internet vpn ? Does both comes with static ip adress?

Answered by: Lokesh M on: Jan 7th, 2013

Both IP VPN as Internet VPN are generalised terms. These are not proper usage terms. Inetnet based VPNs IPsec Layer-3 network level protocol open standard technology SSL/TLS PPTP These VPNs are acce...

Knowledge brokering

Asked By: avinashb87 | Asked On: Oct 19th, 2010

Hi all,what are the tools or the softwares required or used by knowledge brokers in knowledge mangement sytem for their processing?Thanks,avinash

Answered by: Lokesh M on: Jan 4th, 2013

Knowledge Management System generally comprises of:

Collaborative Environments
Social Computing Tools
Simulation Tools
Knowledge Ecosystem
Knowledge Management Softwares
Contact Centers
Self-help portals
Call Centers
Service Desks
FAQ systems
Web self-service

EIm

Asked By: satman123 | Asked On: Oct 11th, 2010

When you run an EIm job using configuration file(ifb). If you get an error and the log says invalid file name. What will you do?

Answered by: Lokesh M on: Jan 4th, 2013

This error occurs when the file is not located in the folder from the Batch file is run. You need to verify if the configuration .ifb file name and the path to the file is valid and is correctly spe...

Entity relationship

Asked By: GeekUser97212 | Asked On: Aug 5th, 2010

Explain a one-to-many strong vs. One-to-many weak entity relationship.

Answered by: raman sharma on: Mar 2nd, 2012

entity relationship when attribute are connected to entity there are different different type attribute are available weak entity and strong entity when we are using key that called strong entity and when key are not connected that called weak entity

Answered by: Lokesh M on: Nov 20th, 2011

Weak Entity generally don't possess key attributes of their own whereas a Strong Entity possess its own key attributes that are independent of other entities. Weak entity is usually existence-dependent on another entity type and does not have enough attributes to form its own primary key.

Kernel package

Asked By: kamlesh21 | Asked On: Jun 16th, 2010

Why is Oracle called kernel package?

Answered by: Lokesh M on: Dec 8th, 2011

Oracle introduced the Unbreakable Enterprise Kernel for Oracle Linux during Sep 2010 which runs directly on Oracle LINUX 5 with fast, modern, reliable kernel that is optimized for Oracle software and hardware.

Labyrinth sseal

Asked By: joyalthenamkodath | Asked On: Apr 24th, 2010

List different types of labyrinth seals how to measure labyrinth seal clearrence?What is the allowable clearence?

Answered by: Lokesh M on: Dec 8th, 2011

Different Types of Labyrinth Seal are as follows: Axial Labyrinth Seal Radial Labyrinth Seal Low Cost Labyrinth Seal Bearing Shield Labyrinth Seal Nilos Ring (AV) Labyrinth Seal Nilos Ring (JV) Labyr...

What is evaluated receipt settlement?

Asked By: zulkarnain | Asked On: Mar 17th, 2010

Answered by: Lokesh M on: Feb 7th, 2012

Evaluated Receipt Settlement also known as ERS is a business transaction process between trading parties. In this type of process, the PO information as well as the goods receipt information is used to make direct payment to the supplier without even receiving an invoice.

Before operating systems

Asked By: ramya kandasamy | Asked On: Mar 10th, 2010

Before the introduction of operating systems what concept was used in computer?

Answered by: Lokesh M on: Nov 30th, 2011

Prior to the introduction of Operating System, operation instructions were generally fed into the electronic system bit by bit on rows of mechanical switches or by jumper wires on plug boards.

Covering indexes

Asked By: psingla | Asked On: Mar 9th, 2010

List down the advantage and disadvantages of covering indexes.

Answered by: Lokesh M on: Dec 12th, 2011

Covering Indexes are useful for Input / Output intensive workloads.
Covering indexes are smaller in size
Covering Indexes are sorted by values
It is easier to cache date in Covering Indexes

Covering Indexes cannot be used to select all the columns / entire table.

Earthing cable size

Asked By: amanat | Asked On: Feb 23rd, 2010

Calculate the size of earthing conductor between earth pit & 2000 kva generator.

Answered by: Lokesh M on: Jan 3rd, 2013

Earth Grounding Conductor (EGC) size should not be less than 25 percent of the capacity of the phase conductors or the over-current device. For rating or setting of automatic overcurrent device not ex...

Recovery catalog

Asked By: santisofttuch | Asked On: Jan 11th, 2010

How will you find-out if your database is using recovery catalog or not?

Answered by: Ram on: Jun 20th, 2012

Querying views like rc_database in each catalog will identify the target database it is registered with.

Answered by: Lokesh M on: Dec 6th, 2011

There are few ways through which you would find if your database uses recovery catalog: Check backup scripts and findout if the scripts are making any connection to a recovery catalog. Check tnsnames...

Relationship between database and data warehouse

Asked By: 6Gaara6 | Asked On: Dec 1st, 2009

What is the relationship between a company's databases and its data warehouse?

Answered by: Hirru on: Feb 10th, 2012

Database is a structured collection of relational data. Database is used to store the relational, network or hierarchical data. It contains some sort of data and it is being used by the organization...

Answered by: Lokesh M on: Nov 19th, 2011

In simple words, a database is used to store information, and a data warehouse is used to query and analyse the stored data in several ways. Data warehouse helps business management to take important...

Representing SQL server objects

Asked By: polkam.raju | Asked On: Sep 23rd, 2009

How do represent objects in SQL server? Is it possible? If yes, how?If not? Why?

Answered by: Lokesh M on: Dec 12th, 2011

Try using Server Management Objects (SMO) classes

Framework manager dimensions

Asked By: srikala123 | Asked On: Sep 17th, 2009

How to create regular and measure dimensions? How we will use these dimensions in the report?

Answered by: Lokesh M on: Dec 9th, 2011

A regular dimension organizes the information. It is stored in a hierarchy, from the highest level of granularity to the lowest. It usually has multiple levels. Each level requires a key and a captio...

Control accounting

Asked By: bharani2k5 | Asked On: Aug 7th, 2009

What is control accounting? What is the use of it?

Answered by: Lokesh M on: Feb 7th, 2012

A control account represents a summary of general ledger. It helps us to keep the general ledger free of innumerable transaction details. However the details of all transactions will still be maintai...

Gift items depreciation

Asked By: sadhan_mondal1981 | Asked On: Jun 28th, 2009

What is the treatment of depreciation on gift items?

Answered by: Lokesh M on: Feb 7th, 2012

It may depend and differ based on what the gift items are.

Measure dimension

Asked By: Sandhya Madhu | Asked On: Jun 10th, 2009

What is measure dimension?

Answered by: Lokesh M on: Dec 8th, 2011

A measure dimension is nothing but a collection of facts.
A measure dimension can be created for one or more query subjects provided they have a valid relationship between them.

Response time

Asked By: shilpasrinivas | Asked On: May 19th, 2009

How to calculate response time in client-server technology?

Answered by: Lokesh M on: Dec 9th, 2011

This can be done by measureing the time taken by the first byte to reach the client (TTFB) and the time taken by the last byte of the response to reach the client (TTLB) by using various network bandwidths between the client and the server.

Conductor resistivity

Asked By: parag12345 | Asked On: Apr 12th, 2009

When a small amount of cu is added to a ni conductor, then the?A) resistivity of ni will decrease at all temperatures because cu is better conductor than nib) residual resistivity of ni at low temperatures will increase as cu atoms acts as defect centersc) resistivity of ni will increase at all temperatures...

Answered by: Lokesh M on: Jan 3rd, 2013

Answer is C. If a small amount of Cu is added to Ni conductor, then resistivity of Ni will increase at all temperatures as Cu destroys the periodicity of Ni and acts as defects. According to Matthies...

Retail invoice vs. Tax invoice

Asked By: arunendra pratap singh | Asked On: Mar 16th, 2009

What difference between retail invoice and tax invoice?

Answered by: AJAY on: Feb 10th, 2012

Retail invoice is a normal invoice given to a customer at the time of sales, it is not concerned with tax-credit. Whereas tax invoice is a mandatory invoice precribed by the tax authorities containin...

Answered by: Lokesh M on: Feb 7th, 2012

Whenever sales transaction does not involve any tax component, then retail invoice is issued. Such type of invoice is also known as cash memo. No VAT credit can be claimed on retail invoices. Wheneve...

Cost control

Asked By: debbydebby4real | Asked On: Sep 9th, 2008

What is cost control? What are the duties of a cost controller?

Answered by: Lokesh M on: Feb 7th, 2012

Cost control is a process that is followed in order to reduce the overall cost of production / service which results in not only saving more but also ensures competitive strategy. Cost controls ensur...

What are freight charges?

Asked By: email2mariner | Asked On: Aug 23rd, 2008

Answered by: Lokesh M on: Feb 7th, 2012

Freight charges is the cost of transporting the goods from the seller place to the purchasers location. This cost shall include packing, loading / unloading, carriage, shipping cost etc.,

Resource manager parameters

Asked By: sk_naresh | Asked On: Aug 4th, 2008

What are the parameter of resource manager?

Answered by: Lokesh M on: Nov 30th, 2011

Resource Parameters are classified under 2 categories: Main Parameters Additional Parameters Main parameters are the most important parameters pertaining to functionality, performance, and availabil...

Cost reporting

Asked By: garcialf | Asked On: Jul 22nd, 2008

Explain the process of cost reporting

Answered by: Lokesh M on: Feb 7th, 2012

Cost report displays cost analysis results with details regarding average cost against revenue allocated for product / service, along with weighted average costs.

Stacktrace server error log

Asked By: shanthiavari | Asked On: Jun 10th, 2008

What should you do when you find a stacktrace in the server errorlog?

Answered by: Lokesh M on: Dec 7th, 2011

When the server crashes, it generates core dump. If value of orclsdumpflag is set to 0, then the server will also attempt to leave a stack trace. The location for the stack trace is: ORACLE_INSTANC...

Online redo logs

Asked By: shanthiavari | Asked On: Jun 10th, 2008

Outline the steps for recovery with missing online redo logs?

Answered by: Lokesh M on: Dec 8th, 2011

Create pfile from spfile Edit pfile with _allow_resetlog_currpuation=true 1) Connect / as sysdba 2) Startup 3) Recover database until cancel; 4) Alter database open resetlogs; In RMAN restore: RMAN...

How to calculate the row length?

Asked By: aadhisrilatha | Asked On: Jun 9th, 2008

Answered by: Lokesh M on: Dec 7th, 2011

You can make use of VSIZE function to get the number of bytes in the internal representation of individual field. However this cannot be applied on fields that has BLOB data type and in such case you have to use dbms_lob.getlength function on BLOB data type field.

High raised building construction

Asked By: khare_sandip | Asked On: May 22nd, 2008

Soil density test, bearing capacity of soil?

Answered by: ANJIKHANE RUPALI on: Mar 6th, 2013

For Bearing Capacity, Plate load test is required to conduct and for soil density core cutter or sand replacement method is used.

Answered by: VENKATESWARLU on: Jan 2nd, 2013

Soil density is found by using core cutter method or sand replacement method. Similarly bearing capacity of soil can be found by using plate load bearing test.

Improve hard disk transfer rate

Asked By: rajanithunga | Asked On: Feb 29th, 2008

How to increase transfer rate of an hard disk?

Answered by: Lokesh M on: Dec 9th, 2011

See if any among these helps to increase Hard disk transfer rate... - Try using RAID setup - In Device Manager under ATA/ATAPI Controllers verify if the hard disk is running in UDMA mode. - Update m...

What is seeded invoice?

Asked By: arameshofc | Asked On: Dec 28th, 2007

Answered by: Lokesh M on: Feb 12th, 2012

It is a part of Oracle Order Management Implementation. Seeded meaning initial data or pre-defined data provided with the system. Order Management sends invoices and credit memos to Receivables via t...

Seeded invoice in accounts payable

Asked By: giri.tsg | Asked On: Dec 22nd, 2007

What is seeded invoice?

Answered by: Lokesh M on: Feb 12th, 2012

It is a part of Oracle Order Management Implementation. Seeded meaning initial data or pre-defined data provided with the system. Order Management sends invoices and credit memos to Receivables via t...

How to write script using database

Asked By: sappi_01 | Asked On: Dec 11th, 2007

Hello, I have imported log file into ms access with columns server,date,time,url.I need to write vb script in vb editor for accessing rows in between given date and time.It's urgent.Please can any body help with this.Thanks

Answered by: Lokesh M on: Nov 29th, 2011

MS Access has built-in Visual Basic Module Editor, Click on Modules Tab Click New Create Public Function Put in your code Save, Close, Re-Open, Now you can use your VB Script anywhere in MS Access...

What is folder form?

Asked By: bhaskar | Asked On: Sep 19th, 2007

Definitions, usage and its information in Oracle forms 9i

Answered by: Lokesh M on: Dec 8th, 2011

Oracle Applications - Folder Functionality are made use of in custom forms. Folder Functionality enables user to perform host of actions on fields such as ordering, renaming, resizing, moving, including, excluding etc., in a multi-row block.

Discuss the layered structure of an operating system. List the major services provided by an operating system

Asked By: aakansha_133 | Asked On: May 15th, 2007

Answered by: Lokesh M on: Dec 19th, 2011

Layered structure of an operating system: LAYERS ===== User User Interface Program / Application Program System Services and File System Input and Output Management User Console Memory Management Pro...

Why QTP is called a "keyword driven test tool"?

Asked By: phoneix.deep | Asked On: May 15th, 2007

Answered by: Lokesh M on: Dec 8th, 2011

QTP is called A "Keyword Driven Test Tool" because it is based on Keyword-driven testing technique. Keyword-driven testing is one type of Test Automation frameworks. There are other types for framewor...

How is user interfaces powerful in Ajax?

Asked By: Remasri | Asked On: Mar 25th, 2007

Answered by: jnaneswarisd on: Jun 4th, 2009

Using Ajax, a web application can request only the content that needs to be updated, thus drastically reducing bandwidth usage and load time. The use of asynchronous requests allows the client's W...

Answered by: Shivanna on: Nov 29th, 2007

AJAX helps in refreshing / requerying parts of web page without reloading the entrie webpage there by increasing performance and ultimately user interface

How is stored procedures managed in MySQL?

Asked By: Robert | Asked On: Mar 25th, 2007

Answered by: Lokesh M on: Nov 30th, 2011

Details of existing stored procedures in MySQL can be obtained from ROUTINES table in INFORMATION_SCHEMA database.

Stored Procedures can be managed using the following:

CREATE [FUNCTION|PROCEDURE]
ALTER [FUNCTION|PROCEDURE]
DROP [FUNCTION|PROCEDURE]
SHOW CREATE [FUNCTION|PROCEDURE]

What is the format used for real numbers by clipper?

Asked By: SriramKrishna | Asked On: Mar 23rd, 2007

Answered by: Lokesh M on: Dec 12th, 2011

Clipper uses binary floating point format for Real Numbers which could result in precision related errors.

What are the steps to be taken for improving performance in Microsoft access database?

Asked By: Remasri | Asked On: Mar 9th, 2007

Answered by: Lokesh M on: Nov 29th, 2011

Few of the steps that can be taken to improve the performance of Microsoft Access Database are as follows: Plan and Design your tables appropriately as required. Create Normalized Tables. Do not cr...

What is the way for summing up a column in a table in Microsoft access database?

Asked By: scott | Asked On: Mar 9th, 2007

Answered by: Lokesh M on: Nov 29th, 2011

You can create a query using SUM function to calculate the sum of a column.

SELECT SUM([Column_Name]) FROM [Table_Name]

or

In reports You can place a field in footer with control source as "=SUM([Column_Name])" which will calculate the sum of the column.

How can one get the deleted records in Microsoft access database?

Asked By: scott | Asked On: Mar 9th, 2007

Answered by: Lokesh M on: Nov 29th, 2011

Though there are options to recover a deleted table, there is no option to get back records that are deleted directly from database tables.

Records once deleted from database tables cannot be undone.

How can one implement the concept of triggers in Microsoft access database?

Asked By: sripri | Asked On: Mar 9th, 2007

Answered by: Lokesh M on: Nov 29th, 2011

There are several methods in MS Access where the concept of triggers can be put to use From Tables, Forms, Reports You can create triggers at various levels and events. In fact MS Access makes this p...

What are the objects present in the table msysobjects of Microsoft access database?

Asked By: joel | Asked On: Mar 9th, 2007

Answered by: Lokesh M on: Nov 29th, 2011

The following objects are present in MsysObjects table of Microsoft Access

Connect
Database
DateCreate
DateUpdate
Flags
ForeignName
Id
Lv
LvExtra
LvModule
LvProp
Name
Owner
ParentId
RmtInfoLong
RmtInfoShort
Type

Hows do electrons travel through a lightning bolt?

Asked By: Ellen | Asked On: Oct 15th, 2006

Answered by: Lokesh M on: Dec 10th, 2011

Generally, lightning is negatively charged. During thunderstorms. The Earths is recharged and its surface becomes good conductor of electricity. The Earth is charged negatively and the atmosphere i...

I have a masters in iit and I have an industry experience of 1year 8 months in performance testing. Now, I would like to shift towards s/w development in C and/or c++.Could anyone please help me in this...

Asked By: kondalarao | Asked On: Apr 1st, 2006

Answered by: Lokesh M on: Apr 9th, 2006

Hello Mr Kondalarao Your major plus point is Masters in IIT, While you have a good chance in getting into development,make sure you start sharping your C and/or C++ skills. Since you are experienced...

I am working as a networking engineer for 2 yrs. I have experience in network layer protocol,voip,broadband,router ,r>f applied in data networking as installation,troubleshooting engineer.My more interest...

Asked By: atanujee | Asked On: Mar 31st, 2006

Answered by: Lokesh M on: Apr 9th, 2006

Dear Atanu Banerjee You experience as Network Engineer and your profile is good, there should not be any difficulty in your career growth in networking field, However, with your interest in developm...

How to maintain prefix no in tr.Code sale

Asked By: v pradeep | Asked On: Mar 21st, 2006

Answered by: Lokesh M on: Dec 11th, 2011

We know that workflow definition will have 8-digit number with the prefix WS Out of this 8-digit number, first 3 digits of this number is used for prefix number and the system automatically assigns t...

What is the role for a manual tester

Asked By: priya | Asked On: Jan 27th, 2006

Hi, I am planing to get a job in manual testing. Can any help me in what a manual tester does from initiation of the project to end of the project.What are his role from base.Thanks,priya

Answered by: rawoof on: Nov 2nd, 2007

Please send your resume to rawoof@sbbhome.com.

Soft Bits and bytes is hiring for Software testers.

Please walk in at the below mentioned address:

Soft Bits and Bytes
#615/3,2nd floor,3rd stage,
Dr.Rajkumar Road,Rajaji Nagar,
Above TVS showroom
Bangalore-21.

Answered by: Richardson on: Jul 6th, 2006

hi priya,

If you are looking for a change to take up manual testing forward your CV to richardson.george@hotmail.com.

CV must include your 10,+2 and UG marks percentage and year of passing.

catch you later,

with regards,

Richie

Group discussion in recruitment process

Asked By: kamalnath | Asked On: Jan 25th, 2006

Respected sir, I am doing my m.C.A.I want to know which i.T companies are conducting group discussion in their recruitment process? Sir plz kindly inform me the recruitment process of different companies(like which phases we need to face,percentage cutoff). Thanking...

Answered by: sivanesh.a on: Dec 24th, 2006

Most of the companies will have GD as part of recruitment process.

Answered by: SachinDeo on: Nov 5th, 2006

kamalnath today most of the major MNc companies conduct Group Discussion in their recruitment process. To get a idea of the paper type of different placement comapnies you could refer the link
http://www.geekinterview.com/Global-Interview-Questions
This is a very good huge collection. All the Best.

What is your short and long term goals ?

Asked By: vijay_321 | Asked On: Jan 22nd, 2006

An interviewer asks me,what's your short and long term goal? What should I answer to impress him?

Answered by: Lokesh M on: Jan 25th, 2006

You certainly cant get a readymade answer for this question.  You should not even expect to answer it without pondering over the question for yourself.   Think about the basic objective...

Sir, I have completed diploma in 2001 and I have working in other field,last from three months iam doing Oracle 9i,sql,PL/SQL,forms,reports and UNIX.If I complete this did I get job in softwerecompany...

Asked By: shanthakumar.g | Asked On: Jan 19th, 2006

Answered by: Lokesh M on: Jan 26th, 2006

In case the institute where you are getting trained, provide placement assistance, it will be helpful to you.If no placement assistance is provided by your training institute, you will have to search ...

Hi, i\'m doing my 2nd year bcom. I like to know whether I shall go for mcom and get into banking or get mba and go for any other jobs(which I dont know and want know know). I am very good at computers..What...

Asked By: Rahul Krishnan | Asked On: Jan 15th, 2006

Answered by: Lokesh M on: Jan 26th, 2006

RahulBoth MBA and MCA are exciting options.Since you are very good at computers, you can opt for MCA too.As for Banking, In case you join work, then you still can persue MBA or MCA via corre...

Finding job with backlog subjects

Asked By: RAVINDRA PAIDIPARTHI | Asked On: Jan 1st, 2006

Hai, I am ravindra form padmashri dr b.V.Raju institute of technology,i am having a backlog in my 3-ii semester as I was absent for that exam ,will it be any problem for me for my jobs which I apply?

Answered by: SachinDeo on: Nov 5th, 2006

RAVINDRA PAIDIPARTHI  you would be defintely asked about the backlog which you would have to face. BUt dont lsoe hope.Do well and get good percentage in your exams and strengthen your communication,aptitude,technical skill for getting an entry.

Answered by: Lokesh M on: Jan 27th, 2006

You will certainly asked to give valid reason for the backlog.Most of all, major companies will insist only on candidates with consistent track record and who average percentage over 60-70%.

What does an extract statement do in the ABAP program?

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Once you have declared the possible record types as field groups and defined their structure, you can fill the extract dataset using the following statements: extract . When the first extract statement occurs in a program, the system creates the extract dataset and adds the first extract record to it....

Answered by: Lokesh M on: Dec 11th, 2011

Extract statement is a shortform for EXTRACT HEADER. It is used to extract dataset.
When Extract statement is encountered then the System creates the extract dataset and adds the first extracted record.

What is a batch input session?

Asked By: Interview Candidate | Asked On: Aug 28th, 2004

Batch input session is an intermediate step between internal table and database table. Data along with the action is stored in session ie data for screen fields, to which screen it is passed, program name behind it, and how next screen is processed.

Answered by: Lokesh M on: Dec 11th, 2011

The R/3 system normally executes the transactions in a session non-interactively. Whenever there is more than one transaction call and data process such session are known as batch input session. This ...

Interview Question

 Ask Interview Question?

 

Career Counselling

 Have Career Question?

 Ask Chandra

 Ask Only Career questions.

Follow us: