c aptitude questions with answers and explanation

Job Interview Questions, Tips, Answers and Advice

Job Interview Questions, Tips, Answers and Advice

... way that connects you with the position and company, and be succinct and support your answer with appropriate specific examples. Sample Question: "Why did you choose this particular career ... chose advertising because I have always been a strong communicator with a good eye for design. I have a particular interest in creating dynamic eye- catching pieces that support a new product ... three consecutive years. I believe it is an important cause, and I know it is difficult for the company to find volunteers." Advice: Don’t give long boring answers, instead focus you answers...

Ngày tải lên: 16/10/2013, 01:15

4 552 0
Questions to .NET and Programming in C#

Questions to .NET and Programming in C#

... static constructor for a class is called automatically when the object is accessed. c) A static constructor can have public as a accessibility modifiers 74. class A { public static ... Static constructors can be called explicitly or implicitly. b) Static constructors can have accessibility modifiers. e) Static constructors are called when the class is loaded. c) ... “Object” that is used to create an object? a) void object(){} c) Object Object(){} b) object(){} d) Object(){} 70. Which of the following methods can act as a constructor for the class...

Ngày tải lên: 21/08/2012, 15:55

18 1,3K 8
Questions to .NET and Programming in C#

Questions to .NET and Programming in C#

... 104. Which of the following are correct statements for implementing an abstract class. [1.0] a) public abstract void class ClassA c) abstract public ClassA b) public abstract class ClassA ... Space1.MyClass() c) Space1.Space2.MyCl ass() b) Space2.MyClass() d) Space2.Space1.MyCla ss() 141. namespace College.Library{ namespace Shelf{ class Book{ } } } The fully qualified name of class ... ___ can be used. [1.0] a) Classes c) a namespace b) System namespace d) a nested namespaces 132. The ________namespace contains all code required to interact with the including the console...

Ngày tải lên: 29/08/2012, 16:37

36 1,3K 5
100 c interview questions answers

100 c interview questions answers

... divide occur 36. ans: (b) reason: ' %c& apos; mainly used for print one charactor We can't specify formate output within ' %c& apos; 37. ans: (b) reason: can ... printf prints and places the cursor in the same line. 15. ans: (c) reason: You need to put '=' sign at show. ie the correct st is end=(char*)(show=(char*)strcpy(start,"MISPIS,")); ... reason: recursive function 52. ans: (d) reason: t is a pointer and memory allocation is not needed for that. 53. ans: (a) reason: Each 0 bit in the operand is set to 1, and each 1...

Ngày tải lên: 07/02/2013, 09:37

12 414 0
Tài liệu Writing Apache Modules with Perl and C doc

Tài liệu Writing Apache Modules with Perl and C doc

... Apache is configured with plain-text configuration files and controlled with a simple command-line tool. This sounds like a deficiency when compared to the fancy graphical user interfaces ... server-specific code, which sacrifices portability and adds a bit of complexity to the application code. 1.2 The Apache Project This book is devoted to developing applications with the Apache web ... The Apache::PerlRun Class A.3 The Apache::RegistryLoader Class A.4 The Apache::Resource Class A.5 The Apache::PerlSections Class A.6 The Apache::ReadConfig Class A.7 The Apache::StatINC...

Ngày tải lên: 21/12/2013, 11:15

741 524 0
Tài liệu Báo cáo khoa học: DNA modification with cisplatin affects sequence-specific DNA binding of p53 and p73 proteins in a target site-dependent manner pptx

Tài liệu Báo cáo khoa học: DNA modification with cisplatin affects sequence-specific DNA binding of p53 and p73 proteins in a target site-dependent manner pptx

... can be connected with the facts that modification of particular sites in the genome of living cells is naturally stochastic on the one hand, and influenced by the actual structural and functional ... Biophysics, Academy of Sciences of the Czech Republic, Brno, Czech Republic 2 Masaryk Memorial Cancer Institute, Brno, Czech Republic The tumor suppressor protein p53 is known as a tran- scription ... forms [33]. Recently, it has been reported that accessibility of the p53 CTDBS is critical for (sequence-nonspeci c) cisPt- DNA recognition [34]. On the other hand, sequence- speci c binding of...

Ngày tải lên: 19/02/2014, 05:20

14 598 0
Tài liệu Báo cáo khoa học: The distinct nucleotide binding states of the transporter associated with antigen processing (TAP) are regulated by the nonhomologous C-terminal tails of TAP1 and TAP2 ppt

Tài liệu Báo cáo khoa học: The distinct nucleotide binding states of the transporter associated with antigen processing (TAP) are regulated by the nonhomologous C-terminal tails of TAP1 and TAP2 ppt

... complementary primers 5Â-GGATGAGGCTACCAGTGC TC TGGACGCCTAG TGCGAGCAGGC-3Â and 5Â-GCCTGCTCGCACTAGG CGTCCAGAGCACTGGTAGCCTCATCC-3Â.AllTAP constructs were transfected into T2 cells by electroporation using a ... 5Â-GGTTGCCAGCATCC AGAGTACTGGTGGCATCGTCC-3Â and for TAP2 the complementary primers 5Â-GGATGAGGCTACCAGTAC TCTGGACGCCGAGTGCG-3Â and 5Â-CGCACTCGGC GTCCAGAGTACTGGTAGCCTCATCC-3Â. All primers were purchased from ARK/Sigma. The chimeric ... site-directed muta- genesis was performed using the complementary primers for variant 1V2 5Â-GGACGATGCCACCAGTGCCCTG GACGCCGAGTGCG-3Â and 5Â-CGCACTCGGCGTC CAGGGCACTGGTGGCATCGTCC-3Â and comple- mentary...

Ngày tải lên: 20/02/2014, 02:21

16 408 0
apress metro revealed, building windows 8 apps with xaml and c# (2012)

apress metro revealed, building windows 8 apps with xaml and c# (2012)

... layout and overall experience. Creating Flyouts e Done AppBar button has a simple action associated with it, which can be performed directly in the event handler code associated with the Click ... <ResourceDictionary Source="Resources/GrocerResourceDictionary.xaml"/> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Application.Resources> </Application> Note ... xmlns:local="using:MetroGrocer"> <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="Common/StandardStyles.xaml"/> ...

Ngày tải lên: 15/03/2014, 09:34

98 1,7K 0
Object oriented programming with C++ - Session 3 Function Overloading and References ppt

Object oriented programming with C++ - Session 3 Function Overloading and References ppt

... been declared before the class Student. Object Oriented Programming with C+ +/ Session 3/ 20 of 35 Friend classes (Contd.) class beta{ public: void display(alpha d) //can access alpha {cout<<d.data;} void ... Programming with C+ +/ Session 3/ 19 of 35 Friend classes (Contd.)  When all or most of the functions of a particular class have to gain access to your class, you can consider allowing the whole class ... //can access alpha {int x = d.data;} };  All the member functions of class beta can access the private data members of alpha.  However, the public member functions of the class alpha cannot...

Ngày tải lên: 23/03/2014, 04:21

35 688 0
Object oriented programming with C++ - Session 6 Multiple Inheritance and Polymorphism pot

Object oriented programming with C++ - Session 6 Multiple Inheritance and Polymorphism pot

... basedata the compiler does not know which copy is being accessed and hence the error occurs. Object Oriented Programming with C+ + / Session 6 / 43 of 44 Example (Contd.) class Beta: public Alpha{ private: ... an object called an abstract class. ■ Only useful as a base class to be inherited into a useable derived class. ■ No objects of an abstract class can be created. ■ Abstract class can only ... Object Oriented Programming with C+ + / Session 6 / 10 of 44 Constructors and Destructors General order for calling Constructors: ã Base classes as they appear in the list of base classes: Teacher,...

Ngày tải lên: 23/03/2014, 04:21

44 540 1
Báo cáo khoa học: Peroxin Pex21p interacts with the C-terminal noncatalytic domain of yeast seryl-tRNA synthetase and forms a specific ternary complex with tRNASer potx

Báo cáo khoa học: Peroxin Pex21p interacts with the C-terminal noncatalytic domain of yeast seryl-tRNA synthetase and forms a specific ternary complex with tRNASer potx

... mays; CA, Candida albicans; SC, S. cerevisiae; SP, Schizosaccha- romyces pombe. Only eukaryotic cytosolic enzymes contain positively charged C- terminal extensions. The C- terminal sequence of S. cerevis- iae ... determined kinetic parameters for full-length Saccharomyces cerevisiae (Sc)SerRS and truncated enzyme in standard amino- acylation reactions. K m and k cat values with respect to both tRNA and serine ... Ni 2+ – nitrilotriacetic acid agarose precharged with crude E. coli extract con- taining recombinant His-tagged Pex21p (lane 5) and incubated with full-length yeast SerRS (lane 6), truncated SerRSDC13 (lane...

Ngày tải lên: 23/03/2014, 09:20

12 406 0
Báo cáo khoa học: The )148 to )124 region of c-jun interacts with a positive regulatory factor in rat liver and enhances transcription Dipali Sharma*, Sujata Ohri and Aparna Dixit ppt

Báo cáo khoa học: The )148 to )124 region of c-jun interacts with a positive regulatory factor in rat liver and enhances transcription Dipali Sharma*, Sujata Ohri and Aparna Dixit ppt

... as described by Garg et al. [23]. Two complementary synthetic oligonu- cleotides [(a) 5Â-CTAGGGTGGAGTCTCCATGGT GAC-3Â ()148 to )124 of c- jun )and( b)5Â-GTCACCATG GAGACTCCA-3Â (designed in such a ... TFIIB could bind to its speci c sequence only at low salt concentration, following which it can withstand increa- ses in NaCl concentration. However, TFIIB cannot bind at high salt concentration. ... albeit with low affinity. Therefore, if excessive nonspeci c DNA is added, it will compete for the speci c factor of interest and the level of the speci c complex will decrease. Binding reactions...

Ngày tải lên: 23/03/2014, 20:22

9 449 0
c# 4, asp.net 4, and wpf, with visual studio 2010 jump start

c# 4, asp.net 4, and wpf, with visual studio 2010 jump start

... //StaticClass staticObject = new StaticClass(); DynamicClass dynamicObject = new DynamicClass(); Console.WriteLine(staticObject.IntValue); //Console.WriteLine(dynamicObject.DynValue); Console.ReadLine(); } Compile ... Scott Hanselman Devin Rader Rod Stephens iii CONTENTS Contents Professional C# 4 and .net Part i: 4 Covariance and Contra-variance 2 Covariance with Generic Interfaces 3 Contra-Variance with ... includes classes for static and runtime checks of code within the namespace System.Diagnostics.Contracts that can be used by all .NET languages. With this functionality you can define preconditions,...

Ngày tải lên: 31/03/2014, 16:41

130 440 0
Mastering Mac OS X’s Cocoa Frameworks, with Xcode and Objective-C ppt

Mastering Mac OS X’s Cocoa Frameworks, with Xcode and Objective-C ppt

... using Core Data in Chapter 7. Your controller component will typically be comprised of classes that you create and that are specific to your application. Controllers can be completely custom classes ... so Cocoa doesn’t have an equivalent class to Cocoa Touch’s UIViewController. As a result, the main controller classes in Cocoa are typically subclasses of NSObject. Declaring an Action and ... programmed in Cocoa Touch, you may be surprised that we’re subclassing NSObject rather than a provided view controller class. Cocoa, like Cocoa Touch, does have generic controller classes, and you’ll...

Ngày tải lên: 31/03/2014, 17:20

393 735 0
w