karthik


{ City } bangalore
< Country > india
* Profession * software tester
User No # 12481
Total Questions Posted # 3
Total Answers Posted # 91

Total Answers Posted for My Questions # 6
Total Views for My Questions # 10878

Users Marked my Answers as Correct # 551
Users Marked my Answers as Wrong # 170
Answers / { karthik }

Question { TCS, 17781 }

what is the difference b/w the public object&schema object


Answer

difference between schema objects n public objects is
schema objects can be created by using architect permission
and public objects can be created in desktop and by using
schema objects only we can create public objects. schema
obj ex is attributes, facts,hierachies, transpermations
public objects ex is metrics, filters,prompts and so on.

Is This Answer Correct ?    5 Yes 3 No

Question { Pepsi, 5250 }

what is skilled


Answer

Aptitude in practice......

Is This Answer Correct ?    4 Yes 0 No


Question { 2626 }

My husband had stampped h1b visa and was valid for another
1year. problm is that he lost his pasport in travelling and
we got new one in tatkal scheme. and so we applied for
restamping and my dependent (h4)visa. As per immigration
team petition will be the same only stamping has to b
done.. what questions will they ask and what are the
chances to get it aproved?? pl reply


Answer

you and your husband pls go to hellllll...there you can
stamp for your husbands visa. this place is dedicated for
interview question and answers.

Is This Answer Correct ?    2 Yes 1 No

Question { 5094 }

How to prepare a vat return in Gujarat for firm


Answer

http://www.commercialtax.gujarat.gov.in/vatwebsite/download/E_Ret_Handbook.doc

Is This Answer Correct ?    0 Yes 0 No

Question { SSC, 36148 }

What questions were asked in SSC-Scientific Assistant in
Indian Meteorological Department IMD interview?


Answer

result iss out!!!!!!!!!

Is This Answer Correct ?    1 Yes 0 No

Question { 1660 }

y we are used oil in the dead weight pressure tester


Answer

oil is viscos liquid and friction free dead weight tester

Is This Answer Correct ?    0 Yes 0 No

Question { IBS, 5724 }

There are 100 keys and values in HashMap.how to get the keys
and values?


Answer

Below given are 4 ways to traverse a map.
You can use entrySet or KeySet to get the keys.Then loop over these keys using iterator or for loop to get the corresponding values.

import static java.net.HttpURLConnection.*;
import java.util.*;

public class MapTest {
public static void main(String... args) {
traverseMap();
}

private static void traverseMap() {
Map data = new HashMap();
data.put(HTTP_OK, "HTTP_OK");
data.put(HTTP_FORBIDDEN, "HTTP_FORBIDDEN");
data.put(HTTP_NOT_FOUND, "HTTP_NOT_FOUND");

System.out.printf("%nUsing JDK 5 foreach and entry set:%n");
Set> entries = data.entrySet();
for(Map.Entry entry : entries) {
Integer key = entry.getKey();
String value = entry.getValue();
System.out.printf("%s = %s%n", key, value);
}

System.out.printf("%nUsing Iterator and entry set:%n");
for(Iterator> it = entries.iterator(); it.hasNext();) {
Map.Entry entry = it.next();
Integer key = entry.getKey();
String value = entry.getValue();
System.out.printf("%s = %s%n", key, value);
}

System.out.printf("%nUsing JDK 5 foreach and key set:%n");
for(Integer key : data.keySet()) {
String value = data.get(key);
System.out.printf("%s = %s%n", key, value);
}

System.out.printf("%nUsing traditional Iterator and key set%n");
for(Iterator it = data.keySet().iterator(); it.hasNext();) {
Integer key = it.next();
String value = data.get(key);
System.out.printf("%s = %s%n", key, value);
}
}
}

Source:http://javahowto.blogspot.in/2006/06/4-ways-to-traverse-map.html

Is This Answer Correct ?    12 Yes 0 No

Question { TCS, 5783 }

what is mean inflation?
what is mean fiscal policy?
what is mean monetary policy?
what is mean gdp?


Answer

Fiscal policy refers to a government's use of spending and taxation to influence economic activity.
The budget is said to be balanced when tax revenues equal
government expenditures. A budget surplus occurs when government tax revenues exceed expenditures, and a budget deficit occurs when government expenditures exceed
tax revenues.

Monetary policy refers to the central bank's actions that affect the quantity of money and credit in an economy in order to influence economic activity. Monetary policy is
said to be expansionary (or accommodative or easy) when the central bank increases the quantity of money and credit in an economy. Conversely, when the central bank is
reducing the quantity of money and credit in an economy, the monetary policy is said to be contractionary (or restrictive or tight).

Both monetary and fiscal policies are used by policymakers with the goals of maintaining stable prices and producing positive economic growth. Fiscal policy can also be used as a tool for redistribution of income and wealth.

Is This Answer Correct ?    6 Yes 0 No

Question { 2982 }

In the excise bill I have applied basic excise duty only.
The excise duty of cess(2%) and Hcess (1%) is not applied.
Is this correct???


Answer

No ,but your bill will be considered inclusive of EXcise
duty & Cess.

Is This Answer Correct ?    2 Yes 2 No

Question { Arctern, 4227 }

What are the different types of indexes in SQL Server?


Answer

Clustered, Non-clustered, Unique,
Full-text, Spatial,Index with included columns
, Filtered and
XML

Is This Answer Correct ?    1 Yes 0 No

Question { TCS, 8785 }

What are the EMS destination properties. What are the difference between the service and interface


Answer

ems destination property includes prefetch,failsafe,flow control , maxmsgs,maxbyte,exclusive etc.
services palette contains resources for implementing services.Services implement a set of interfaces and expose one or more endpoints.

Is This Answer Correct ?    1 Yes 0 No

Question { HCL, 7587 }

I have source like this
year account month amount
----- --------- ------ --------
1999 salaries jan 9600
1999 salaries feb 2000
1999 salaries mar 2500
2001 benfits jan 3000
2001 benfits feb 3500
2001 benfits mar 4000
-->i need target like this
year account month1 month2 month3
----- --------- -------- -------- --------
1999 salaries 9600 2000 2500
2001 benfits 3000 3500 4000


Answer

select yr,acc, max(decode (mon,'jan',am)) mon1,max(decode
(mon,'feb',am)) mon1,max(decode (mon,'mar',am)) mon1 from
intr
group by yr,acc

Is This Answer Correct ?    1 Yes 2 No

Question { RBS, 6285 }

Q1. How will you use two different DB2 qualifiers in a single COBOL program?

Suppose we have 2 tables EMP1 and EMP2 with same structure defined in two different DB2 qualifiers QUAL1.EMP1 and QUAL2.EMP2 now during first 15 days we want to use QUAL1.EMP1 and rest of the days QUAL2.EMP2  how will we do this. 

We can create a single program and a single load for this program. 


Answer

I wonder where do we mention qualifier name in program? We mention it in bind card.

Is This Answer Correct ?    1 Yes 0 No

Question { 1918 }

What are other ways of improving summary query reports other than Aggregate Navigation and Cache Management?


Answer

Doing performnce tuning in DB side.In obiee side,updating etting in connection pool or creating seperate connection pool for authorisation and heavy tables/aggregate tables.

Is This Answer Correct ?    3 Yes 1 No

Question { 811 }

How is time evaluation integrated with payroll?


Answer

XT00 PCR

Is This Answer Correct ?    0 Yes 0 No

Prev    1   2   3   4   5    [6]   7    Next