Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

Target Interview Questions
Questions Answers Views Company eMail

Can we create report using more than one database?

3 16039

Does Crystal Report support all the functions that we have in Oracle?

2 14248

Is it possible to precompile if db2 goes down?

4 12551

in retail bussiness if we want the first and last visit of the customer and the total purchase amount of the customer.then what's the syntax in proc report. whats is the difference between the proc tabulate and proc report?i want the major difference which will effect?

1835

what is the difference between aggregate table and fact table ? how do you load these two tables ?

12 49713

in unconnected lookup , what are the other transformations , that can be used in place of that expression transformation ?

9 18112

WHAT IS UPDATE OVERRIDE . DIFFERENCE BETWEEN SQL OVERRIDE AND UPDATE OVERRIDE ?

7 32115

compared to others, i know i have a rebellious attitude

1 15023

How do you format your crystal reports so that on exporting to word doc or pdf it will not lose the orginal format

3 19001

what is report burn and where it occurs

3 9257

what is logs in cognos

1 7852

There are some features to improve the performance of a Product. What are those factors?

1613

Explain Functionality Testing Techniques

2 5606

What is the structure of the project??? I explained its 3 tire... But that was not the correct answer it seems...

5 6701

wat is the difference between full clinet report and thin client report?wat is the difference between desktop intelligence and web intelligence?

3 9068

Post New Target Interview Questions




Un-Answered Questions

what is system testing?

1572


Need to convert this VHDL code into VLSI verilog code? LIBRARY IEEE; USE IEEE.STD_LOGIC_1164.ALL; ----using all functions of specific package--- ENTITY tollbooth2 IS PORT (Clock,car_s,RE : IN STD_LOGIC; coin_s : IN STD_LOGIC_VECTOR(1 DOWNTO 0); r_light,g_light,alarm : OUT STD_LOGIC); END tollbooth2; ARCHITECTURE Behav OF tollbooth2 IS TYPE state_type IS (NO_CAR,GOTZERO,GOTFIV,GOTTEN,GOTFIF,GOTTWEN,CAR_PAID,CHEATE D); ------GOTZERO = PAID $0.00--------- ------GOTFIV = PAID $0.05---------- ------GOTTEN = PAID $0.10---------- ------GOTFIF = PAID $0.15---------- ------GOTTWEN = PAID $0.20--------- SIGNAL present_state,next_state : state_type; BEGIN -----Next state is identified using present state,car & coin sensors------ PROCESS(present_state,car_s,coin_s) BEGIN CASE present_state IS WHEN NO_CAR => IF (car_s = '1') THEN next_state <= GOTZERO; ELSE next_state <= NO_CAR; END IF; WHEN GOTZERO => IF (car_s ='0') THEN next_state <= CHEATED; ELSIF (coin_s = "00") THEN next_state <= GOTZERO; ELSIF (coin_s = "01") THEN next_state <= GOTFIV; ELSIF (coin_s ="10") THEN next_state <= GOTTEN; END IF; WHEN GOTFIV=> IF (car_s ='0') THEN next_state <= CHEATED; ELSIF (coin_s = "00") THEN next_state <= GOTFIV; ELSIF (coin_s = "01") THEN next_state <= GOTTEN; ELSIF (coin_s <= "10") THEN next_state <= GOTFIV; END IF; WHEN GOTTEN => IF (car_s ='0') THEN next_state <= CHEATED; ELSIF (coin_s ="00") THEN next_state <= GOTTEN; ELSIF (coin_s="01") THEN next_state <= GOTFIV; ELSIF (coin_s="10") THEN next_state <= GOTTWEN; END IF; WHEN GOTFIF => IF (car_s ='0') THEN next_state <= CHEATED; ELSIF (coin_s = "00") THEN next_state <= GOTFIF; ELSIF (coin_s ="01") THEN next_state <= GOTTWEN; ELSIF (coin_s = "10") THEN next_state <= GOTTWEN; END IF; WHEN GOTTWEN => next_state <= CAR_PAID; WHEN CAR_PAID => IF (car_s = '0') THEN next_state <= NO_CAR; ELSE next_state<= CAR_PAID; END IF; WHEN CHEATED => IF (car_s = '1') THEN next_state <= GOTZERO; ELSE next_state <= CHEATED; END IF; END CASE; END PROCESS;-----End of Process 1 -------PROCESS 2 for STATE REGISTER CLOCKING-------- PROCESS(Clock,RE) BEGIN IF RE = '1' THEN present_state <= GOTZERO; ----When the clock changes from low to high,the state of the system ----stored in next_state becomes the present state----- ELSIF Clock'EVENT AND Clock ='1' THEN present_state <= next_state; END IF; END PROCESS;-----End of Process 2------- --------------------------------------------------------- -----Conditional signal assignment statements---------- r_light <= '0' WHEN present_state = CAR_PAID ELSE '1'; g_light <= '1' WHEN present_state = CAR_PAID ELSE '0'; alarm <= '1' WHEN present_state = CHEATED ELSE '0'; END Behav;

4736


how to load the data to fact table?

2155


What is potential transformers?

634


How do I master a powerpoint?

112






What is a challenge you had to overcome?

687


career and its importance?

1633


What is a dashboard in sap bw and how it is created?

551


What is boolean algebra?

628


Does windows 10 come with outlook?

1


what is Bloom Filter is used for in Cassandra?

82


develop algorithms to add polynomials (i) in one variable

1747


What is jdbc in java?

493


What is n tier architecture in dbms?

475


Why do we need excel?

313