Anuj YadavMay 23, 20201 min readOPA Solution for Unix, Python 15-05-2020UNIX Solution:(15 marks) There was only one question. There were 20 minutes allocated for this section. Solution: cat $1 > file.txt...
Anuj YadavMay 23, 20201 min readOPA Solution for Unix, Python, MCQ 22-05-2020UNIX Solution:(15 marks) There was only one question. There were 20 minutes allocated for this section. Solution: read s char=`echo "$s"...
Anuj YadavMay 8, 20201 min readMCQ SOLUTION 08-05-2020NOTE: My score was 33/50, So every answer is not correct. I will update the answers shortly. There was 50 MCQs and time was 50 minutes....
Anuj YadavMay 8, 20201 min readUNIX AND JAVA SOLUTION 08-05-2020Total time for this section was 70 minutes and there were two questions. UNIX SOLUTION There was only one question. We have to basically...
Anuj YadavApr 24, 20201 min readPython Hackathon MCQ Solution -24/04/2020There were 50 questions. The timing was 60 minutes. Note: I will update answers Shortly...........
Anuj YadavApr 24, 20201 min readPython Hackathon Coding Solution -24/04/2020There was only one question. The timing was 60 minutes. """ 1. Define Project class (variables ,constructor and function ) code here in...
Anuj YadavApr 17, 20201 min readJava Hackathon Coding Solution -17/04/2020There was only one question. The timing was 60 minutes. import java.util.Scanner; public class Solution { public static void...
Anuj YadavApr 2, 20201 min readSolution of SQL sectionQuestion no 3. select deptname,maxempcount from department; Question no.4 select a.allocid,d.deptid,e.empid from allocation a join...
Anuj YadavApr 2, 20201 min readSolution for Unix QuestionsQuestion no.1 NOTE: I am not able to solve it. Working on it. Question 2: while read -r line; do (( ${#line} > max )) && max=${#line} &&...
Anuj YadavApr 2, 20202 min readSolution For JAVA QuestionsThe solution of question 8 import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; ...
Anuj YadavMar 10, 20202 min readHow to continue reading lines until there is no more input in Python.from sys import stdinlines = stdin.read().splitlines() It will store all the input in a list. Let us understand it with a Hackerrank...
Anuj YadavFeb 13, 20201 min readTCS XPLORE PROCTORED ASSESSMENT JAVA SOLUTION 13 FEB 2020/*Proctored Assessment 13 Feb'2020 Question 1: Take a String as input and print the vowel with least ascii value in the String test...