300+ TOP Programming Concepts Interview Questions [UPDATED]

  1. 1. What Is The Difference Between Collision Domain And Broad Cast Domain?

    A collision domain is a logical area in a computer network where data packets can “collide” with one another, in particular in the Ethernet networking protocol. The more collisions in a network the less efficient it is.

    A broadcast domain is a logical area in a computer network where any computer connected to the computer network can directly transmit to any other in the domain without having to go through a routing device.

  2. 2. How To Download The Whole Website Not Internet Example Some Small Data Related Websites?

    By using any website copier software.


  3. Python Interview Questions

  4. 3. Explain The Difference Between Update, Verify And Debug Mode?

    These definitions are for winrunner Run modes:

    • Verify:
      When ever we want to check the behavior of an application and to save the result we use verify run mode
    • update:
      When ever we want to create a new expected results for GUi checkpoints and Bitmap checkpoint we use update run mode
    • Debug:
      When ever we want to run a script after update without any errors in syntax we use Debug run mode
  5. 4. Explain What Is The Use Of == And Equals() Method?

    The == operator compare whether two object references are refer to the same instance or not.The equals() method compare the characters(contents) of two String object.

    Example:

    String a=”Hai”; 
    String b=”Hai”;
    String c=new String(“Hai”);
    System.out.println(a==b); //True
    System.out.println(a==c); //False
    System.out.println(a.equals(b)); //True
    System.out.println(a.equals(c)); //True


  6. Python Tutorial

  7. 5. What Is The Difference Between Unix Password And Windows Password?

    WINDOWS the password lost then no way to login but it’s not the case in UNIX,we can enter.


  8. Core Java Interview Questions

  9. 6. What Is Multithreading?

    Multithreading is the ability of a program or an operating system process to manage its use by more than one user at a time and to even manage multiple requests by the same user without having to have multiple copies of the programming running in the computer. Central processing units have hardware support to efficiently execute multiple threads. These are distinguished from multiprocessing systems (such as multi-core systems) in that the threads have to share the resources of a single core: the computing units, the CPU caches and the translation lookaside buffer (TLB).

  10. 7. Why Constructors Does Not Supports Visual Functions?

    Constructor does not support virtual functions because we need an object to invoke a virtual method in the first place and more over constructors are used to initializing objects,which is a static type.Virtual functions are invoked on the dynamic type of the object,hence the object may not be properly initialized when a constructor call is made.Since the derived part of the object would not be initialized during the execution of base class constructor,hence calling any virtual method from base class constructor does not work well.


  11. Core Java Tutorial
    Basic Programming Interview Questions

  12. 8. Explain What Are Mutants And Explain Mutation Testing?

    A mutated program is called Mutant and Mutation testing is based up on seeding the Implementation with a Fault by applying mutation Operator and determining whether Testing Identify this fault is called Mutation testing

  13. 9. What Is Race Around Condition?

    A race around condition is a fault in the process or a system where the output or the result of the process is critically and unexpectedly dependent on the timing of other events. Race condition especially occurs in multithreaded or in distributed systems.


  14. Scala Interview Questions

  15. 10. Do You Know Hows Do Electrons Travel Through A Lightning Bolt?

    Generally, lightning is negatively charged. During thunderstorms. The Earths is recharged and its surface becomes good conductor of electricity. The Earth is charged negatively and the atmosphere is charged positively. Electrons flow upwards from the entire surface of the Earth. Thunderstorms help transfer the negative charges back to Earth.


  16. Scala Tutorial

  17. 11. How To Calculate Response Time In Client-server Technology?

    This can be done by measureing the time taken by the first byte to reach the client (TTFB) and the time taken by the last byte of the response to reach the client (TTLB) by using various network bandwidths between the client and the server.


  18. R Programming language Interview Questions

  19. 12. How To Delete A Entire Linked List?

    You delete a linked list by iterating through the list and deleting the nodes one by one.

    • Begin at the head
    • Get address of first node
    • Get address of next node
    • Delete first node
    • Do not to access next of the current node after deleting the current node.
    • Move next node to first node

    Repeat

    • If the list is empty, the head pointer will be NULL.

  20. Python Interview Questions

  21. 13. Define Rom Image And Explain Each Section Of A Rom Image In An Exemplary System?

    A ROM image captures the data from a read-only memory chip, such as hardware firmware, video and arcade game boards, etc. It is often used for emulation.


  22. R Programming language Tutorial

  23. 14. Explain What Is The Difference Between Process And Thread With Real Time Examples?

    1. Threads share the address space of the process that created it; processes have their own address.
    2. Threads have direct access to the data segment of its process; processes have their own copy of the data segment of the parent process.
    3. Threads can directly communicate with other threads of its process; processes must use interprocess communication to communicate with sibling processes.
    4. Threads have almost no overhead; processes have considerable overhead.
    5. New threads are easily created; new processes require duplication of the parent process.
    6. Threads can exercise considerable control over threads of the same process; processes can only exercise control over child processes.
    7. Changes to the main thread (cancellation, priority change, etc.) may affect the behavior of the other threads of the process; changes to the parent process does not affect child processes.
  24. 15. How To Print “hello World” In C Without Using Semicolon?

    main()
    {
    clrscr();
    if(printf(“Hello Tarun Goyal”))
    {}
    getch();
    }


  25. D Programming Language Interview Questions

  26. 16. How To Increase Transfer Rate Of An Hard Disk?

    See if any among these helps to increase Hard disk transfer rate…

    • Try using RAID setup
    • In Device Manager under ATA/ATAPI Controllers verify if the hard disk is running in UDMA mode.
    • Update motherboard chipset drivers
    • Under Properties of the drive, Hardware Tab -> Properties of the hard disk:
      • Enable write caching
      • Enable advanced performance

  27. D Programming Language Tutorial

  28. 17. What Are The Advantages & Disadvantages Of Vertical Cluster & Horizontal Cluster? Which Is The Best? Why?

    In horizontally clustered environment, cluster-enabled application is deployed on multiple physical machines. Each machine is available for requests. Horizontal clusters offers protection over hardware failure, increases efficiency, provides load balancing and process failover. However, since there are many number of physical machines involved the installation and maintenance cost increases proportionally.

    In Vertical clustering, multiple application server instances are hosted on the same physical machine. This type of clustering provides increased efficiency, load balancing and process failover. However, if hardware fails then there may not be ready alternative.


  29. Advanced C# Interview Questions

  30. 18. Explain Cdrom Access Is Random Or Semi Random Or Sequential?

    CDROM access is sequential..

    Magnetic sequential access memory is typically used for secondary storage in general-purpose computers due to their higher density at lower cost compared to RAM, as well as resistance to wear and non-volatility. Examples of SAM devices still in use include hard disks, CD-ROMs and magnetic tapes. Historically, drum memory has also been used.


  31. Core Java Interview Questions

  32. 19. What Is Dirty Dimension?

    If a Record occurs more than one time in a table by the difference of a non-key attribute then such a dimension is called Dirty Dimemsion.


  33. Object Oriented Analysis and Design Tutorial

  34. 20. What Is The Hierarchy Levels In Data Warehousing Concepts Level?

    In-accurate data is often termed as dirty data and has been characterized as missing data, wrong data and compound data with different representations.

    Ex. :- customer dimension in which the same person can appear multiple times probably not with exactly the same spellings or other attributes.


  35. Advanced C++ Interview Questions

  36. 21. Write An O(log2(n)) Algorithm To Find X^n?

    int computeXn(int x, int n)
    {
    if(n == 2)
    {
    return x*x;
    }
    else if(n % 2 == 0)
    {
    int y = computeXn(x, n/2);
    return y*y;
    }
    else if(n % 2 == 1)
    {
    int y = computeXn(x, n/2);
    return y*y*x;
    }
    }

     

  37. 22. What Is A Lowest Level Computer Language?

    8085 Assembly language is widely known as the lowest level language!!!

  38. 23. How To Implement “queue” Functionality By Using “2 Stacks”?

    1. Take 2 empty stacks.
    2. Fill the 1st stack with some items (eg: input 100, 101, 102, 103)
    3. Now read the items from 1st stack in LIFO order and write to 2nd stack.
      (By this the 2nd stack will get the items in the order .. 103, 102, 101, 100)
    4. Now read the items from 2nd stack in LIFO order i.e. the output will be 100, 101, 102, 103.
      (this is the queue order FIFO with respect to the actual items entered in 1st stack.)

  39. Apache Tomcat Interview Questions

  40. 24. What Is Multitasking?

    Two or more process run concurrently called MultiTasking.

    There are two types of multitasking:

    1. Process-based
    2. Thread-based.

    Process-based multitasking allows your computer to run two or more programs concurrently. Thread-based multitasing means single program can perform two or more task simultaneously.


  41. Basic Programming Interview Questions

  42. 25. What Is How Chat Server Works?

    Through a socket programming bidirectional communication.

  43. 26. Give The Complete Difference Between Database, Relational Database And Object Database?

    A database is an organized collection of information. It is structured so you can jump to the information by using a key, and find related infromation by navigating a path. A sequential (flat) file is not considered a database. 

    A relational database contains one-to-many relationships.

    A networked database contains one-to-many and many-to-many relationships.


  44. Basic C Interview Questions

  45. 27. Why Dont We Give A & Before Reading A String In C Language?
    Scanf(“%s”,str); Why Is It Not Scanf(“%s”,&str);

    We don’t give an & before reading a string. This is so because a string is a character array. For an array, be it integer or character or any other array, declared as int a[10] or char str[20], the name ‘a’ or ‘str’ stores the base address of the array, that is the address of the memory location where the array is starting. The scanf statement requires the address of the location to store the value input by the user. Since str already stores the address of the memory location we do not need to add the & before it.


  46. Scala Interview Questions

  47. 28. How To Hide A Text In Cognos Reportnet?

    yes, we can hide by 2 possible options.

    1. make the box type none to the text
    2. Use boolean
  48. 29. Explain What Is The Osi Model?

    OSI is Open System Interface Model. It is a concept which is used to make data transfer in steps. There are 7 layers and each layer interact with its counterpart. earlier a product made by any abc co was able to communicate with the same company product. to communicate with different co’s products it was created. as it’s name shows “OPEN System Interface”


  49. C# OOPS Interview Questions

  50. 30. Tell Me How Can We Check Out The Files From Cvs?

    In GUI mode i.e winCVS, On menubar,there is checkout option.In that u can click and select the module that you want to check out.

    In UNIX mode,you have to execute the following comand
    >CVS checkout -r

  51. 31. Explain What Are The Differences Between Desktop And Enterprise Application?

    Desktop application runs on a single machine. It could be a part of network. But Application and database resides on same machine. And only one user can access it at a time.Enterprise application is generally a multi-tier application. Many a concurrent users can access data and application at a time.

  52. 32. What Is Virtual Memory Under Linux?

    Linux supports virtual memory, that is, using a disk as an extension of RAM so that the effective size of usable memory grows correspondingly. The kernel will write the contents of a currently unused block of memory to the hard disk so that the memory can be used for another purpose. When the original contents are needed again, they are read back into memory. This is all made completely transparent to the user; programs running under Linux only see the larger amount of memory available and don’t notice that parts of them reside on the disk from time to time. Of course, reading and writing the hard disk is slower (on the order of a thousand times slower) than using real memory, so the programs don’t run as fast. The part of the hard disk that is used as virtual memory is called the swap space


  53. Object Oriented Analysis and Design Interview Questions

  54. 33. How To Remove Sections In Report In Reportnet?

    Remove Sections : To remove a section, do the following Steps :

    1. Delete the section header.
    2. From the View menu, click Page Structure.
    3. Expand Page Body until you see the data container in which you added the section.
      The data container is nested in the List object that is created when you add a section.
    4. Drag the data container to Page Body.
      The data container appears as a node of Page Body.
    5. Delete the List object.
      In the Query Explorer, the query that is created when you add a section is also deleted.
    6. From the View menu, click Page Design.
    7. In the Insertable Objects pane, click the Query Items tab.
    8. Drag the query item that was used as a section header back into the data container.

  55. R Programming language Interview Questions

  56. 34. Explain How To Write A Class In C++ Using Only One Object?

    class singleten
    { static int count; singleten()
    { if (count==1)
    { exit(0);
    } count++;
    }}
    singleten::count =0;void main()
    {singleten s1;singleten s2;}
    program is terminated as soon as second object is created.

  57. 35. A Function Is Running, It Has Its Own Stack Pointer, Memory Area Now It Invokes Another Function From This Point What Changes Will Be In Its Memory Area And What Other Changes In Data Segment, Stack Segment, Heap Segment. I Want A Complete Picture Of Memory Architecture?

    There will be a lot of changes in fact. First of all, all the variables the function was suing needs to be pushed into the stack. (we need all these variables when we return from the other function). The Program counter will be pushed to stack too… (When the “return” of second function occurs we should know where to ‘return’ to)These are the basics which are bound to happen when a function calls another.

  58. 36. Explain What Is Actually Meant For Buffer? How Does It Work?

    Buffer is something that is used to hold the data temporarly.

    Ex-If we are watching any thing online,then buffering of data takes place i.e for sometime data get stored in buffer then processed.


  59. D Programming Language Interview Questions

  60. 37. Tell Me Can We Execute Any Simple Program Without Installing Any Operating System?

    No! we can not run any simple program with out using any interface such as operatin systen or System software. but in some cases like Machine level languge or firmware run without any software because it directlly communicate with hardware and makes the hardware active so other program can run using his platform.

  61. 38. Write A C Program To Reverse The String Without Using Strrev() Function?

    #include
    #include
    #include
    void main()
    {
    char *str;
    int i,len;
    //not using any temp variable and assume we can use only string array and length
    printf(“Enter String : “);
    scanf(“%s”,str);
    len=strlen(str)-1;
    for(i=0;i{
    str[i]+=str[len];
    str[len]=str[i]-str[len];
    str[i]=str[i]-str[len–];
    }
    printf(“Reverse String is : %s”,str);
    getch();
    }

  62. 39. Tell Me How To Execute 13,000 Test Cases In A Faster Way In Manual Testing?

    Cannot execute 13,000 FTS faster. First need to analyse the severity and priority of the functionality wise and then the selected test alone have to execute.

  63. 40. What Is The Dif Between Review And Walkthrough? On Testing Perspective ,who Will Do Review And Walkthrough? Clarify With An Real Example?

    In laymans term walk-through is nothing but running thru the requirements while review is making an analysis of the progress and if the case may be a change has to be recommended


  64. Advanced C# Interview Questions

  65. 41. A Two-dimensional Array X (7,9) Is Stored Linearly Column-wise In A Computers Memory. Each Element Requires 8 Bytes For Storage Of The Value. If The First Byte Address Of X (1,1) Is 3000, What Would Be The Last Byte Address Of X (2,3)?

    use the formulae

    X(i,j)=Base+w[n(i-1)+(j-1)]
    where m=7 ,n =9 ,i=2 ,j=3
    hence 3000+8*[9(2-1)+(3-1)]
    =3000+8*(9+2)
    =3000+8*11=3088

  66. 42. Define Raster And Vector Data. Explain What Is The Difference Between Raster And Vector Data?

    Raster data is a set of horizontal lines composed of individual pixels, used to form an image on a CRT or other screen.Raster data makes use of matrix of square areas to define where features are located. These squares are typically of uniform size, and their size determines the detail that can be maintained in the dataset.Raster data represent square areas, they describe interiors rather than boundaries. Vector data use X and Y coordinates to define the locations of points, lines, and areas (polygons) that correspond to map features, vector data tend to define centers and edges of features.They are excellent for capturing and storing spatial details


  67. Advanced C++ Interview Questions

  68. 43. Planning To Start A Career As A Manual Tester ,is Taking A Course Compulsory Or Can I Get The Subject By Referring Through Information On Internet?,does Manual Testers Use Any Tools In Real Time?

    Not necessary that you have to take any course provided if you are not fresher. Suppose if you are working in any company as design engineer, then as you have the domain knowledge working as end user. Then you can definitely use this knowledge to test the software and find bugs. And regarding processes and tools used every company has different strategy which can be managed or learn once you get into that company.

  69. 44. What Kind Of Useful Task Does Stacks Support?

    Stack supports four major computing areas,they are:

    1. expression evaluation
    2. subroutine return address storage
    3. dynamically allocated local variable storage and
    4. subroutine parameter passing.
  70. 45. What Are Application Clusters In Crm?

    CRM application cluster is a software that ranges in size and complexity making it possible for an organization to select the type of software needed the most. It consists of how a customer is related to sales,marketing and fulfillment,customer service and support,retention and loyalty program and contact and account management.

  71. 46. What Is The Difference Between Connecting To Rdbms Using Odbc And Native Drivers?

    ODBC is an open standard for software providers to follow when creating an intermidate layer between the database and the application using the database. Having “open standards” usually means that different applications can write their code the same way no matter which database they are using, as long as that database comes with an ODBC driver.In contrast, native drivers are built with one specific database in mind. Thus, applications written to use the native driver will only work with one particular database. You will lose flexibility in your code’s ability to switch database vendors, but you might gain performance enhancements due to the fact that the driver is custom made for the database and may be able to take advantage of an “insider’s view” of the database software.

  72. 47. Explain Virtual Function?

    virtual functions are the functions by which we can implement the concept of polymorphism ,ie one name with several distinct forms.a f’n preceded by a virtual keyword makes a function virtual means the compiler turns on the mechanism to perform late binding or dynamic binding.more of all,the same function name can be used to perform different tasks .

  73. 48. How To Get The Prime Number Rows From Table I.e. Like 1,3,5,7,11?

    There is no specific formula to find prime numbers.

  74. 49. What Are The Various Cause & Effect Signals Of The 8085 Microprocessor?

    Interrupts.

  75. 50. What Is Data Modelling?

    Data Modelling is designing of the data content and structure of the database.

    The data model documents the structure of and interrelationships between the data – it is presented as a combination of simple diagrams and written definitions and is independent of any DBMS software or hardware considerations.

  76. 51. Explain What Are Dangling Pointers,virtual Constructors And Virtual Destructors?

    char *str=new str;char *str1=new str1;strcpy(str,str1);delete str;at this time str will act as dangling pointer because when str1 is copied to str ,then it will create the deep copy,so when when we will delete that one then still thare is existing of its instance.That is called dangling pointer

  77. 52. What Is The Scope Of Information Technology?

    The scope of the information technology will be live forever, bcaz, there is a need for air to live , v need a automation to servive so IT is forever no probs.

  78. 53. Explain Can You Deploy Mercury Quicktest Professional On Mercury Managed Service?

    Yes. Mercury Managed Services can provide you the benefits of fast time to value, on-going mentoring and lower total cost of ownership for Mercury QuickTest Professional as long as you are also utilizing Mercury Managed Services for Quality Center.

  79. 54. What Is Paging?

    Pageing is a memory Management technique which allows users program memory to be non continus, the technique is used to remove the problem of external fragmentation.In this technique entire user Memory is divided into fixed size page frames, a Page Map table is used to map the user process pages to physical memory page.

  80. 55. What Is Swapping?

    Swapping is to chance the value to each other in c++#include#includevoid main(){Int a,b;cout<<"Enter the value of a ::::"<>a;cout<<"Enter the value of b ::::"<>b;a=a+b;b=a-b;a=a-b;cout<

  81. 56. I Want To Run Unix Script From Windows Batch File That Will Connect Automatically To Unix With Username And Password. Can Anybody Help Me How I Can Write The Script File?

    If you are looking at connecting to a *nix machine from windows then you can very well use a windows batch file. The latest windows scripting package provides pretty powerful tools similar to *nix scripting.Or you can try installing Cygwin which will provide the windows port of *nix tools that are usually used in *nix scripts.But if you are running it from windows then the best one would be to write a windows batch file.

  82. 57. I Have Got Abi Installed On My Local Comp, I Know That Gde Goes To Co>op Through The Repository.i Want To Use The Repository To Chicken And Checkout. Any Steps To Connect From Gde To Repository Will Be Greatly Appreciated?

    We can connect GDE to EME(Repository) inorder to have checkin and checkout.A file with extension .aip will give sufficeient infto connect to EME

  83. 58. How Do I Put A Background On A Website Using Css Coding?

    • If you want to put background color you can use background-color property of CSS in body tag
    • If you want to put background image you can use background-image property of CSS in body tag
  84. 59. Suppose If Get Method Is Less Secure Than Post Method Then Why They Introduced Get Method.and Well Use Only Post Method Alone. Wats The Need For Get Here?

    • Using GET method form data is appended to URL while using POST method it is transferred in the message body.
    • GET method is intended for information retrieval. It should be used to retrieve information that do not change state of server.
    • For functions such as login, POST method is preferable due to security reasons.
  85. 60. How Do U Go About Gathering The Requirements?

    Requirement gathering is an art rather than a science. First it depends upon at what level you are talking about. Generally speaking, requirements gathering follows Top-Down Approach. It also depends upon your level in the SDLC cycle. There are different ways of gathering requirements. Generally accepted methods are:

    1. Intereviewing Techniques.
    2. Case Study methods.
    3. Joint Application Development Method.
    4. Application Explorer method.
    5. Brain Stroming approach,etc.

    There are also different tools used for requirement gathering like, UML, Rational Rose, Microsoft Visio, Recruitment Matrix,etc.

  86. 61. What Is The Main Difference Between Portability And Platform Independent?

    I agree it is correct to say that Java is platform independent, but it is due to the Java Virtual Machine. Java programs are only intermediately compiled, which allows adaptation to the given environment it needs to run in later.

    An example of a portability issue is the creation of Unix. The first version was not portable. It was specific only to that computer’s architecture. Unix became portable when it was rewritten in C. The new version written in C was portable because C served as a “translator”, if you will, between what underlying architecture or devices were physically in the computer and what unix wanted them to do.

  87. 62. Explain The Term “non Volatile Memory” States?

    1. that memory is retained in the memory unit for some time even after power failure to the memory unit
    2. that memory is lost by power failure but regained as soon as power is restored
    3. that memory is retained in the memory unit at higher temperature
    4. that memory is retained in the memory unit for years after power failure to the memory unit
  88. 63. What Is The Difference Between Last Two Data Flow?

    When we are working with FLAG we can use only 2 filter transformations also but at the initial stage it will be better to go with 3 filters. Where we are using the FIRST Filter to insert the records for first time, In second Filter we are inserting the records but these records are with updated information and in third filter we are updating the records with surrogate key. This third filter records will be updated with our changed FLAG value ‘ZERO’. Because we are identifying the current records with FLAG values ‘ONE’.

  89. 64. Explain How Search Engines Work?

    Indexing. Searching. Web search engines work by storing information about many web pages, which they retrieve from the HTML markup of the pages. These pages are retrieved by a Web crawler (sometimes also known as a spider) – an automated Web crawler which follows every link on the site.

  90. 65. How To Remove A Column From Table?

    You can remove a column but first of all you should see that column doest have any values and it should not be a primary key

    ALTER TABLE DROP COLUMN

  91. 66. What Is The Difference Between Client Response Time And Server Response Time?

    • The major difference between the response time between a client & server is of – response time.
    • Usually client response time is lesser in comparison to the server response time.