Preguntas y respuestas de entrevista mas solicitadas y pruebas en linea
Plataforma educativa para preparacion de entrevistas, pruebas en linea, tutoriales y practica en vivo

Desarrolla tus habilidades con rutas de aprendizaje enfocadas, examenes de practica y contenido listo para entrevistas.

WithoutBook reune preguntas de entrevista por tema, pruebas practicas en linea, tutoriales y guias comparativas en un espacio de aprendizaje responsivo.

Preparar entrevista

Examenes simulados

Poner como pagina de inicio

Guardar esta pagina en marcadores

Suscribirse con correo electronico
WithoutBook LIVE Mock Interviews
The Best LIVE Mock Interview - You should go through before interview
Test your skills through the online practice test: Microsoft .NET Quiz Online Practice Test

Freshers / Beginner level questions & answers

Ques 1. Name 10 C# keywords.

abstract, event, new, struct, explicit, null, base, extern, object, this

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 2. What is public accessibility?

There are no access restrictions. All can access the public instance from anywhere.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 3. What is private accessibility?

Access is restricted to within the containing class.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 4. Class methods to should be marked with what keyword?

Static.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 5. Does an object need to be made to run main?

No

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 6. Write a hello world console application.

using System;
namespace Console1
{
class Class1
{
[STAThread] // No longer needed
static void Main(string[] args)
{
Console.WriteLine("Hello world");
}
}
}

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 7. What is recursion?

Recursion is when a method calls itself.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 8. What is a constructor?

A constructor performs initialisation for an object (including the struct type) or class.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 9. What is a destructor?

A C# destuctor is not like a C++ destructor. It is actually an override for Finalize(). This
is called when the garbage collector discovers that the object is unreachable. Finalize()
is called before any memory is reclaimed.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 10. Name 5 built in types.

Bool, char, int, byte, double

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 11. Is string Unicode, ASCII, or something else?

Unicode

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 12. Strings are immutable, what does this mean?

Any changes to that string are in fact copies.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 13. Name a few string properties.

trim, tolower, toupper, concat, copy, insert, equals, compare.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 14. What is boxing and unboxing?

Converting a value type (stack->heap) to a reference type (heap->stack), and viseversa.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 15. Write some code to box and unbox a value type.

// Boxing
int i = 4;
object o = i;
// Unboxing
i = (int) o;

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 16. What is a heap and a stack?

There are 2 kinds of heap – 1: a chunk of memory where data is stored and 2: a tree
based data structure. When we talk about the heap and the stack we mean the first kind
of heap. The stack is a LIFO data structure that stores variables and flow control
information. Typically each thread will have its own stack.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 17. What is a pointer?

A pointer is a reference to a memory address.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 18. What does new do in terms of objects?

Initializes an object.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 19. What is a struct?

Unlike in C++ a struct is not a class – it is a value type with certain restrictions. It is
usually best to use a struct to represent simple entities with a few variables. Like a Point
for example which contains variables x and y.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 20. Describe 5 numeric value types ranges.

sbyte -128 to 127, byte 0 – 255, short -32,768 to 32,767, int -2,147,483,648 to
2,147,483,647, ulong 0 to 18,446,744,073,709,551,615

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 21. Write code for a case statement.

switch (n)
{
case 1:
x=1;
break;
case 2:
x=2;
break;
default:
goto case 1;
}

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Intermediate / 1 to 5 years experienced level questions & answers

Ques 22. What is protected accessibility?

Access is restricted to types derived from the containing class.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 23. What is protected internal accessibility?

Access is restricted to types derived from the containing class or from files within the same assembly.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 24. What is the default accessibility for a class?

internal for a top level class, private for a nested one.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 25. What is the default accessibility for members of an interface?

public

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 26. Methods must declare a return type, what is the keyword used when nothing is returned from the method?

Void

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 27. What is a reference parameter?

Reference parameters reference the original object whereas value parameters make a
local copy and do not affect the original. Some example code is shown:
using System;
namespace Console1
{
class Class1
{
static void Main(string[] args)
{
TestRef tr1 = new TestRef();
TestRef tr2 = new TestRef();
tr1.TestValue = "Original value";
tr2.TestValue = "Original value";
int tv1 = 1;
int tv2 = 1;
TestRefVal(ref tv1, tv2, ref tr1, tr2);
Console.WriteLine(tv1);
Console.WriteLine(tv2);
Console.WriteLine(tr1.TestValue);
Console.WriteLine(tr2.TestValue);
Console.ReadLine();
}
static public void TestRefVal(ref int tv1Parm,
int tv2Parm,
ref TestRef tr1Parm,
TestRef tr2Parm)
{
tv1Parm = 2;
tv2Parm = 2;
tr1Parm.TestValue = "New value";
tr2Parm.TestValue = "New value";
}
}
}
class TestRef
{
public string TestValue;
}
The output for this is:
2
1
New value
New value

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 28. What is an overloaded method?

An overloaded method has multiple signatures that are different.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 29. If I have a constructor with a parameter, do I need to explicitly create a default constructor?

Yes

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 30. What is a delegate?

A delegate in C# is like a function pointer in C or C++. A delegate is a variable that calls
a method indirectly, without knowing its name. Delegates can point to static or/and
member functions. It is also possible to use a multicast delegate to point to multiple
functions.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 31. Write some code to use a delegate.

Member function with a parameter
using System;
namespace Console1
{
class Class1
{
delegate void myDelegate(int parameter1);
static void Main(string[] args)
{
MyClass myInstance = new MyClass();
myDelegate d = new myDelegate(myInstance.AMethod);
d(1); // <--- Calling function without knowing its name.
Test2(d);
Console.ReadLine();
}
static void Test2(myDelegate d)
{
d(2); // <--- Calling function without knowing its name.
}
}
class MyClass
{
public void AMethod(int param1)
{
Console.WriteLine(param1);
}
}
}
Multicast delegate calling static and member functions
using System;
namespace Console1
{
class Class1
{
delegate void myDelegate(int parameter1);
static void AStaticMethod(int param1)
{
Console.WriteLine(param1);
}
static void Main(string[] args)
{
MyClass myInstance = new MyClass();
myDelegate d = null;
d += new myDelegate(myInstance.AMethod);
d += new myDelegate(AStaticMethod);
d(1); //both functions will be run.
Console.ReadLine();
}
}
class MyClass
{
public void AMethod(int param1)
{
Console.WriteLine(param1);
}
}
}

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 32. What is a value type and a reference type?

A reference type is known by a reference to a memory location on the heap.
A value type is directly stored in a memory location on the stack. A reference type is
essentially a pointer, dereferencing the pointer takes more time than directly accessing
the direct memory location of a value type.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 33. string is an alias for what?

System.String

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 34. How do you dereference an object?

Set it equal to null.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 35. In terms of references, how do == and != (not overridden) work?

They check to see if the references both point to the same object.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 36. What is the default value for a bool?

False

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 37. Write code for an enumeration.

public enum animals {Dog=1,Cat,Bear};

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 38. Can a struct have methods?

Yes

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 39. What is checked { } and unchecked { }?

By default C# does not check for overflow (unless using constants), we can use
checked to raise an exception. E.g.:
static short x = 32767; // Max short value
static short y = 32767;
// Using a checked expression
public static int myMethodCh()
{
int z = 0;
try
{
z = checked((short)(x + y));
//z = (short)(x + y);
}
catch (System.OverflowException e)
{
System.Console.WriteLine(e.ToString());
}
return z; // Throws the exception OverflowException
}
This code will raise an exception, if we remove unchecked as in:
//z = checked((short)(x + y));
z = (short)(x + y);
Then the cast will raise no overflow exception and z will be assigned –2. unchecked can
be used in the opposite way, to say avoid compile time errors with constanst overflow.
E.g. the following will cause a compiler error:
const short x = 32767; // Max short value
const short y = 32767;
public static int myMethodUnch()
{
int z = (short)(x + y);
return z; // Returns -2
}
The following will not:
const short x = 32767; // Max short value
const short y = 32767;
public static int myMethodUnch()
{
int z = unchecked((short)(x + y));
return z; // Returns -2
}

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 40. Can assignment operators be overloaded directly?

No

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 41. What do operators is and as do?

as acts is like a cast but returns a null on conversion failure. Is comares an object to a
type and returns a boolean.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 42. What is the difference between the new operator and modifier?

The new operator creates an instance of a class whereas the new modifier is used to
declare a method with the same name as a method in one of the parent classes.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 43. Explain sizeof and typeof.

typeof obtains the System.Type object for a type and sizeof obtains the size of a type.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 44. Contrast ++count vs. count++.

Some operators have temporal properties depending on their placement. E.g.
double x;
x = 2;
Console.Write(++x);
x = 2;
Console.Write(x++);
Console.Write(x);
Returns
323

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Experienced / Expert level questions & answers

Ques 45. .NET Stands for?

About 10 years ago, I was part of the large team in Redmond working on the set of projects which became ".net". This was during the time the decisions were being made about what to name this work. I can tell you from first-hand experience that ".net" is not an acroynm.

Instead, the James Kovacs blog post that Jim W posted is accurate: ".net" was one of many names that the teams cycled through (and thankfully rejected) before settling on ".net". The name was chosen because it:

mirrored the domain suffix of (at the time) every ISP, so was intended to remind users that "web-enabling your software" was the core scenario being targetted by this work
was more approachable to business types and CIOs than geekier names like "Universal Runtime" or "COM+ 2.0"
had practical benefits like: being short, easy to spell, globalized well, could leverage already-owned domain names for every Microsoft product, etc.
actually passed legal/trademark review (surprisingly difficult!)
So it was intended to mean something, but more so by connotation rather than directly abbreviating or describing something. In other words, the name was only partly marketing nonsense! ;-)

More trivia

I don't remember the exact positioning (it's been 10 years!), but I believe that the name ".net" was supposed cover three basic things:

".net Framework" - a new framework for writing web-enabled apps
".net web services" - a way of accessing Microsoft (and others') software over the web programmatically using open standards and protocols (anyone remember "Hailstorm"?)
".net enterprise servers" - a set of products which made bulding web-enabled applications easier.
In practice, only the first meaning stuck with users. The others morphed into other names (e.g. "Windows Server System") or were genericized by the public (e.g. "web services", SOA, etc.). Anyway, that's why you don't see Microsoft products named "<product name here>.NET Server" any more-- Microsoft wisely decided to limit the ".net" name to the things that developers actually thought of as ".net"!

BTW, in addition to being short and easy to spell and say, ".net" as a name also helped with the web services strategy which Microsoft was persuing at the time, which revolved around (and still does) offering software which was also available in the cloud. The idea was that we'd have, for example, Office.com for a hosted UI version, and Office.net for the APIs. The name also was convenient since Microsoft already owned the .net domain-name variants for every microsoft product.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 46. What is the default accessibility for members of a struct?

Private

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 47. Can the members of an interface be private?

No

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 48. A class can have many mains, how does this work?

Only one of them is run, that is the one marked (public) static, e.g:
public static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
}
private void Main(string[] args, int i)
{
}

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 49. What are the two return types for main?

void and int

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 50. What is an out parameter?

An out parameter allows an instance of a parameter object to be made inside a method.
Reference parameters must be initialised but out gives a reference to an uninstanciated
object.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 51. Write code to show how a method can accept a varying number of parameters.

using System;
namespace Console1
{
class Class1
{
static void Main(string[] args)
{
ParamsMethod(1,"example");
ParamsMethod(1,2,3,4);
Console.ReadLine();
}
static void ParamsMethod(params object[] list)
{
foreach (object o in list)
{
Console.WriteLine(o.ToString());
}
}
}
}

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 52. Can you use access modifiers with destructors?

No

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 53. What is a delegate useful for?

The main reason we use delegates is for use in event driven programming.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 54. Are events synchronous of asynchronous?

Asynchronous

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 55. Events use a publisher/subscriber model. What is that?

Objects publish events to which other applications subscribe. When the publisher raises
an event all subscribers to that event are notified.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 56. Can a subscriber subscribe to more than one publisher?

Yes, also - here's some code for a publisher with multiple subscribers.
using System;
namespace Console1
{
class Class1
{
delegate void myDelegate(int parameter1);
static event myDelegate myEvent;
static void AStaticMethod(int param1)
{
Console.WriteLine(param1);
}
static void Main(string[] args)
{
MyClass myInstance = new MyClass();
myEvent += new myDelegate(myInstance.AMethod);
myEvent += new myDelegate(AStaticMethod);
myEvent(1); //both functions will be run.
Console.ReadLine();
}
}
class MyClass
{
public void AMethod(int param1)
{
Console.WriteLine(param1);
}
}
}
Another example:
using System;
using System.Threading;
namespace EventExample
{
public class Clock
{
public delegate void TwoSecondsPassedHandler(object clockInstance,
TimeEventArgs time);
//The clock publishes an event that others subscribe to
public event TwoSecondsPassedHandler TwoSecondsPassed;
public void Start()
{
while(true)
{
Thread.Sleep(2000);
//Raise event
TwoSecondsPassed(this, new TimeEventArgs(1));
}
}
}
public class TimeEventArgs : EventArgs
{
public TimeEventArgs(int second)
{
seconds += second;
instanceSeconds = seconds;
}
private static int seconds;
public int instanceSeconds;
}
public class MainClass
{
static void Main(string[] args)
{
Clock cl = new Clock();
// add some subscribers
cl.TwoSecondsPassed += new
Clock.TwoSecondsPassedHandler(Subscriber1);
cl.TwoSecondsPassed += new
Clock.TwoSecondsPassedHandler(Subscriber2);
cl.Start();
Console.ReadLine();
}
public static void Subscriber1(object clockInstance, TimeEventArgs time)
{
Console.WriteLine("Subscriber1:" + time.instanceSeconds);
}
public static void Subscriber2(object clockInstance, TimeEventArgs time)
{
Console.WriteLine("Subscriber2:" + time.instanceSeconds);
}
}
}

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 57. Is a struct stored on the heap or stack?

Stack

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 58. Can C# have global overflow checking?

Yes

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 59. What is explicit vs. implicit conversion?

When converting from a smaller numeric type into a larger one the cast is implicit. An
example of when an explicit cast is needed is when a value may be truncated.

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Ques 60. What doe the stackalloc operator do?

Allocate a block of memory on the stack (used in unsafe mode).

Save For Revision

Save For Revision

Bookmark this item, mark it difficult, or place it in a revision set.

Open My Learning Library

Is it helpful? Add Comment View Comments
 

Most helpful rated by users:

Related interview subjects

C# preguntas y respuestas de entrevista - Total 41 questions
LINQ preguntas y respuestas de entrevista - Total 20 questions
ASP .NET preguntas y respuestas de entrevista - Total 31 questions
Microsoft .NET preguntas y respuestas de entrevista - Total 60 questions
ASP preguntas y respuestas de entrevista - Total 82 questions

All interview subjects

C# preguntas y respuestas de entrevista - Total 41 questions
LINQ preguntas y respuestas de entrevista - Total 20 questions
ASP .NET preguntas y respuestas de entrevista - Total 31 questions
Microsoft .NET preguntas y respuestas de entrevista - Total 60 questions
ASP preguntas y respuestas de entrevista - Total 82 questions
IBM Watson preguntas y respuestas de entrevista - Total 30 questions
Perplexity AI preguntas y respuestas de entrevista - Total 40 questions
ChatGPT preguntas y respuestas de entrevista - Total 20 questions
NLP preguntas y respuestas de entrevista - Total 30 questions
AI Agents (Agentic AI) preguntas y respuestas de entrevista - Total 50 questions
OpenCV preguntas y respuestas de entrevista - Total 36 questions
Amazon SageMaker preguntas y respuestas de entrevista - Total 30 questions
TensorFlow preguntas y respuestas de entrevista - Total 30 questions
Hugging Face preguntas y respuestas de entrevista - Total 30 questions
Gemini AI preguntas y respuestas de entrevista - Total 50 questions
Artificial Intelligence (AI) preguntas y respuestas de entrevista - Total 47 questions
Oracle AI Agents preguntas y respuestas de entrevista - Total 50 questions
Machine Learning preguntas y respuestas de entrevista - Total 30 questions
Google Cloud AI preguntas y respuestas de entrevista - Total 30 questions
Scala preguntas y respuestas de entrevista - Total 48 questions
Swift preguntas y respuestas de entrevista - Total 49 questions
Golang preguntas y respuestas de entrevista - Total 30 questions
Embedded C preguntas y respuestas de entrevista - Total 30 questions
VBA preguntas y respuestas de entrevista - Total 30 questions
C++ preguntas y respuestas de entrevista - Total 142 questions
COBOL preguntas y respuestas de entrevista - Total 50 questions
R Language preguntas y respuestas de entrevista - Total 30 questions
Python Coding preguntas y respuestas de entrevista - Total 20 questions
CCNA preguntas y respuestas de entrevista - Total 40 questions
Oracle Cloud Infrastructure (OCI) preguntas y respuestas de entrevista - Total 100 questions
AWS preguntas y respuestas de entrevista - Total 87 questions
Azure Data Factory preguntas y respuestas de entrevista - Total 30 questions
Microsoft Azure preguntas y respuestas de entrevista - Total 35 questions
OpenStack preguntas y respuestas de entrevista - Total 30 questions
ServiceNow preguntas y respuestas de entrevista - Total 30 questions
Snowflake preguntas y respuestas de entrevista - Total 30 questions
Oracle APEX preguntas y respuestas de entrevista - Total 23 questions
PDPA preguntas y respuestas de entrevista - Total 20 questions
OSHA preguntas y respuestas de entrevista - Total 20 questions
HIPPA preguntas y respuestas de entrevista - Total 20 questions
PHIPA preguntas y respuestas de entrevista - Total 20 questions
FERPA preguntas y respuestas de entrevista - Total 20 questions
DPDP preguntas y respuestas de entrevista - Total 30 questions
PIPEDA preguntas y respuestas de entrevista - Total 20 questions
CCPA preguntas y respuestas de entrevista - Total 20 questions
GDPR preguntas y respuestas de entrevista - Total 30 questions
HITRUST preguntas y respuestas de entrevista - Total 20 questions
LGPD preguntas y respuestas de entrevista - Total 20 questions
Data Structures preguntas y respuestas de entrevista - Total 49 questions
Computer Networking preguntas y respuestas de entrevista - Total 65 questions
Microsoft Excel preguntas y respuestas de entrevista - Total 37 questions
Computer Basics preguntas y respuestas de entrevista - Total 62 questions
Computer Science preguntas y respuestas de entrevista - Total 50 questions
MS Word preguntas y respuestas de entrevista - Total 50 questions
Operating System preguntas y respuestas de entrevista - Total 22 questions
Tips and Tricks preguntas y respuestas de entrevista - Total 30 questions
PoowerPoint preguntas y respuestas de entrevista - Total 50 questions
Pandas preguntas y respuestas de entrevista - Total 30 questions
Deep Learning preguntas y respuestas de entrevista - Total 29 questions
PySpark preguntas y respuestas de entrevista - Total 30 questions
Flask preguntas y respuestas de entrevista - Total 40 questions
PyTorch preguntas y respuestas de entrevista - Total 25 questions
Data Science preguntas y respuestas de entrevista - Total 23 questions
SciPy preguntas y respuestas de entrevista - Total 30 questions
Generative AI preguntas y respuestas de entrevista - Total 30 questions
NumPy preguntas y respuestas de entrevista - Total 30 questions
Python preguntas y respuestas de entrevista - Total 106 questions
Python Pandas preguntas y respuestas de entrevista - Total 48 questions
Python Matplotlib preguntas y respuestas de entrevista - Total 30 questions
Django preguntas y respuestas de entrevista - Total 50 questions
MariaDB preguntas y respuestas de entrevista - Total 40 questions
DBMS preguntas y respuestas de entrevista - Total 73 questions
Apache Hive preguntas y respuestas de entrevista - Total 30 questions
SSIS preguntas y respuestas de entrevista - Total 30 questions
PostgreSQL preguntas y respuestas de entrevista - Total 30 questions
Teradata preguntas y respuestas de entrevista - Total 20 questions
SQL Query preguntas y respuestas de entrevista - Total 70 questions
SQLite preguntas y respuestas de entrevista - Total 53 questions
Cassandra preguntas y respuestas de entrevista - Total 25 questions
Neo4j preguntas y respuestas de entrevista - Total 44 questions
MSSQL preguntas y respuestas de entrevista - Total 50 questions
OrientDB preguntas y respuestas de entrevista - Total 46 questions
SQL preguntas y respuestas de entrevista - Total 152 questions
Data Warehouse preguntas y respuestas de entrevista - Total 20 questions
IBM DB2 preguntas y respuestas de entrevista - Total 40 questions
Data Mining preguntas y respuestas de entrevista - Total 30 questions
Elasticsearch preguntas y respuestas de entrevista - Total 61 questions
Oracle preguntas y respuestas de entrevista - Total 34 questions
MongoDB preguntas y respuestas de entrevista - Total 27 questions
AWS DynamoDB preguntas y respuestas de entrevista - Total 46 questions
Entity Framework preguntas y respuestas de entrevista - Total 46 questions
MySQL preguntas y respuestas de entrevista - Total 108 questions
Data Modeling preguntas y respuestas de entrevista - Total 30 questions
Redis Cache preguntas y respuestas de entrevista - Total 20 questions
Data Engineer preguntas y respuestas de entrevista - Total 30 questions
Robotics preguntas y respuestas de entrevista - Total 28 questions
AutoCAD preguntas y respuestas de entrevista - Total 30 questions
Power System preguntas y respuestas de entrevista - Total 28 questions
Electrical Engineering preguntas y respuestas de entrevista - Total 30 questions
Verilog preguntas y respuestas de entrevista - Total 30 questions
Digital Electronics preguntas y respuestas de entrevista - Total 38 questions
VLSI preguntas y respuestas de entrevista - Total 30 questions
Software Engineering preguntas y respuestas de entrevista - Total 27 questions
MATLAB preguntas y respuestas de entrevista - Total 25 questions
Civil Engineering preguntas y respuestas de entrevista - Total 30 questions
Electrical Machines preguntas y respuestas de entrevista - Total 29 questions
Oracle CXUnity preguntas y respuestas de entrevista - Total 29 questions
Web Services preguntas y respuestas de entrevista - Total 10 questions
Salesforce Lightning preguntas y respuestas de entrevista - Total 30 questions
IBM Integration Bus preguntas y respuestas de entrevista - Total 30 questions
Power BI preguntas y respuestas de entrevista - Total 24 questions
OIC preguntas y respuestas de entrevista - Total 30 questions
Web API preguntas y respuestas de entrevista - Total 31 questions
Dell Boomi preguntas y respuestas de entrevista - Total 30 questions
Salesforce preguntas y respuestas de entrevista - Total 57 questions
IBM DataStage preguntas y respuestas de entrevista - Total 20 questions
Talend preguntas y respuestas de entrevista - Total 34 questions
TIBCO preguntas y respuestas de entrevista - Total 30 questions
Informatica preguntas y respuestas de entrevista - Total 48 questions
Java Applet preguntas y respuestas de entrevista - Total 29 questions
Java Mail preguntas y respuestas de entrevista - Total 27 questions
Google Gson preguntas y respuestas de entrevista - Total 8 questions
Java 21 preguntas y respuestas de entrevista - Total 21 questions
RMI preguntas y respuestas de entrevista - Total 31 questions
Java Support preguntas y respuestas de entrevista - Total 30 questions
Apache Camel preguntas y respuestas de entrevista - Total 20 questions
Struts preguntas y respuestas de entrevista - Total 84 questions
JAXB preguntas y respuestas de entrevista - Total 18 questions
J2EE preguntas y respuestas de entrevista - Total 25 questions
JUnit preguntas y respuestas de entrevista - Total 24 questions
Java OOPs preguntas y respuestas de entrevista - Total 30 questions
Apache Tapestry preguntas y respuestas de entrevista - Total 9 questions
JSP preguntas y respuestas de entrevista - Total 49 questions
Java Concurrency preguntas y respuestas de entrevista - Total 30 questions
JDBC preguntas y respuestas de entrevista - Total 27 questions
Java 11 preguntas y respuestas de entrevista - Total 24 questions
Java Garbage Collection preguntas y respuestas de entrevista - Total 30 questions
Java Swing preguntas y respuestas de entrevista - Total 27 questions
Java Design Patterns preguntas y respuestas de entrevista - Total 15 questions
Spring Framework preguntas y respuestas de entrevista - Total 53 questions
JPA preguntas y respuestas de entrevista - Total 41 questions
JSF preguntas y respuestas de entrevista - Total 24 questions
Java 8 preguntas y respuestas de entrevista - Total 30 questions
Hibernate preguntas y respuestas de entrevista - Total 52 questions
JMS preguntas y respuestas de entrevista - Total 64 questions
Java 17 preguntas y respuestas de entrevista - Total 20 questions
Java Beans preguntas y respuestas de entrevista - Total 57 questions
Java Exception Handling preguntas y respuestas de entrevista - Total 30 questions
Spring Boot preguntas y respuestas de entrevista - Total 50 questions
Servlets preguntas y respuestas de entrevista - Total 34 questions
Kotlin preguntas y respuestas de entrevista - Total 30 questions
EJB preguntas y respuestas de entrevista - Total 80 questions
Java 15 preguntas y respuestas de entrevista - Total 16 questions
Java Multithreading preguntas y respuestas de entrevista - Total 30 questions
Apache Wicket preguntas y respuestas de entrevista - Total 26 questions
Core Java preguntas y respuestas de entrevista - Total 306 questions
JBoss preguntas y respuestas de entrevista - Total 14 questions
Log4j preguntas y respuestas de entrevista - Total 35 questions
ITIL preguntas y respuestas de entrevista - Total 25 questions
Finance preguntas y respuestas de entrevista - Total 30 questions
JIRA preguntas y respuestas de entrevista - Total 30 questions
SAP MM preguntas y respuestas de entrevista - Total 30 questions
SAP ABAP preguntas y respuestas de entrevista - Total 24 questions
SCCM preguntas y respuestas de entrevista - Total 30 questions
Tally preguntas y respuestas de entrevista - Total 30 questions
Pega preguntas y respuestas de entrevista - Total 30 questions
Android preguntas y respuestas de entrevista - Total 14 questions
Mobile Computing preguntas y respuestas de entrevista - Total 20 questions
Xamarin preguntas y respuestas de entrevista - Total 31 questions
iOS preguntas y respuestas de entrevista - Total 52 questions
Ionic preguntas y respuestas de entrevista - Total 32 questions
Kubernetes preguntas y respuestas de entrevista - Total 30 questions
Microservices preguntas y respuestas de entrevista - Total 30 questions
Apache Kafka preguntas y respuestas de entrevista - Total 38 questions
Tableau preguntas y respuestas de entrevista - Total 20 questions
Adobe AEM preguntas y respuestas de entrevista - Total 50 questions
IAS preguntas y respuestas de entrevista - Total 56 questions
PHP OOPs preguntas y respuestas de entrevista - Total 30 questions
OOPs preguntas y respuestas de entrevista - Total 30 questions
Fashion Designer preguntas y respuestas de entrevista - Total 20 questions
Desktop Support preguntas y respuestas de entrevista - Total 30 questions
CICS preguntas y respuestas de entrevista - Total 30 questions
Yoga Teachers Training preguntas y respuestas de entrevista - Total 30 questions
Nursing preguntas y respuestas de entrevista - Total 40 questions
Linked List preguntas y respuestas de entrevista - Total 15 questions
Dynamic Programming preguntas y respuestas de entrevista - Total 30 questions
SharePoint preguntas y respuestas de entrevista - Total 28 questions
Behavioral preguntas y respuestas de entrevista - Total 29 questions
School Teachers preguntas y respuestas de entrevista - Total 25 questions
Language in C preguntas y respuestas de entrevista - Total 80 questions
Statistics preguntas y respuestas de entrevista - Total 30 questions
Digital Marketing preguntas y respuestas de entrevista - Total 40 questions
Apache Spark preguntas y respuestas de entrevista - Total 24 questions
Full-Stack Developer preguntas y respuestas de entrevista - Total 60 questions
IIS preguntas y respuestas de entrevista - Total 30 questions
System Design preguntas y respuestas de entrevista - Total 30 questions
VISA preguntas y respuestas de entrevista - Total 30 questions
Google Analytics preguntas y respuestas de entrevista - Total 30 questions
Cloud Computing preguntas y respuestas de entrevista - Total 42 questions
BPO preguntas y respuestas de entrevista - Total 48 questions
ANT preguntas y respuestas de entrevista - Total 10 questions
SEO preguntas y respuestas de entrevista - Total 51 questions
SAS preguntas y respuestas de entrevista - Total 24 questions
Control System preguntas y respuestas de entrevista - Total 28 questions
Agile Methodology preguntas y respuestas de entrevista - Total 30 questions
HR Questions preguntas y respuestas de entrevista - Total 49 questions
REST API preguntas y respuestas de entrevista - Total 52 questions
Content Writer preguntas y respuestas de entrevista - Total 30 questions
Banking preguntas y respuestas de entrevista - Total 20 questions
Checkpoint preguntas y respuestas de entrevista - Total 20 questions
Blockchain preguntas y respuestas de entrevista - Total 29 questions
Technical Support preguntas y respuestas de entrevista - Total 30 questions
Mainframe preguntas y respuestas de entrevista - Total 20 questions
Hadoop preguntas y respuestas de entrevista - Total 40 questions
Chemistry preguntas y respuestas de entrevista - Total 50 questions
Docker preguntas y respuestas de entrevista - Total 30 questions
Sales preguntas y respuestas de entrevista - Total 30 questions
Nature preguntas y respuestas de entrevista - Total 20 questions
Interview Tips preguntas y respuestas de entrevista - Total 30 questions
College Teachers preguntas y respuestas de entrevista - Total 30 questions
SDLC preguntas y respuestas de entrevista - Total 75 questions
Cryptography preguntas y respuestas de entrevista - Total 40 questions
RPA preguntas y respuestas de entrevista - Total 26 questions
Blue Prism preguntas y respuestas de entrevista - Total 20 questions
Memcached preguntas y respuestas de entrevista - Total 28 questions
GIT preguntas y respuestas de entrevista - Total 30 questions
DevOps preguntas y respuestas de entrevista - Total 45 questions
Accounting preguntas y respuestas de entrevista - Total 30 questions
SSB preguntas y respuestas de entrevista - Total 30 questions
Algorithm preguntas y respuestas de entrevista - Total 50 questions
Business Analyst preguntas y respuestas de entrevista - Total 40 questions
Splunk preguntas y respuestas de entrevista - Total 30 questions
Sqoop preguntas y respuestas de entrevista - Total 30 questions
JSON preguntas y respuestas de entrevista - Total 16 questions
OSPF preguntas y respuestas de entrevista - Total 30 questions
Insurance preguntas y respuestas de entrevista - Total 30 questions
Scrum Master preguntas y respuestas de entrevista - Total 30 questions
Accounts Payable preguntas y respuestas de entrevista - Total 30 questions
Computer Graphics preguntas y respuestas de entrevista - Total 25 questions
IoT preguntas y respuestas de entrevista - Total 30 questions
Bitcoin preguntas y respuestas de entrevista - Total 30 questions
Active Directory preguntas y respuestas de entrevista - Total 30 questions
Laravel preguntas y respuestas de entrevista - Total 30 questions
XML preguntas y respuestas de entrevista - Total 25 questions
GraphQL preguntas y respuestas de entrevista - Total 32 questions
Ansible preguntas y respuestas de entrevista - Total 30 questions
Electron.js preguntas y respuestas de entrevista - Total 24 questions
ES6 preguntas y respuestas de entrevista - Total 30 questions
RxJS preguntas y respuestas de entrevista - Total 29 questions
NodeJS preguntas y respuestas de entrevista - Total 30 questions
Vue.js preguntas y respuestas de entrevista - Total 30 questions
ExtJS preguntas y respuestas de entrevista - Total 50 questions
jQuery preguntas y respuestas de entrevista - Total 22 questions
Svelte.js preguntas y respuestas de entrevista - Total 30 questions
Shell Scripting preguntas y respuestas de entrevista - Total 50 questions
Next.js preguntas y respuestas de entrevista - Total 30 questions
Knockout JS preguntas y respuestas de entrevista - Total 25 questions
TypeScript preguntas y respuestas de entrevista - Total 38 questions
PowerShell preguntas y respuestas de entrevista - Total 27 questions
Terraform preguntas y respuestas de entrevista - Total 30 questions
JCL preguntas y respuestas de entrevista - Total 20 questions
JavaScript preguntas y respuestas de entrevista - Total 59 questions
Ajax preguntas y respuestas de entrevista - Total 58 questions
Express.js preguntas y respuestas de entrevista - Total 30 questions
Ethical Hacking preguntas y respuestas de entrevista - Total 40 questions
Cyber Security preguntas y respuestas de entrevista - Total 50 questions
PII preguntas y respuestas de entrevista - Total 30 questions
Data Protection Act preguntas y respuestas de entrevista - Total 20 questions
BGP preguntas y respuestas de entrevista - Total 30 questions
Ubuntu preguntas y respuestas de entrevista - Total 30 questions
Linux preguntas y respuestas de entrevista - Total 43 questions
Unix preguntas y respuestas de entrevista - Total 105 questions
Weblogic preguntas y respuestas de entrevista - Total 30 questions
Tomcat preguntas y respuestas de entrevista - Total 16 questions
Glassfish preguntas y respuestas de entrevista - Total 8 questions
TestNG preguntas y respuestas de entrevista - Total 38 questions
Postman preguntas y respuestas de entrevista - Total 30 questions
SDET preguntas y respuestas de entrevista - Total 30 questions
UiPath preguntas y respuestas de entrevista - Total 38 questions
Quality Assurance preguntas y respuestas de entrevista - Total 56 questions
Selenium preguntas y respuestas de entrevista - Total 40 questions
Kali Linux preguntas y respuestas de entrevista - Total 29 questions
Mobile Testing preguntas y respuestas de entrevista - Total 30 questions
API Testing preguntas y respuestas de entrevista - Total 30 questions
Appium preguntas y respuestas de entrevista - Total 30 questions
ETL Testing preguntas y respuestas de entrevista - Total 20 questions
QTP preguntas y respuestas de entrevista - Total 44 questions
Cucumber preguntas y respuestas de entrevista - Total 30 questions
PHP preguntas y respuestas de entrevista - Total 27 questions
Oracle JET(OJET) preguntas y respuestas de entrevista - Total 54 questions
Frontend Developer preguntas y respuestas de entrevista - Total 30 questions
Zend Framework preguntas y respuestas de entrevista - Total 24 questions
RichFaces preguntas y respuestas de entrevista - Total 26 questions
HTML preguntas y respuestas de entrevista - Total 27 questions
Flutter preguntas y respuestas de entrevista - Total 25 questions
CakePHP preguntas y respuestas de entrevista - Total 30 questions
React preguntas y respuestas de entrevista - Total 40 questions
React Native preguntas y respuestas de entrevista - Total 26 questions
Angular JS preguntas y respuestas de entrevista - Total 21 questions
Web Developer preguntas y respuestas de entrevista - Total 50 questions
Angular 8 preguntas y respuestas de entrevista - Total 32 questions
Dojo preguntas y respuestas de entrevista - Total 23 questions
GWT preguntas y respuestas de entrevista - Total 27 questions
Symfony preguntas y respuestas de entrevista - Total 30 questions
Ruby On Rails preguntas y respuestas de entrevista - Total 74 questions
CSS preguntas y respuestas de entrevista - Total 74 questions
Yii preguntas y respuestas de entrevista - Total 30 questions
Angular preguntas y respuestas de entrevista - Total 50 questions
Copyright © 2026, WithoutBook.