C4Swimmers Newsletter  

Interview

Interview Questions & Resources.

(Interview) Linux Command Line Q&A

Interview: Linux Command Line Q&A

1. You need to see the last fifteen lines of the files dog, cat and horse. What command should you use?
tail -15 dog cat horse:- The tail utility displays the end of a file. The -15 tells tail to display the last fifteen lines of each specified file.

(Interview) Linux Network Administrator Questions

Interview: Linux Network Administrator Questions

(Interview) Unix Admin Questions

Interview: Unix Admin Questions

1. How do you list the files in an UNIX directory while also showing hidden files?

2. How do you execute a UNIX command in the background?

3. What UNIX command will control the default file permissions when files are created?

(Interview) Some C++ Interview Questions

Interview: Some C++ Interview Questions

(Test) C Language Objective Type Questions Page 4

Test : C Language Objective Type Questions Page 4

(Test) C Language Objective Type Questions Page 3

Test : C Language Objective Type Questions Page 3

(Test) C Language Objective Type Questions Page 2

Test : C Language Objective Type Questions Page 2

Question 26
Code:
int x = 3; 
if( x == 2 );
  x = 0; 
if( x == 3 )
 x++; 
else x += 2;
What value will x contain when the sample code above is executed?
1) 1
2) 2[Ans]
3) 3
4) 4
5) 5

Question 27
Code:

(Test) C Language Objective Type Questions Page 1

Test : C Language Objective Type Questions Page 1

(FAQ) C# Interview questions - Events and Delegates

FAQ : C# Interview questions - Events and Delegates

1. What’s a delegate?
A delegate object encapsulates a reference to a method.

2. What’s a multicast delegate?
A delegate that has multiple handlers assigned to it. Each assigned handler (method) is called.

Interview Questions: C Sharp Interview Questions

Interview Questions:  C Sharp Interview Questions

1) Explain about C#?

Ans:-C # is also known as c sharp. It is a programming language introduced by Microsoft. C# contains features similar to Java and C++. It is specially designed to work with Microsoft .NET platform.

2) Explain about the rules for naming classes in C#?

(ARTICLE) Exception Handling Techniques in ASP.NET

(ARTICLE) Exception Handling Techniques in ASP.NET

(ARTICLE) Use lock() As Your First Choice for Synchronization

(ARTICLE) Use lock() As Your First Choice for Synchronization

Bill Wagner shows how to provide a safe way for different threads in your application to send and receive data with each other by using synchronization primitives to protect access to the shared data.

Threads need to communicate with each other. Somehow, you need to provide a safe way for different threads in your application to send and receive data with each other. However, sharing data between threads introduces the potential for

(TUTORIAL) Introducing the .NET Platform

(TUTORIAL)  Introducing the .NET Platform

By learning about the .NET environment, you can gain an understanding of 
what .NET is and what it means to you. This chapter covers the platform 
issues most essential to building C# applications.

(ARTICLE) Framework Patterns: Exception Handling, Logging, and Tracing

(ARTICLE) Framework Patterns: Exception Handling, Logging, and Tracing

Exception handling is more than just throwing and catching objects in 
.NET. There are many design elements in providing a robust system, and 
providing a sound exception handling, logging, and tracing schema are 
among the first steps. In this chapter from .NET Patterns: Architecture, 
Design, and Process, you'll learn best practices for determining when to 
throw, catch, and ultimately log your errors.

(ARTICLE) Java EE and .NET Security Interoperability

(ARTICLE) Java EE and .NET Security Interoperability

This chapter covers the features of Java and .NET security that make 
interoperability easier. It also discusses different technologies (such as 
authentication in the Presentation tier) and the open standards (such as 
Web services security) where Java and .NET applications can interact. 
Finally, two interoperability strategies are discussed.

Security by Default

(ARTICLE) .NET Common Language Runtime Components

(ARTICLE) .NET Common Language Runtime Components

Don Box and Chris Sells discuss modules and assemblies, the component 
building blocks of the CLR, and examine the CLR loader, which allows more 
flexible deployment and versioning and ensures that the component's 
origin cannot be spoofed through the use of public keys and digital 
signatures.

(Interview) Frequently Ask Question on C/C++/Algorithm

(Interview) Frequently Ask Question on C/C++/Algorithm

C++: Libraries

C++: Common & Differences with C

(Interview)Latest:ASP.NET AJAX Interview Questions

(Interview)Latest:ASP.NET AJAX Interview Questions


1Third party control for ASP.NET AJAX

WebORB for .NET

WebORB for .NET is a development and a runtime Rich Internet Application (RIA) enabling platform.

WebORB enables seamless integration between .NET server applications and a variety of rich internet clients including Flex, Flash and JavaScript(AJAX). WebORB provides feature-rich, but very easy-to-use infrastructure supporting client-server integration at the following levels:

(Interview)Latest: ASP.NET 3.5 Interview Questions

(Interview)ASP.NET 3.5 Interview Questions


What is IIS Metabase? How to edit IIS metabase? How to backup IIS metabase file?

IIS metabase is the repository of the configuration values that are set in the Internet Information Server (IIS). The IIS metabase in an XML file. It may be controlled through program or manually too.

(Interview).NET Interview Questions:.NET Remoting

.NET Interview Questions

.NET Remoting

1. What’s a Windows process?
It’s an application that’s running and had been allocated memory.
2. What’s typical about a Windows process in regards to memory 
allocation?
Each process is allocated its own block of available RAM space, 
no process can access another process’ code or data. If the process 
crashes, it dies alone without taking the entire OS or a bunch of other 
applications down.
Syndicate content