Mock Solution
Mock Solution
{
if($3 == "English")
{eco++};
if( $3 == "Geography")
{gco++};
}
END{
if(gco==0 && eco==0){
print "No records found.";}
else{
print "Count of students for English Major = "eco;
print "Count of students for Geography Major = "gco;
}
}'
import java.util.*;
class College
{
private int id,cNo,pcode;
private String name,addr;
public College(int id, int cNo, int pcode, String name, String addr)
{
super();
this.id = id;
this.cNo = cNo;
this.pcode = pcode;
this.name = name;
this.addr = addr;
}
public int getId()
{
return id;
}
public void setId(int id)
{
this.id = id;
}
public int getContactNo()
{
return cNo;
}
public void setContactNo(int cNo)
{
this.cNo = cNo;
}
public int getPincode()
{
return pcode;
}
public void setPincode(int pcode)
{
this.pcode = pcode;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
public String getAddress()
{
return addr;
}
public void setAddress(String addr)
{
this.addr = addr;
}
}
public class Solution
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
System.out.println("name-"+res1.getName());
System.out.println("contactNo-"+res1.getContactNo());
System.out.println("address-"+res1.getAddress());
System.out.println("pincode-"+res1.getPincode());
}
else
{
System.out.println("No College found with mentioned attribute");
}
System.out.println("name-"+res2.getName());
System.out.println("contactNo-"+res2.getContactNo());
System.out.println("address-"+res2.getAddress());
System.out.println("pincode-"+res2.getPincode());
}
else
{
System.out.println("No College found with mentioned attribute.");
}
}
public static College findCollegeWithMaximumPincode(College col[])
{
int max=0;
College result =null;
for(int i=0; i<col.length; i++){
if(col[i].getPincode() > max){
result = col[i];
max= col[i].getPincode();
}
}
if(result!=null)
return result;
else
return null;
}
}
}
if(ans!=null)
return ans;
else
return null;
}
}
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
import java.util.Scanner;
class Vehicle
{
int number;
String name;
double price;
public Vehicle(int number,String name,double price)
{
super();
this.number=number;
this.name=name;
this.price=price;
}
public int getNumber()
{
return number;
}
public void setNumber(int number)
{
this.number=number;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name=name;
}
public double getPrice()
{
return price;
}
public void setPrice(double price)
{
this.price=price;
}
}
public class Solution
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
sc.nextLine();
Vehicle[] v=new Vehicle[n];
for(int i=0;i<v.length;i++)
{
int number=sc.nextInt();
sc.nextLine();
String name=sc.nextLine();
double price=sc.nextDouble();
sc.nextLine();
v[i]=new Vehicle(number,name,price);
}
String sname=sc.nextLine();
Vehicle vr=findVehicleWithMinimumPrice(v);
if(vr==null)
{
System.out.println("No Vehicle found with mentioned attribute");
}
else
{
System.out.println("number-"+vr.getNumber());
System.out.println("name-"+vr.getName());
System.out.println("price-"+vr.getPrice());
}
Vehicle r=searchVehicleByName(v,sname);
if(r==null)
{
System.out.println("No Vehicle found with mentioned attribute");
}
else
{
System.out.println("number-"+r.getNumber());
System.out.println("name-"+r.getName());
System.out.println("price-"+r.getPrice());
}
sc.close();
}
public static Vehicle searchVehicleByName(Vehicle[] v,String sname)
{
int pos=-1;
for(int i=0;i<v.length;i++)
{
if(v[i].getName().equalsIgnoreCase(sname))
{
pos=i;
}
}
if(pos==-1)
return null;
else
return v[pos];
}
public static Vehicle findVehicleWithMinimumPrice(Vehicle[] v)
{
Vehicle p=v[0];
double min=v[0].getPrice();
for(int i=0;i<v.length;i++)
{
if(v[i].getPrice()<min)
{
min=v[i].getPrice();
p=v[i];
}
}
if(min!=0)
return p;
else
return null;
}
}
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
for(int i=0;i<d.length;i++)
{
tot = tot + d[i].getAge();
count++;
}
avg = tot/count;
if(count == 0)
{
return 0;
}
else
{
return avg;
}
}
public static Lawyer searchLawyerByName(Lawyer[] d, String name)
{
for(Lawyer l : d){
if(l.getName().equalsIgnoreCase(name)){
return l;
}
}
return null;
}
class Lawyer
{
==========================================================
awk 'BEGIN{FS="-";c=0}{
if($4 > 40000)
c=c+1;
}END{
print "Total count:",c;
}'
awk 'BEGIN{FS=",";total=0;IGNORECASE=1;}
{
if($3=="finance")
total=total+$4;
}
END{
if(total==0)
print"No Asset Found";
else
print"Total Asset Price = "total;
}'
=================================================
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
min=players[i].getMatchesPlayed();
obj1=players[i];
}
return obj1;
pObj=players[i];
}
}
return pObj;
class Player
{
//Enter your Code here
int id;
int matchesPlayed;
int totalRuns;
String name;
String team;
public int getId()
{
return id;
}
public int getMatchesPlayed()
{
return matchesPlayed;
}
public int getTotalRuns()
{
return totalRuns;
}
public String getName()
{
return name;
}
public String getTeam()
{
return team;
}
public void setId(int id)
{
this.id = id;
}
public void setMatchesPlayed(int matchesPlayed)
{
this.matchesPlayed = matchesPlayed;
}
public void setTotalRuns(int totalRuns)
{
this.totalRuns = totalRuns;
}
public void setName(String name)
{
this.name= name;
}
public void setTeam(String team)
{
this.team = team;
}
Player(int id, int matchesPlayed, int totalRuns, String name, String team)
{
this.id = id;
this.matchesPlayed = matchesPlayed;
this.totalRuns = totalRuns;
this.name = name;
this.team = team;
}
}