Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

Infosys C++ General Interview Questions
Questions Answers Views Company eMail

1.what is the difference between software & package &application.

1 11276

program to print this triangle * * * * * *

12 21239

Live example for static function?

1 4073

what are prototypes

4 5616

#include void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }

1 3954

I need to find a specific string between two strings how do I do it?

1 3308

Board Coloring Problem Description In this problem you are given a board in which some of the elements are placed as shown in diagram below. Each element represents a color. Fill the other elements in the board, such that none of the adjacent elements (vertically, horizontally and diagonally) should be of the same color. Find out the minimum number of colors that should be used to fill the blank spaces in the board, so that the above condition is met. Color representation is -: 0, 1, 2, 3, 4, 5, 6, 7……………………. There is sample board: For Example: Given Board : Matrix representation of board is : [ _ 1 _ _ ] [ 2 _ _ _ ] [ _ _ 2 _ ] [ 2 _ _ _ ] here blank space is represented by '_' . Minimum colors to fill this board (given in the picture)is 4. Instruction to work with Open PBT Client: Specify the work directory path in the 'Work directory Path' field. The path should correspond to your solution Work directory. Download the support files by clicking the Get Dev Files. You will find the problem directories containing: problem.h file problem.c file in your project directory. Code the solution in.c file inside the problem directory All required files will be downloaded to your work directory. Creating additional files is strongly discouraged. Step 1: In your Solution File: Implement your logic in function int color(char board[4][4]) char board[4][4]board is 2 dimensional matrix of order M X M where M = 4. You can create more functions if required, but those functions should be in the same file. Step 2: In your solution keep in mind the following constraints. In this problem you have to write a program that finds the minimum number of colors needed to fill a board in which some of the elements are placed in advance. Function color() will take 2 dimension board as a input. Function color() returns the minimum number of colors that could fill the board meeting the given condition. Board is a 2 dimensional of M X M where M = 4 else return 0 Fill the other elements in the board, such that none of the adjacent elements (vertically, horizontally and diagonally) should be of the same color. The Prototype of the function is int color(char board[4][4]) This function takes following arguments. board is 2 dimensional matrix of order M X M where M = 4. This function returns minimum no of color by which board can be filled. The constraints are: Board is a 2 dimensional of M X M where M = 4 else return 0 Fill the other elements in the board, such that none of the adjacent elements (vertically, horizontally and diagonally) should be of the same color. Example 1 Input { 2 0 _ 1 } { _ 1 _ _ } { _ 2 _ 0 } { _ _ _ 1 } Output 5 Explanation: We need a minimum 5 different colors to complete the board. Example 2 Input { 2 0 _ 1 3} { _ 1 _ _ 2} { _ 2 _ 0 1} { _ _ _ 1 2} { _ _ _ _ 0} Output 0 Explanation: Size of the board is greater than 4X4. Example 3 Input { _ 0 } { 1 _ } Output 0 Explanation: Size of the board is less than 4X4. For C solutions Header File : boardcoloring.h Function Name : int color(char board1[4][4]) File Name : boardcoloring.c For C++ solutions Header File : boardcoloring.h Class Name : BoardColoring Function Name : int color(char board1[4][4]) File Name : boardcoloring.c

2668

Explain Memory Allocation in C/C++ ?

630

Post New Infosys C++ General Interview Questions


Infosys C++ General Interview Questions


Un-Answered Questions

What is the output of the following program? Why?

618


what idea do you frame of life?

624


Explain the difference between COUNT_STAR and COUNT functions in Apache Pig?

501


Question for mech.engineer in dmrc

1421


What does nw 7.4 sp 05/nw 7.5 sp 02 offers in abap?

681






How to store images in sql server database through vb.net?

499


In cement concrete how to check a quality of material also proportion of material at site ?

1427


Explain what is drupal cron?

78


What is msil in c#?

544


Suppose you solve a problem and after that you are getting an almost same problem with high complexity (and lower complexity). How will you approach to the next problem.

684


informance about performance is disclosed by

1796


Why you leave current job?

632


Differentiate between library() and require()?

73


What is the difference between unenforced and enforced licence keys?

64


What are the points that should be considered by ports while binding?

344