Interview Questions and Answers - Order By Newest 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   Q2171. What is Web Server and explain its types? Server
Ans. A program that uses HTTP for serving files that create web pages for users in response to their requests that are sent by the HTTP clients of their computer is called as a web server.
Web - Server Types
Apache HTTP Server by the Apache Software Foundation
Internet Information Service from Microsoft
Sun Java System Web Server
Jigsaw Server. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  production support Asked in 1 Companies Q2172. Write code for serialization. Core Java
Ans. // Java code for serialization and deserialization
// of a Java object
import java.io.*;
class Demo implements java.io.Serializable
{
public int a;
public String b;
// Default constructor
public Demo(int a, String b)
{
this.a = a;
this.b = b;
}
}
class Test
{
public static void main(String[] args)
{
Demo object = new Demo(1, "geeksforgeeks");
String filename = "file.ser";
// Serialization
try
{
//Saving of object in a file
FileOutputStream file = new FileOutputStream(filename);
ObjectOutputStream out = new ObjectOutputStream(file);
// Method for serialization of object
out.writeObject(object);
out.close();
file.close();
System.out.println("Object has been serialized");
}
catch(IOException ex)
{
System.out.println("IOException is caught");
}
Demo object1 = null;
// Deserialization
try
{
// Reading the object from a file
FileInputStream file = new FileInputStream(filename);
ObjectInputStream in = new ObjectInputStream(file);
// Method for deserialization of object
object1 = (Demo)in.readObject();
in.close();
file.close();
System.out.println("Object has been deserialized ");
System.out.println("a = " object1.a);
System.out.println("b = " object1.b);
}
catch(IOException ex)
{
System.out.println("IOException is caught");
}
catch(ClassNotFoundException ex)
{
System.out.println("ClassNotFoundException is caught");
}
}
} Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  serialization Asked in 1 Companies Q2173. What are the difference between Procedural and Object Oriented Programming languages ?
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   Q2174. If compareTo() method returns zero, does it mean that the objects are always equal? 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   Q2175. Implement a thread-safe (blocking) queue
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   Q2176. Write a program to implement a counting semaphore
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   Q2177. Find all paths of length L in an acyclic graph Algorithm
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   Q2178. Write a method receiving a stream of integers, caching the last 10 min of data and returning a number if it's less than the current input 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   Q2179. How would you write a socket 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   Q2180. How would you implement low latency data structures ? Data Structure
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