C#.NET Interview QA

C#.NET Interview QA


c#.net interview questions, c#.net interview questions for 7 years experience, c#.net interview questions for 2 years experience, c#.net interview questions for 3 years experience, c#.net interview programs, c#.net interview questions for experienced professionals, c#.net interview questions codeproject, c#.net interview questions for 6 years experience, c#.net interview question for experienced, c#.net advanced interview questions, c# .net architect interview questions, c# .net architecture interview questions, c#.net interview question answer, c#.net interview questions and answers for experienced, c#.net interview questions and answers pdf, c#.net interview questions and answers for 5 years experience, c#.net interview questions and answers for 6 years experience, c#.net windows application interview questions, c#.net basic interview questions, c# .net interview questions by shivprasad koirala, c#.net scenario based interview questions, c#.net interview questions for beginners, asp.net c# basic interview questions, basic c#.net interview questions and answers for freshers, c#.net coding interview questions, c# .net core interview questions, c#.net collections interview questions, c# .net oops concepts interview questions, common c#.net interview questions, c# corner .net interview questions, c# corner asp.net interview questions, constructor in c# net interview questions, .net core interview questions c# corner, c# .net developer interview questions, junior c# .net developer interview questions, c# net senior developer interview questions, c# .net interview questions pdf download, c#.net web developer interview questions, c# dot net interview questions, c# dot net interview questions for experienced, asp.net c# developer interview questions, c#.net experienced interview questions, c#.net experience interview questions, c#.net interview questions for 5 years experience, c#.net interview questions and answers for experienced pdf, c# asp.net interview questions for experienced, c#.net fresher interview questions, c# .net framework interview questions, c#.net interview questions for experienced, c# net interview questions geekinterview, goldman sachs c#.net interview questions, generics in c#.net interview questions, hcl c#.net interview questions, c#.net interface interview questions, c#.net interview questions indiabix, c# net interview questions in pdf format, c#.net interview questions and answers, c#.net logical interview questions, c#.net latest interview questions, c# .net mvc interview questions, c# .net multithreading interview questions, microsoft c#.net interview questions, most important c#.net interview questions, most frequently asked c#.net interview questions, c#.net interview questions and answers for 3 years experienced, c#.net online interview test, c#.net oop interview questions, c#.net interview questions online test, c#.net oops interview questions and answers, basics of c# .net interview questions, .net interview questions on c#, c#.net interview preparation, c#.net programming interview questions, c# net practical interview questions, c#.net phone interview questions, c# asp.net interview questions pdf, c#.net interview questions for 4 years experience, c# asp net sql interview questions, c# .net web services interview questions, siemens c#.net interview questions, windows service in c# net interview questions, c# interview questions asp.net suresh, c# .net interview test, c#.net tricky interview questions, c#.net telephonic interview questions, c#.net tough interview questions, c# net tutorial interview questions, c#.net threading interview questions, tcs c#.net interview questions, c# vb net interview questions, c#.net winforms interview questions, c#.net wpf interview questions, c#.net written interview questions, wipro c#.net interview questions, asp.net c# wcf interview questions, interview questions on c#.net with answers pdf, c#.net 3.5 interview questions and answers for experienced, c#.net 4.5 interview questions, c#.net 4.0 interview questions, c#.net 4.0 interview questions and answers,
C#.NET

1. What is C#?

 
C# (pronounced "C sharp") is a simple, modern, object-oriented, and type-safe programming language. It will immediately be familiar to C and C++ programmers. C# combines the high productivity of Rapid Application Development (RAD) languages.

2. What are the types of comment in C#?

 
There are 3 types of comments in C#.
Single line (//)
Multi (/* */)
Page/XML Comments (///).

3. What are the namespaces used in C#.NET?

 
Namespace is a logical grouping of class.
using System;
using System.Collections.Generic;
using System.Windows.Forms;

4. What are the characteristics of C#?

 
There are several characteristics of C# are :

Simple
Type safe
Flexible
Object oriented
Compatible
Consistent
Interoperable
Modern

5. What are the different categories of inheritance?

 
Inheritance in Object Oriented Programming is of four types:
Single inheritance: Contains one base class and one derived class.

Hierarchical inheritance: Contains one base class and multiple derived classes of the same base class.

Multilevel inheritance: Contains a class derived from a derived class.

Multiple inheritance: Contains several base classes and a derived class.

6. What are the basic concepts of object oriented programming?

 
It is necessary to understand some of the concepts used extensively in object oriented programming.These include:

Objects
Classes
Data abstraction and encapsulation
Inheritance
Polymorphism
Dynamic Binding
Message passing.

7. Can you inherit multiple interfaces?


Yes. Multiple interfaces may be inherited in C#.

8. What is inheritance?


Inheritance is deriving the new class from the already existing one.

9. What is scope?


Scope refers to the region of code in which a variable may be accessed.

10. Difference between public, static and void?

 
public: The keyword public is an access modifier that tells the C# compiler that the Main method is accessible by anyone.

static: The keyword static declares that the Main method is a global one and can be called without creating an instance of the class. The compiler stores the address of the method as the entry point and uses this information to begin execution before any objects are created.

void: The keyword void is a type modifier that states that the Main method does not return any value.

11. Modifiers in C#?

 
Abstract
Sealed
Virtual
Const
Event
Extern
Override
Readonly
Static
New

12. What are the types of access modifiers in C#?

 
Access modifiers in C# are :

public
protect
private
internal
internal protect

13. What is boxing and unboxing?


Implicit conversion of value type to reference type of a variable is known as BOXING, for example integer to object type conversion. 

Conversion of reference type variable back to value type is called as UnBoxing.

14. What is object?


An object is an instance of a class. An object is created by using operator new. A class that creates an object in memory will contain the information about the values and behaviors (or methods) of that specific object.

15. Where are the types of arrays in C#?

 
Single-Dimensional
Multidimensional
Jagged arrays.

16. What is the difference between Object and Instance?


An instance of a user-defined type is called an object. We can instantiate many objects from one class.
An object is an instance of a class.

17. Define destructors?


A destructor is called for a class object when that object passes out of scope or is explicitly deleted.A destructors as the name implies is used to destroy the objects that have been created by a constructors.Like a constructor , the destructor is a member function whose name is the same as the class name but is precised by a tilde.

18. What is the use of enumerated data type?


An enumerated data type is another user defined type which provides a way for attaching names to numbers thereby increasing comprehensibility of the code. The enum keyword automatically enumerates a list of words by assigning them values 0,1,2, and so on.

19. Define Constructors?


A constructor is a member function with the same name as its class. The constructor is invoked whenever an object of its associated class is created.It is called constructor because it constructs the values of data members of the class.

20. What is encapsulation?


The wrapping up of data and functions into a single unit (called class) is known as encapsulation. Encapsulation containing and hiding information about an object, such as internal data structures and code.

21.Does c# support multiple inheritance?


No,its impossible which accepts multi level inheritance.

22. What is ENUM?


Enum are used to define constants.

23. What is a data set?


A DataSet is an in memory representation of data loaded from any data source.

24. What is the difference between private and public keyword?

 
Private: The private keyword is the default access level and most restrictive among all other access levels. It gives least permission to a type or type member. A private member is accessible only within the body of the class in which it is declared.

Public: The public keyword is most liberal among all access levels, with no restrictions to access what so ever. A public member is accessible not only from within, but also from outside, and gives free access to any member declared within the body or outside the body.

25. Define polymorphism?


Polymorphism means one name, multiple forms. It allows us to have more than one function with the same name in a program. It allows us to have overloading of operators so that an operation can exhibit different behaviors in different instances.
Share:

Automation Anywhere Interview QA

Automation Anywhere Interview Question & Answers

automation anywhere, automation anywhere 10.2, automation anywhere analytics, automation anywhere architecture, automation anywhere artificial intelligence, automation anywhere banking, automation anywhere blue prism, automation anywhere bots, automation anywhere case study, automation anywhere ceo, automation anywhere certification, automation anywhere citrix, automation anywhere coding, automation anywhere cognitive, automation anywhere control room, automation anywhere controls, automation anywhere course, automation anywhere create exe, automation anywhere dashboard, automation anywhere data extraction, automation anywhere database, automation anywhere deloitte, automation anywhere demo, automation anywhere demo videos, automation anywhere deployment, automation anywhere development, automation anywhere download, automation anywhere email, automation anywhere enterprise, automation anywhere enterprise manual, automation anywhere error handling, automation anywhere example, automation anywhere excel, automation anywhere exception handling, automation anywhere exe, automation anywhere extract data, automation anywhere extract table, automation anywhere for beginners, automation anywhere founder, automation anywhere framework, automation anywhere getting started, automation anywhere global variables, automation anywhere help, automation anywhere image recognition, automation anywhere installation, automation anywhere integration, automation anywhere interface, automation anywhere interview questions, automation anywhere introduction, automation anywhere ipo, automation anywhere iq bot, automation anywhere keystrokes, automation anywhere learn, automation anywhere list variable, automation anywhere mainframe, Automation anywhere certification,How to register for Automation anywhere certification?
Automation Anywhere

1.  By using the PUT Folder sub-command place the content from one local folder to a remote folder.

2. FTP is a network protocol used to transfer files from one host to another over a TCP-based network such as a Internet.

3. Change Folder sub-command is used to navigate from a parent folder to a child folder on the FTP/SFTP server.

4. PGP command help automate the process of securing files.

5. Asymmetric encryption types is supported by the PGP command.

6. Create Keys PGP sub-command is used to create public and private encyption keys.

7. Fishbone is not a symmetric algorithm.

8. gzip is not a compression algorithm.

9. OR is the default logical operator.

10. Wait command is used to automate and trigger another action in the automated task based on the terminal status.

11. Share Session Checkbox option of the connect command is used to transfer the exact state of the application to another task in Terminal Emulator.

12. Get Text command is used to receive the text from the terminal.

13. Wait till Cursor Moves to position is NOT  an option of the select Terminal Action drop-sown menu.

14. Download XML data tasks cannot be accomplished using the XML Command.

15. Save Session Data is the XML command can be used only after using insert/update/delete node/Attribute.

Share:

Automation Anywhere Interview QA

Automation Anywhere Interview Question & Answers

automation anywhere, automation anywhere 10.2, automation anywhere analytics, automation anywhere architecture, automation anywhere artificial intelligence, automation anywhere banking, automation anywhere blue prism, automation anywhere bots, automation anywhere case study, automation anywhere ceo, automation anywhere certification, automation anywhere citrix, automation anywhere coding, automation anywhere cognitive, automation anywhere control room, automation anywhere controls, automation anywhere course, automation anywhere create exe, automation anywhere dashboard, automation anywhere data extraction, automation anywhere database, automation anywhere deloitte, automation anywhere demo, automation anywhere demo videos, automation anywhere deployment, automation anywhere development, automation anywhere download, automation anywhere email, automation anywhere enterprise, automation anywhere enterprise manual, automation anywhere error handling, automation anywhere example, automation anywhere excel, automation anywhere exception handling, automation anywhere exe, automation anywhere extract data, automation anywhere extract table, automation anywhere for beginners, automation anywhere founder, automation anywhere framework, automation anywhere getting started, automation anywhere global variables, automation anywhere help, automation anywhere image recognition, automation anywhere installation, automation anywhere integration, automation anywhere interface, automation anywhere interview questions, automation anywhere introduction, automation anywhere ipo, automation anywhere iq bot, automation anywhere keystrokes, automation anywhere learn, automation anywhere list variable, automation anywhere mainframe, Automation anywhere certification,How to register for Automation anywhere certification?
Automation Anywhere


1. Create email account cannot be accomplished using the Email Automation command.

2. Delete Messages command is used to delete the most recent email message from the inbox.

3. Variable sub command of the If/Else command will you use to display emails with specific keywords in the subject line.

4. Send a message to multiple receivers at once tasks can be performed using the Send Email command.

5. To extract email data to an application or a folder prioritize and save emails in storage drive.

6. Drag the Excel command to the task Actions list pane is used to insert an Excel command in the automation task

7. Load Add-ins is required to open an Excel spreadsheet.

8. Split Document commands is used to divide a PDF file into different PDF files.

9. Decrypt Document sub-commands is used to decrypt encrypted PDF documents.

10. Create a seperate image for each page of the PDF files is the function of the PDF to image sub-command.

11. Extract files is not a PDF integration sub-command.

12. Encrypt Document is the PDF Integration sub-commands is used to grant permissions to the users.

Share:

Automation Anywhere Interview Questions and Answers

Automation Anywhere Interview Question & Answers

automation anywhere, automation anywhere 10.2, automation anywhere analytics, automation anywhere architecture, automation anywhere artificial intelligence, automation anywhere banking, automation anywhere blue prism, automation anywhere bots, automation anywhere case study, automation anywhere ceo, automation anywhere certification, automation anywhere citrix, automation anywhere coding, automation anywhere cognitive, automation anywhere control room, automation anywhere controls, automation anywhere course, automation anywhere create exe, automation anywhere dashboard, automation anywhere data extraction, automation anywhere database, automation anywhere deloitte, automation anywhere demo, automation anywhere demo videos, automation anywhere deployment, automation anywhere development, automation anywhere download, automation anywhere email, automation anywhere enterprise, automation anywhere enterprise manual, automation anywhere error handling, automation anywhere example, automation anywhere excel, automation anywhere exception handling, automation anywhere exe, automation anywhere extract data, automation anywhere extract table, automation anywhere for beginners, automation anywhere founder, automation anywhere framework, automation anywhere getting started, automation anywhere global variables, automation anywhere help, automation anywhere image recognition, automation anywhere installation, automation anywhere integration, automation anywhere interface, automation anywhere interview questions, automation anywhere introduction, automation anywhere ipo, automation anywhere iq bot, automation anywhere keystrokes, automation anywhere learn, automation anywhere list variable, automation anywhere mainframe, Automation anywhere certification,How to register for Automation anywhere certification?
Automation Anywhere


1. Take snapshot, Run Task and Log data into a file are possible in Error Handling.


2. .mbot is an extension of a Metabot file.


3. .atmx is an extension of a Task file.


4. value type of variable(s) does a workflow support.


5. Objects, Coordinates and Image play modes available under the Object cloning command.


6. Screen Recorder works on the coordinates of a screen.


7. Screen Recorder is 'Highly' not recommended to use if the application is local and offers full supports of objects for automation.


8. Value type of variable is returned when String Operation's Join command is used.


9. Task Run and Workflow Run types of reports  are generated by the Report Designer.


10. Create a new role under security Tab method is used to assign a new set of permissions to a group of users.


11. Date format of System Variable can be changed.


Share:

Automation Anywhere Interview Questions and Answers

Automation Anywhere Interview Question & Answers

automation anywhere, automation anywhere 10.2, automation anywhere analytics, automation anywhere architecture, automation anywhere artificial intelligence, automation anywhere banking, automation anywhere blue prism, automation anywhere bots, automation anywhere case study, automation anywhere ceo, automation anywhere certification, automation anywhere citrix, automation anywhere coding, automation anywhere cognitive, automation anywhere control room, automation anywhere controls, automation anywhere course, automation anywhere create exe, automation anywhere dashboard, automation anywhere data extraction, automation anywhere database, automation anywhere deloitte, automation anywhere demo, automation anywhere demo videos, automation anywhere deployment, automation anywhere development, automation anywhere download, automation anywhere email, automation anywhere enterprise, automation anywhere enterprise manual, automation anywhere error handling, automation anywhere example, automation anywhere excel, automation anywhere exception handling, automation anywhere exe, automation anywhere extract data, automation anywhere extract table, automation anywhere for beginners, automation anywhere founder, automation anywhere framework, automation anywhere getting started, automation anywhere global variables, automation anywhere help, automation anywhere image recognition, automation anywhere installation, automation anywhere integration, automation anywhere interface, automation anywhere interview questions, automation anywhere introduction, automation anywhere ipo, automation anywhere iq bot, automation anywhere keystrokes, automation anywhere learn, automation anywhere list variable, automation anywhere mainframe, Automation anywhere certification,How to register for Automation anywhere certification?
Automation Anywhere

1. $Filedata Column$ variable allows us to read coulmn wise information from the .csv and .txt file type(s).


2. The FTP-Put Files command is used to Upload file(s) from local system to FTP/SFTP server.


3. Web Recorder can be used to download a file from Web.


4. PDF Integration- Extract Text command allows output as Text type that are Plain and Structured.


5. User connects to more than one excel file during task execution By defining different session name for each excel file.


6. $Filedate Column$ and $Excel Column$ variables are associated with loop commands "Each Row In a CSV/Text File" and "Each Row In an Excel dataset" respectively.


7. While editing a task, the screenshots are not appearing under Visualize Tab. The possible reason is The task was created with secure Recording option enabled in CR.


8. A task has been modified in local client. Manage > Repository client's feature can be used to comapare this task with one uploaded on WebCR


9. List Type of variable is not supported by MetaBots.


10. Smart, Screen and Web Recorder are available recorder in Automation Anywhere.

Share:

Automation Anywhere Interview Question & Answers

Automation Anywhere Interview Question & Answers

automation anywhere, automation anywhere 10.2, automation anywhere analytics, automation anywhere architecture, automation anywhere artificial intelligence, automation anywhere banking, automation anywhere blue prism, automation anywhere bots, automation anywhere case study, automation anywhere ceo, automation anywhere certification, automation anywhere citrix, automation anywhere coding, automation anywhere cognitive, automation anywhere control room, automation anywhere controls, automation anywhere course, automation anywhere create exe, automation anywhere dashboard, automation anywhere data extraction, automation anywhere database, automation anywhere deloitte, automation anywhere demo, automation anywhere demo videos, automation anywhere deployment, automation anywhere development, automation anywhere download, automation anywhere email, automation anywhere enterprise, automation anywhere enterprise manual, automation anywhere error handling, automation anywhere example, automation anywhere excel, automation anywhere exception handling, automation anywhere exe, automation anywhere extract data, automation anywhere extract table, automation anywhere for beginners, automation anywhere founder, automation anywhere framework, automation anywhere getting started, automation anywhere global variables, automation anywhere help, automation anywhere image recognition, automation anywhere installation, automation anywhere integration, automation anywhere interface, automation anywhere interview questions, automation anywhere introduction, automation anywhere ipo, automation anywhere iq bot, automation anywhere keystrokes, automation anywhere learn, automation anywhere list variable, automation anywhere mainframe, Automation anywhere certification,How to register for Automation anywhere certification?
Automation Anywhere


1. In case there is no error in a task, the value of "Error Line Number" will be________________. 

  • -1
  • 0 (Zero)
  • -2
  • None

2. In the loop associated with Database command, which system variable is used to extract column values from the database table? 

  • $Filedata Column$
  • $DataSet Column$
  • $Table Column$
  • $ArrayColumns$

3. Which of the following actions can not be performed using the PDF Integration commands? 

  • Conversion of PDF into Image
  • Extraction of Text from PDF
  • Extraction of Form-Fields from PDF
  • Conversion of Text into PDF

4Which of the following methods can a developer use to debug a task using the Task Editor? 

  • Enable debugging then function keys
  • Directly using function keys
  • By looking at log files only
  • Using message boxes only

5. How can a command be added from the command library to the Task Editor's Actions List? 

  • Type the Command name
  • Press F2 key and select the Command
  • Drag & Drop the Command
  • Press F10 key and select the Command

6. Which of the following variable types are available in the Task Editor? 

  • Array
  • List
  • String
  • Integer

7. Counter variable always starts from which of the following digit? 

  • 0 (Zero)
  • 1
  • -1
  • 2

8. Which of the following is not a valid Loop command? 

  • Each Folder In A Folder
  • Each Row In An Excel Dataset
  • Each Item In An Array
  • Each Node In An XML Dataset

9. Which of the following String Operation sub-commands is used to get number of characters in a given source string? 

  • Length
  • Find
  • Count
  • Before/After

10. Which of the following is 'most' preferable to extract an html table? 

  • Web Recorder
  • Object Cloning
  • OCR
  • All
Share:

Popular Posts

Blog Archive

Total Pageviews

Recent Posts