Explain about stdin, stdout and stderr?
No Answer is Posted For this Question
Be the First to Post Answer
How will you list only the empty lines in a file (using grep)?
How to replace following lines, catch (DAOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } catch (BOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw e; } catch (Exception e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } Needs to be changed in to, catch (DAOException e) { AppException.handleException (null, null, e, null, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); } catch (BOException e) { AppException.handleException (null, null, null, e, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 0); } catch (Exception e) { AppException.handleException (null, null, null, null, null, e, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); }
What are the 4 basics of OOP?
How can the contents of a file inside jar be read without extracting in a shell script?
What are zombie processes?
How do I open a jshell in cmd?
What is the use of .sh file?
Explain about gui scripting?
Explain about the exit command?
What does .sh file contain?
c program to display the information of given file similar to givan by the unix or linux command ls -l
How to get the last line from a file using just the terminal?