Interview Questions and Answers - Order By Newest Q2141. How is RDBMS different from DBMS ? Database
This question was recently asked at 'LumenData'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  database  rdbms  dbms  dbms vs rdbms Asked in 1 Companies basic Q2142. How can we make objects if the constructor is private ? Core Java
This question was recently asked at 'Nagravision'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  constructor Asked in 1 Companies This question was recently asked at 'Nagarvision'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  search  binary search Asked in 1 Companies basic   frequent Q2144. What is the use of second level cache in Hibernate ? Hibernate
Ans. Second level cache is shared between sessions. Hibernate by default uses first level cache. Second level cache need to be configurd to use.
There are several second level cache e.g eh cache,jboss cache etc. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies This question was recently asked at 'IBM EGL'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2146. What is the use of Log4j ? Logging
This question was recently asked at 'IBM'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies basic Q2147. What is the use of put() method in Restful webservices ? Web Service
This question was recently asked at 'IBM'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2148. How to capture Screenshot when the testcases are failed? Testing
Ans. Using Listeners Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  testng  selenium Asked in 1 Companies Q2149. What is the use of @import annotation ?
Ans. @Import annotation in Spring allows you to load bean definitions from one or more another @Configuration files or Components. You might not want to configure all the beans in one configuration file. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2150. How to consume services using Restful web services? Web Service
This question was recently asked at 'IBM'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2151. Why String is a class in Java ? Core Java
This question was recently asked at 'NIIT Technologies'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Ans. Oracle having following types of joins these are also called 8i joins. There are:
1. Equi (or) Inner join
2. Non Equi join
3.Self join
4.Outer join
Oracle also support the 9i (or) ANSI standard joins.There are:
1.Inner join
2.Left outer join
3.Right outer join
4.Full outer join
5.Natural join Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  sql joins  sql Asked in 2 Companies Q2153. Write a Program to find number of lines , words and characters in a File. Core Java
Ans. import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class FileUtility {
public static void main(String[] args) {
System.out.println(printFile("/home/userme/notes"));
}
private static int printFile(String filePath) {
int wordCount = 0;
try (BufferedReader br = new BufferedReader(new FileReader(filePath))) {
String line = null;
String[] wordsArray = null;
while ((line = br.readLine()) != null) {
wordsArray = line.split(" ");
wordCount = wordsArray.length;
}
} catch (IOException e) {
e.printStackTrace();
}
return wordCount;
}
} Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  code  coding Asked in 2 Companies Q2154. Given a String with some Code, Write a Parser to have proper indentation. Core Java
This question was recently asked at 'Facebook'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2155. Implement a sparse matrix Java class with a constructor, set and get method.
This question was recently asked at 'GuideWire'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2156. How do you make instance of an abstract class ? Core Java
Ans. By extending it to the derived class and thereby creating instance of derived class. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2157. Explain how Mark & Sweep is implemented in garbage collection. Core Java
This question was recently asked at 'Amazon'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2158. Can the double checked locking fail on single processor system ?
Ans. There is no mapping of single ton with number of processor of the system. So double check locking will not fail depending on number of processor. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2159. What Parameter we need to specify while creating sockets ?
This question was recently asked at 'Symantec'.This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Asked in 1 Companies Q2160. How would you stop a Thread in java ? Core Java
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q2161. What is the difference between grep, zgrep and egrep ? Unix
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  grep  zgrep  egrep Q2162. How can we see running logs ? Unix
Ans. tail -f <LOG_FILE_NAME> Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q2163. What is the command to change file / folder permissions ? What command should we use if we would like to give most liberal position on the file ? Unix
Ans. chmod is used to change permissions on file or folder.
chmod 777 <FILE/FOLDER NAME> Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  chmod Q2164. How to see last 500 lines of a log or text file Unix
Ans. tail -500 <FILE_NAME> Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  unix  log file Q2165. Can we run grep on zipped file ? Unix
Ans. We can zgrep for that Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  grep  zgrep Q2166. How to find something within a folder and all it's sub folder Unix
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  find  unix Q2167. How to find lines in a file containing a particular text and get those lines in a new file Unix
Ans. grep "Some Text" EXISTING_FILE > NEW FILE Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  grep Q2168. Have you ever used awk and sed ? What's the difference between the two ? Unix
This question is still unanswered. Can you please provide an answer. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q2169. How to count lines in a file having a particular text Unix
Ans. grep "Some Text" FILE | wc -l Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve   Q2170. How can we create directories recursively Unix
Ans. mkdir -p /home/newParentDir/newDir Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve