C Programming and Informatica ETL

Quiz covering C programming concepts including functions, pointers, and standardization, plus Informatica ETL topics including transformations, sessions, and performance optimization

20 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

We can preview data in informatica up to ___ rows

  1. 100
  2. 200
  3. 500
  4. 300
Question 2 Multiple Choice (Single Answer)

For connecting two tables from the different databases we need to use the following transformation

  1. Source qualifier
  2. Associated Source qualifier
  3. Joiner
  4. Aggregator
Question 3 Multiple Choice (Single Answer)

Method to compare data in two tables

  1. Lookup
  2. Minus
  3. Either a or b is sufficient
  4. Both a and b are needed
Question 4 Multiple Choice (Single Answer)

The below transformation cannot be used inside a mapplet

  1. Expression
  2. Normaliser
  3. Router
  4. Filter
Question 5 Multiple Choice (Single Answer)

we connect to the databases in informatica through the ........ client

  1. Database source name
  2. Database specific name
  3. Data structure norms
  4. Data set name
Question 6 Multiple Choice (Single Answer)

If we need to create multiple occurances of a specific row we use the

  1. Normaliser
  2. Joiner
  3. Either a or b
  4. None of the above
Question 7 Multiple Choice (Single Answer)

In a joiner transformation the following helps in performance

  1. Sorted input option
  2. Using the table with more rows as master
  3. Both a and b
  4. Either a or b
Question 8 Multiple Choice (Single Answer)

The partioning type in which data is distibuted evenly across partitions is

  1. Hash auto
  2. Hash user
  3. Round robin
  4. Range
Question 9 True/False

In dynamic partioning we cannot set the number of partition points

  1. True
  2. False
Question 10 Multiple Choice (Single Answer)

How to add partition points in a session?

  1. From the Mappings tab of the session properties.
  2. From the properties tab of the session properties.
  3. From the config object tab of the session properties.
  4. rom the components tab of the session properties.
Question 11 True/False

Scheduler options can be set from the worflow

  1. True
  2. False
Question 12 Multiple Choice (Single Answer)

Pick the statement which is true

  1. The parameter file set in the workflow property overrides
  2. SEQ generator can be used to obtain primary keys
  3. Normaliser works in a mapplet
  4. Both a and b
Question 13 Multiple Choice (Single Answer)

If there is a target bottleneck we can check it by

  1. Replacing the target with a flat file and running the session
  2. Removing transformations
  3. Both a and b
  4. Either a or b
Question 14 True/False

In bulk mode of loading we cannot use indexes

  1. True
  2. False
Question 15 Multiple Choice (Single Answer)

First Standerized version of C??

  1. C59
  2. C1.x
  3. ANSI C
  4. C98
Question 16 Multiple Choice (Single Answer)

int main() { time_t biggest = 0x7FFFFFFF; printf("biggest = %s \n", ctime(&biggest) ); return 0; }

  1. biggest=Mon Jan 18 19:14:07
  2. biggest=0
  3. biggest = Mon Jan 18 19:14:07 2038
  4. biggest=2038
Question 17 Multiple Choice (Single Answer)

int main() { time_t biggest = 0x7FFFFFFF; printf("biggest = %s \n", ctime(&biggest) ); return 0; }

  1. biggest=Mon Jan 18 19:14:07
  2. biggest=0
  3. biggest = Mon Jan 18 19:14:07 2038
  4. biggest=2038
Question 18 Multiple Choice (Single Answer)

Multics project is OF????

  1. General Electric
  2. MIT
  3. General Electric, MIT, and Bell Laboratories
  4. General Electric, MIT
Question 19 True/False

IS Nested Function allowed in C language?

  1. True
  2. False
Question 20 True/False

Is a correct representation for Function Pointer: int (*pt2Function) (float, char, char)

  1. True
  2. False