Join Regular Classroom : Visit ClassroomTech

Epam Questions Solve

Epam Full Question Paper Solved | Set- B | Part-II | codewindow.in

void func(Queue q) { int i; if(!isEmpty(q)) { i = delete(q); func(q); insert(q,i); } } Question 1 Answer Question 1 Given a Queue implementation with insert, delete and isEmpty methods, what does the above function do? A. q is unchangedB. q is reversedC. q is emptyD. None Answer B. q is reversed String n_squares(int n){

Epam Full Question Paper Solved | Set- B | Part-II | codewindow.in Read More »

Epam Full Question Paper Solved | Set – A | Part-III | codewindow.in

Previous Question Word Ladder A transformation sequence from word to word endWord using a dictionary wordlist is a sequence of words beginWord->s1->s2->…->sk such that: Every adjacent pair of words differs by a single letter. Every si forr 1<=i<=k is in wordList. Note that beginWord does not need to be in wordList. Constraints: 1 <= beginWord.length<=10

Epam Full Question Paper Solved | Set – A | Part-III | codewindow.in Read More »

Epam Full Question Paper Solved | Set – A | Part-II | codewindow.in

Question 1 Answer Question 1 Abstraction and encapsulation are fundamental principles that underlie the object oriented approach to software develoopment. What can you say about the following two statements? I. Abstraction allows us to focus on what something does without considering the complexities of how it works. II. Encapsulation allows us to consider complex ideas

Epam Full Question Paper Solved | Set – A | Part-II | codewindow.in Read More »

Epam Questions Solve | Round 3 | Codewindow.in

Previous Page Round 3 Question 1 Answer Question 1 Which of the following are checked exceptions?(Choose all that apply)class One extends RuntimeException{}class Two extends Exception{}class Three extends Error{}class Four extends One{}class Five extends Two{}class Six extends Three{} A) ThreeB) OneC) SixD) FourE) FiveF) Two Answer class A{ private void printName(){ System.out.println("Value-A"); } } class B

Epam Questions Solve | Round 3 | Codewindow.in Read More »