β οΈ Important Update (Virtusa Tests)
I got this info from a random page β please donβt follow it blindly.
Virtusa is conducting two different tests:
π» Hackathon β on Imneo platform
π§ͺ QA / Java role β on Mettle platform
Many people think both tests are the same and end up ignoring one. π«
Iβve told you many times β they are NOT the same!
Make sure you check your mail or official invite properly before skipping any test. β
π«‘4
Successfully cleared Virtusa Hackthon β
Role : SDET
DM for any placement Help
@Mrtrueliving_ix @Mrtrueliving_ix
#Virtusa #Hackthon #R2
R1 β’ : https://t.me/Code_alphix/8306?single
π₯2π1πΎ1
Placement Help available...
Accolite - R2
Virtusa Hackthon - 10 am & 2 pm
Virtusa Hackthon R2
Accenture ONCAMPUS
Cognizant
Amazon SDE
Capgemini ONCAMPUS
AMEX
Infosys
Any On // off campus placement
DM @Mrtrueliving_ix @Mrtrueliving_ix
Those who need π― test Clearance β€οΈ
Accolite Help done β ...
All MCQs+ coding β
Test accomplished β€οΈ || Offcampus β
DM for any placement Help
@Mrtrueliving_ix @Mrtrueliving_ix
#Accolite #Offcampus #R1
Successfully cleared Virtusa - QA β
Test accomplished β€οΈ || Offcampus β
DM for any placement Help π
@Mrtrueliving_ix @Mrtrueliving_ix
#Virtusa #QA #Offcampus #F2f
Review:
https://t.me/Code_alphix/8286?single
Test accomplished β€οΈ || Offcampus β
DM for any placement Help π
@Mrtrueliving_ix @Mrtrueliving_ix
#Virtusa #QA #Offcampus #F2f
Review:
https://t.me/Code_alphix/8286?single
Virtusa Hackthon - 10 Am only coding Slots Available
@Mrtrueliving_ix @Mrtrueliving_ix
https://t.me/Code_alphix/8328?single
@Mrtrueliving_ix @Mrtrueliving_ix
π― Test Clarence Guarantee
https://t.me/Code_alphix/8328?single
import java.util.Scanner;
public class Main {
static class Money {
private int r;
private int p;
public Money(int r, int p) {
this.r = r;
this.p = p;
}
public Money add(Money o) {
int tp = this.p + o.p;
int er = tp / 100;
int rp = tp % 100;
int tr = this.r + o.r + er;
return new Money(tr, rp);
}
public void show() {
if (p == 0) {
System.out.println(r + ".0");
} else {
System.out.printf("%d.%02d\n", r, p);
}
}
}
public static void main(String[] args) {
try {
Scanner sc = new Scanner(System.in);
int r1 = sc.nextInt();
int p1 = sc.nextInt();
int r2 = sc.nextInt();
int p2 = sc.nextInt();
Money m1 = new Money(r1, p1);
Money m2 = new Money(r2, p2);
Money m3 = m1.add(m2);
m3.show();
sc.close();
} catch (Exception e) {
}
}
}
Stay tuned for more Codes
https://t.me/Code_alphix
Refer your friends & add them
public class Main {
static class Money {
private int r;
private int p;
public Money(int r, int p) {
this.r = r;
this.p = p;
}
public Money add(Money o) {
int tp = this.p + o.p;
int er = tp / 100;
int rp = tp % 100;
int tr = this.r + o.r + er;
return new Money(tr, rp);
}
public void show() {
if (p == 0) {
System.out.println(r + ".0");
} else {
System.out.printf("%d.%02d\n", r, p);
}
}
}
public static void main(String[] args) {
try {
Scanner sc = new Scanner(System.in);
int r1 = sc.nextInt();
int p1 = sc.nextInt();
int r2 = sc.nextInt();
int p2 = sc.nextInt();
Money m1 = new Money(r1, p1);
Money m2 = new Money(r2, p2);
Money m3 = m1.add(m2);
m3.show();
sc.close();
} catch (Exception e) {
}
}
}
Stay tuned for more Codes
https://t.me/Code_alphix
Refer your friends & add them
β€1
Virtusa Hackthon -10 Am Help
Test accomplished β€οΈ || Offcampus
MCQs+ essay writing+ 3 codes + 2 power coding
Role : software Developer
DM for any placement Help
On // off campus
@Mrtrueliving_ix @Mrtrueliving_ix
#Virtusa #Hackthon #R1 #Offcampus #SD
β€2
import java.util.*;
class Main {
public static void main(String[] a) {
Scanner s = new Scanner(System.in);
int n = s.nextInt();
s.close();
for (int i = 1; i <= n; i++) {
for (int j = 0; j < n - i; j++) System.out.print(" ");
for (int j = 0; j < i; j++) {
System.out.print("*");
if (j < i - 1) System.out.print(" ");
}
for (int j = 0; j < 2 * (n - i) + 1; j++) System.out.print(" ");
for (int j = 0; j < i; j++) {
System.out.print("*");
if (j < i - 1) System.out.print(" ");
}
System.out.println();
}
}
}
Pattern// Hackthon β