Capgemini interview question

.2 rounds ..1st round. written technical two js programs like Simple HTML page with three input fields and validation second one is js to find sum of numbers.....2nd round f2f technical...questions about..js hosting..oop oriented javascript..navigation in HTML...display 3 divs in same row.......

Interview Answers

Anonymous

15 Apr 2016

3 divs in same row Ans: <div> <div>C1</div> <div>C2</div> <div>C3</div> </div> .Row { display: table; width: 100%; /*Optional*/ table-layout: fixed; /*Optional*/ border-spacing: 10px; /*Optional*/ } .Column { display: table-cell; background-color: red; /*Optional*/ }

10

Anonymous

16 Apr 2019

Sample div { display : inline-block; } <div> <div>C1</div> <div>C2</div> <div>C3</div> </div>

1

Anonymous

16 Apr 2019

Sample div { display : inline-block; } <div> <div>C1</div> <div>C2</div> <div>C3</div> </div>