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
Questions
We can preview data in informatica up to ___ rows
- 100
- 200
- 500
- 300
For connecting two tables from the different databases we need to use the following transformation
- Source qualifier
- Associated Source qualifier
- Joiner
- Aggregator
Method to compare data in two tables
- Lookup
- Minus
- Either a or b is sufficient
- Both a and b are needed
The below transformation cannot be used inside a mapplet
- Expression
- Normaliser
- Router
- Filter
we connect to the databases in informatica through the ........ client
- Database source name
- Database specific name
- Data structure norms
- Data set name
If we need to create multiple occurances of a specific row we use the
- Normaliser
- Joiner
- Either a or b
- None of the above
In a joiner transformation the following helps in performance
- Sorted input option
- Using the table with more rows as master
- Both a and b
- Either a or b
The partioning type in which data is distibuted evenly across partitions is
- Hash auto
- Hash user
- Round robin
- Range
In dynamic partioning we cannot set the number of partition points
- True
- False
How to add partition points in a session?
- From the Mappings tab of the session properties.
- From the properties tab of the session properties.
- From the config object tab of the session properties.
- rom the components tab of the session properties.
Scheduler options can be set from the worflow
- True
- False
Pick the statement which is true
- The parameter file set in the workflow property overrides
- SEQ generator can be used to obtain primary keys
- Normaliser works in a mapplet
- Both a and b
If there is a target bottleneck we can check it by
- Replacing the target with a flat file and running the session
- Removing transformations
- Both a and b
- Either a or b
In bulk mode of loading we cannot use indexes
- True
- False
First Standerized version of C??
- C59
- C1.x
- ANSI C
- C98
int main() { time_t biggest = 0x7FFFFFFF; printf("biggest = %s \n", ctime(&biggest) ); return 0; }
- biggest=Mon Jan 18 19:14:07
- biggest=0
- biggest = Mon Jan 18 19:14:07 2038
- biggest=2038
int main() { time_t biggest = 0x7FFFFFFF; printf("biggest = %s \n", ctime(&biggest) ); return 0; }
- biggest=Mon Jan 18 19:14:07
- biggest=0
- biggest = Mon Jan 18 19:14:07 2038
- biggest=2038
Multics project is OF????
- General Electric
- MIT
- General Electric, MIT, and Bell Laboratories
- General Electric, MIT
IS Nested Function allowed in C language?
- True
- False
Is a correct representation for Function Pointer: int (*pt2Function) (float, char, char)
- True
- False