I attended CDC software written test on 14th august 2009.time is 45 minutes. 10 objective type questions & 10 descriptive questions. In objective they asked questions from database like what is MTTF,Hotfix,Normalization,table index is used for what?,Release notes etc... 1.What is Registry? 2.What is compatibility testing? 3.Diff between Automated&Performance testing? 4.What is testing for availability? 5.Open database connectivity interface is used for/ 6.Difference btn Application and DLL'S? 7.What is code complete? 8.What is Release candidate? 9.What is smoke test? 10.Is virus a bug?
2 5174Post New CDC Software Interview Questions
Explain the Procedure for Testing for binding of mutant proteins to cell surface receptors?
How is rdbms different from dbms?
If a method's return type is void, can you use a return keyword in the method?
what is the difference between modular and data and keyword driven framework
Explain about loader and the functions executed by them?
difference between Valuation type and valuation category?
Where do you set up the remuneration structure of the employee?
Is viewstate enabled by default?
Explain the fact table and the dimension table?
How can we embed Video in HTML 5?
Is it possible that you come across different story point for development and testing efforts? In that case how do you resolve this conflict?
What is the main purpose of pivot tables in excel?
Do you know what are the methods used in decorator?
package MYCALC; use Exporter; our @EXPORT = (); our @ISA = qw(Exporter); our @EXPORT_OK = qw(addition multi); our %EXPORT_TAGS = (DEFAULT => [qw(&addition)],Both => [qw(&addition & +multi)]); sub addition { return $_[0] + $_[1]; } sub multi { return $_[0] * $_[1]; } 1; Program: use strict; use warnings; my @list = qw (2 2); use Module qw(:DEFAULT); print addition(@list),"\n"; Above coding is my module MYCALC and the program which using this module, I have not exported any function using @EXPORT, but I have used the DEFAULT in %EXPORT_TAGS with the function addition, when I call this function from the main it says the error as,
how to get @@error and @@rowcount at the same time? : Sql dba