Hi TCSER'S 💡💡
👉For PRA no need to type the code U have to just copy paste with our instructions
👉 Because PRA has NO PLAGARISM Issue😉😉
👉We will give u accurate code within 10mins U have to just copy past 💯🔥🔥🔥
👉Book ur Slot and Get ur Release letter 💥💥💥
For Slots 👇👇
@danielleo82
@danielleo82
👉For PRA no need to type the code U have to just copy paste with our instructions
👉 Because PRA has NO PLAGARISM Issue😉😉
👉We will give u accurate code within 10mins U have to just copy past 💯🔥🔥🔥
👉Book ur Slot and Get ur Release letter 💥💥💥
For Slots 👇👇
@danielleo82
@danielleo82
🥰1
Don't waste ur PRA Attempt ⚠️⚠️
We will clear ur PRA in single attempt with 80+ scoring 💯💯
Book ur slot and Grab ur Answers with in 15-20mins ✅✅
Then Relax from ur Training 💥💥🙌🙌🙌
@danielleo82
@danielleo82
We will clear ur PRA in single attempt with 80+ scoring 💯💯
Book ur slot and Grab ur Answers with in 15-20mins ✅✅
Then Relax from ur Training 💥💥🙌🙌🙌
@danielleo82
@danielleo82
🔥1
Hi TCSER'S ❤️
24th MAY PRA (PYTHON/ JAVA )⚡⚡
Slots Open Book Ur Slot ASAP📢📢💡
We Will assist Python/JAVA Code ,Unix Code and All MCQ'S With in 15-20mins 💯💯
80+ Clearence is our promise 🙌💯
Book ur Slot and Grab Ur Releasing Letter 🔥🔥🔥
For Slots 👉
@danielleo82
@danielleo82
👇👇Here we uploaded all the Mandatory IEVOLVE ANSWERS 💯💯💯 👇👇
✍️✍️Telegram:
https://t.me/tcsprajavapythonitis
https://t.me/tcsprajavapythonitis
24th MAY PRA (PYTHON/ JAVA )⚡⚡
Slots Open Book Ur Slot ASAP📢📢💡
We Will assist Python/JAVA Code ,Unix Code and All MCQ'S With in 15-20mins 💯💯
80+ Clearence is our promise 🙌💯
Book ur Slot and Grab Ur Releasing Letter 🔥🔥🔥
For Slots 👉
@danielleo82
@danielleo82
👇👇Here we uploaded all the Mandatory IEVOLVE ANSWERS 💯💯💯 👇👇
✍️✍️Telegram:
https://t.me/tcsprajavapythonitis
https://t.me/tcsprajavapythonitis
👍1
1652858528_Mock2_Soln_JAVA_1.pdf
69.1 KB
Mock2 JAVA
Mock2 JAVA
Mock2 JAVA
1652858529_Mock3_Soln_JAVA_1.pdf
73.2 KB
Mock3 JAVA
Mock3 JAVA
Mock3 JAVA
https://t.me/tcsprajavapythonitis
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in); //creating object of scanner class
int n=sc.nextInt(); //calling nextInt() method of Scanner class to accept number of lawyer objects
Lawyer d[] = new Lawyer[n]; //n represents size of the array
for(int i=0;i<d.length;i++)
{
int id=sc.nextInt(); //accept id
sc.nextLine();
String name=sc.nextLine(); // accept name
double salary=sc.nextDouble();
int age=sc.nextInt();
d[i]=new Lawyer(id,name,salary,age); // creating object
}
sc.nextLine();
String newname=sc.nextLine(); //accepting name of lawyer for method 2
double l1=findAverageAgeOfLawyer(d); //calling method1
if(l1!=0){
System.out.println("Average of age "+l1);
}
else
{
System.out.println("No Lawyer found with mentioned attribute.");
}
Lawyer l2=searchLawyerByName(d,newname); //calling method 2
if(l2!=null)
{
System.out.println("id-"+l2.getId());
System.out.println("name-"+l2.getName());
System.out.println("salary-"+l2.getSalary());
System.out.println("age-"+l2.getAge());
}
else{
System.out.println("No Lawyer found with mentioned attribute.");
}
}
public static double findAverageAgeOfLawyer(Lawyer[] ar)
{
double sum=0,avg=0;
for(int i=0;i<ar.length;i++)
{
sum+=ar[i].getAge();
}
avg=(sum/(ar.length));
return avg;
}
public static Lawyer searchLawyerByName(Lawyer[] d, String name)
{
Lawyer l3=null;
for(int i=0;i<d.length;i++)
{
// System.out.println(d[i].getName());
// System.out.println(name);
if(d[i].getName().equalsIgnoreCase(name)){
l3=d[i]; //assigning object value to l3
break;
}
}
return l3;
}
}
class Lawyer
{
private int id;
private String name;
private double salary;
private int age;
public Lawyer(int id,String name,double salary,int age)
{
this.id=id;
this.name=name;
this.age=age;
this.salary=salary;
}
public int getId()
{
return id;
}
public String getName()
{
return name;
}
public int getAge()
{
return age;
}
public double getSalary()
{
return salary;
}
}
JAVA MOCK 3 💯
JAVA MOCK 3 💯
https://t.me/tcsprajavapythonitis
https://t.me/tcsprajavapythonitis
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in); //creating object of scanner class
int n=sc.nextInt(); //calling nextInt() method of Scanner class to accept number of lawyer objects
Lawyer d[] = new Lawyer[n]; //n represents size of the array
for(int i=0;i<d.length;i++)
{
int id=sc.nextInt(); //accept id
sc.nextLine();
String name=sc.nextLine(); // accept name
double salary=sc.nextDouble();
int age=sc.nextInt();
d[i]=new Lawyer(id,name,salary,age); // creating object
}
sc.nextLine();
String newname=sc.nextLine(); //accepting name of lawyer for method 2
double l1=findAverageAgeOfLawyer(d); //calling method1
if(l1!=0){
System.out.println("Average of age "+l1);
}
else
{
System.out.println("No Lawyer found with mentioned attribute.");
}
Lawyer l2=searchLawyerByName(d,newname); //calling method 2
if(l2!=null)
{
System.out.println("id-"+l2.getId());
System.out.println("name-"+l2.getName());
System.out.println("salary-"+l2.getSalary());
System.out.println("age-"+l2.getAge());
}
else{
System.out.println("No Lawyer found with mentioned attribute.");
}
}
public static double findAverageAgeOfLawyer(Lawyer[] ar)
{
double sum=0,avg=0;
for(int i=0;i<ar.length;i++)
{
sum+=ar[i].getAge();
}
avg=(sum/(ar.length));
return avg;
}
public static Lawyer searchLawyerByName(Lawyer[] d, String name)
{
Lawyer l3=null;
for(int i=0;i<d.length;i++)
{
// System.out.println(d[i].getName());
// System.out.println(name);
if(d[i].getName().equalsIgnoreCase(name)){
l3=d[i]; //assigning object value to l3
break;
}
}
return l3;
}
}
class Lawyer
{
private int id;
private String name;
private double salary;
private int age;
public Lawyer(int id,String name,double salary,int age)
{
this.id=id;
this.name=name;
this.age=age;
this.salary=salary;
}
public int getId()
{
return id;
}
public String getName()
{
return name;
}
public int getAge()
{
return age;
}
public double getSalary()
{
return salary;
}
}
JAVA MOCK 3 💯
JAVA MOCK 3 💯
https://t.me/tcsprajavapythonitis
https://t.me/tcsprajavapythonitis
👍2
🚨⚠️Don't believe the candidates who are don't have any channels
We uploaded all the mandatory ievolve courses in our channel Scroll up 📣 📣 💥💥
We will give assistance on ur PRA With 80+ Guarantee ✅✅💯
Book ur slot and grab ur Releasing Letter As soon as possible 💯✍️✍️
MAY 24 JAVA PRA ✅
https://t.me/prajavapra
MAY 24 PYTHON PRA ✅
https://t.me/prapythonpra
⚠️🚨
Don't waste ur PRA first attempt 💡💡
We uploaded all the mandatory ievolve courses in our channel Scroll up 📣 📣 💥💥
We will give assistance on ur PRA With 80+ Guarantee ✅✅💯
Book ur slot and grab ur Releasing Letter As soon as possible 💯✍️✍️
MAY 24 JAVA PRA ✅
https://t.me/prajavapra
MAY 24 PYTHON PRA ✅
https://t.me/prapythonpra
⚠️🚨
Don't waste ur PRA first attempt 💡💡
👍1
Hurry up 🏃♂️🏃♂️🏃♂️🏃♂️
Book ur slot ASAP and Get ur Release Letter from ur ILP TRAINING 🔥🔥🔥🔥
Money is not a mater PRA Clearence and PRA attempt is important ✅💯💯💯
Trusted for PRA 🙌🙌
@danielleo82
@danielleo82
Book ur slot ASAP and Get ur Release Letter from ur ILP TRAINING 🔥🔥🔥🔥
Money is not a mater PRA Clearence and PRA attempt is important ✅💯💯💯
Trusted for PRA 🙌🙌
@danielleo82
@danielleo82
👍1
1652937080_Mock_PRA2_Python_Solution_1.pdf
66.3 KB
PYTHON MOCK PRA 2 💫💫