Company: Zeta
Role : SDE( Intern)
Batch : 2025
Apply link-
https://jobs.lever.co/zeta/7703ac43-7425-4af3-8551-9f53eeb9bc6e?lever-via=brPz4nskIn&lever-social=job_site
Role : SDE( Intern)
Batch : 2025
Apply link-
https://jobs.lever.co/zeta/7703ac43-7425-4af3-8551-9f53eeb9bc6e?lever-via=brPz4nskIn&lever-social=job_site
๐4
Amazon | hiring fresher | Graduates | Go AI associate | 6month contract
Company: Amazon
Experience: hiring fresher
Qualification : Graduates
Role : Go AI associate
Register Today :
https://amazonvirtualhiring.hirepro.in/registration/incta/dirc1/apply/?event=14610&job=58500
Company: Amazon
Experience: hiring fresher
Qualification : Graduates
Role : Go AI associate
Register Today :
https://amazonvirtualhiring.hirepro.in/registration/incta/dirc1/apply/?event=14610&job=58500
๐5
๐๐๐ ๐
๐๐๐ ๐๐๐ซ๐ญ๐ข๐๐ข๐๐๐ญ๐ข๐จ๐ง ๐๐จ๐ฎ๐ซ๐ฌ๐
Want to boost your career with AWS certifications but donโt want to spend a fortune?
Iโve got you covered! Here are FREE Amazon AWS certification courses that you can start today.
Learn cloud computing skills, ace those AWS exams, and open doors to top tech roles.
Apply now:- @itjobsservices
Enroll For FREE & Get
Want to boost your career with AWS certifications but donโt want to spend a fortune?
Iโve got you covered! Here are FREE Amazon AWS certification courses that you can start today.
Learn cloud computing skills, ace those AWS exams, and open doors to top tech roles.
Apply now:- @itjobsservices
Enroll For FREE & Get
๐4
Gartner Recruitment 2025 Hiring For Associate Software Engineer- BE/BTech/ME/MTech
Apply Link- https://offcampusjobs4u.com/gartner-recruitment-2025-hiring/
Apply Link- https://offcampusjobs4u.com/gartner-recruitment-2025-hiring/
OffCampusJobs4u.Com - Off Campus Jobs | Off Campus Drives | Freshers Jobs | Off Campus Hiring
Gartner Recruitment 2025 Hiring For Associate Software Engineer- BE/BTech/ME/MTech | OffCampusJobs4u.com
Gartner Recruitment 2025 Hiring For Associate Software Engineer- BE/BTech/ME/MTech | OffCampusJobs4u.com | Off Campus Jobs | Off Campus Drives | Freshers Jobs
๐2
ANZ is hiring Software Engineer
2022, 2023, 2024 gards eligible
Location: Bangalore
Apply now :-
https://careers.anz.com/job/Bengaluru-Software-Engineer/1059263066/
2022, 2023, 2024 gards eligible
Location: Bangalore
Apply now :-
https://careers.anz.com/job/Bengaluru-Software-Engineer/1059263066/
โค1๐1
import java.util.Scanner;
public class NegativeSum {
public static void main(String[] args) {
int[] numbers = {2, -3, -14, 7};
int negativeSum = findNegativeSum(numbers);
}
public static int findNegativeSum(int[] arr) {
int sum = 0;
for (int num : arr) {
if (num < 0) {
sum += num;
}
}
return sum;
}
}
Wipro exam ans
19/1/2025
Java
@itjobsservices
public class NegativeSum {
public static void main(String[] args) {
int[] numbers = {2, -3, -14, 7};
int negativeSum = findNegativeSum(numbers);
}
public static int findNegativeSum(int[] arr) {
int sum = 0;
for (int num : arr) {
if (num < 0) {
sum += num;
}
}
return sum;
}
}
Wipro exam ans
19/1/2025
Java
@itjobsservices
๐7โค1
import java.util.Scanner;
public class MidIndexProblem {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Read the number of elements
System.out.println("Enter the number of elements:");
int n = scanner.nextInt();
// Read the array elements
int[] arr = new int[n];
System.out.println("Enter the elements:");
for (int i = 0; i < n; i++) {
arr[i] = scanner.nextInt();
}
// Find the mid-index
int midIndex = n / 2;
// Output the middle element
System.out.println("Middle element: " + arr[midIndex]);
scanner.close();
}
}
wipro
19/1/25
2. ans , mid-index problem
Java
@itjobsservices
public class MidIndexProblem {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Read the number of elements
System.out.println("Enter the number of elements:");
int n = scanner.nextInt();
// Read the array elements
int[] arr = new int[n];
System.out.println("Enter the elements:");
for (int i = 0; i < n; i++) {
arr[i] = scanner.nextInt();
}
// Find the mid-index
int midIndex = n / 2;
// Output the middle element
System.out.println("Middle element: " + arr[midIndex]);
scanner.close();
}
}
wipro
19/1/25
2. ans , mid-index problem
Java
@itjobsservices
๐3
import java.util.Scanner;
public class RotateNumberArray {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Input the number
System.out.println("Enter the number:");
String input = scanner.next();
int n = input.length();
// Convert the number into an array of digits
int[] arr = new int[n];
for (int i = 0; i < n; i++) {
arr[i] = Character.getNumericValue(input.charAt(i));
}
// Input the number of rotations
System.out.println("Enter the number of rotations:");
int rotations = scanner.nextInt();
// Perform the rotation
int[] rotatedArray = rotateArray(arr, rotations);
// Print the rotated array as a number
System.out.println("Rotated Number:");
for (int digit : rotatedArray) {
System.out.print(digit);
}
scanner.close();
}
public static int[] rotateArray(int[] arr, int rotations) {
int n = arr.length;
// Normalize the rotations
rotations = rotations % n;
// Create a new array to hold the rotated result
int[] result = new int[n];
// Copy the last 'rotations' elements to the beginning
for (int i = 0; i < rotations; i++) {
result[i] = arr[n - rotations + i];
}
// Copy the remaining elements
for (int i = rotations; i < n; i++) {
result[i] = arr[i - rotations];
}
return result;
}
}
Sample input
123456
2
Sample Output
561234
Java
19/1/25
Wipro exam
public class RotateNumberArray {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Input the number
System.out.println("Enter the number:");
String input = scanner.next();
int n = input.length();
// Convert the number into an array of digits
int[] arr = new int[n];
for (int i = 0; i < n; i++) {
arr[i] = Character.getNumericValue(input.charAt(i));
}
// Input the number of rotations
System.out.println("Enter the number of rotations:");
int rotations = scanner.nextInt();
// Perform the rotation
int[] rotatedArray = rotateArray(arr, rotations);
// Print the rotated array as a number
System.out.println("Rotated Number:");
for (int digit : rotatedArray) {
System.out.print(digit);
}
scanner.close();
}
public static int[] rotateArray(int[] arr, int rotations) {
int n = arr.length;
// Normalize the rotations
rotations = rotations % n;
// Create a new array to hold the rotated result
int[] result = new int[n];
// Copy the last 'rotations' elements to the beginning
for (int i = 0; i < rotations; i++) {
result[i] = arr[n - rotations + i];
}
// Copy the remaining elements
for (int i = rotations; i < n; i++) {
result[i] = arr[i - rotations];
}
return result;
}
}
Sample input
123456
2
Sample Output
561234
Java
19/1/25
Wipro exam
๐3
import java.util.Scanner;
public class TwoSum {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Input the array size
System.out.println("Enter the size of the array:");
int size = scanner.nextInt();
// Input the array elements
int[] arr = new int[size];
System.out.println("Enter the array elements:");
for (int i = 0; i < size; i++) {
arr[i] = scanner.nextInt();
}
// Input the target value
System.out.println("Enter the target value:");
int target = scanner.nextInt();
int maxSum=0;
for (int i = 0; i < size; i++) {
int wind=0;
for (int j = i; j < size; j++) {
wind += arr[i+j];
maxSum=Math.max(maxSum,wind);
}
scanner.close();
}
}
public class TwoSum {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Input the array size
System.out.println("Enter the size of the array:");
int size = scanner.nextInt();
// Input the array elements
int[] arr = new int[size];
System.out.println("Enter the array elements:");
for (int i = 0; i < size; i++) {
arr[i] = scanner.nextInt();
}
// Input the target value
System.out.println("Enter the target value:");
int target = scanner.nextInt();
int maxSum=0;
for (int i = 0; i < size; i++) {
int wind=0;
for (int j = i; j < size; j++) {
wind += arr[i+j];
maxSum=Math.max(maxSum,wind);
}
scanner.close();
}
}
โค2๐2
// Online Java Compiler
// Use this editor to write, compile and run your Java code online
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Input the array size
System.out.println("Enter the size of the array:");
int size = scanner.nextInt();
// Input the array elements
int[] arr = new int[size];
System.out.println("Enter the array elements:");
for (int i = 0; i < size; i++) {
arr[i] = scanner.nextInt();
}
// Input the target value
System.out.println("Enter the target value:");
int target = scanner.nextInt();
int maxSum=0;
boolean flag=false;
for (int i = 0; i < size; i++) {
int wind=0;
for (int j = i+1; j < 2; j++) {
if(arr[i]+arr[j]==15){
flag=true;
break;
}
}
}
System.out.println(true);
scanner.close();
}
}
// Use this editor to write, compile and run your Java code online
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Input the array size
System.out.println("Enter the size of the array:");
int size = scanner.nextInt();
// Input the array elements
int[] arr = new int[size];
System.out.println("Enter the array elements:");
for (int i = 0; i < size; i++) {
arr[i] = scanner.nextInt();
}
// Input the target value
System.out.println("Enter the target value:");
int target = scanner.nextInt();
int maxSum=0;
boolean flag=false;
for (int i = 0; i < size; i++) {
int wind=0;
for (int j = i+1; j < 2; j++) {
if(arr[i]+arr[j]==15){
flag=true;
break;
}
}
}
System.out.println(true);
scanner.close();
}
}
๐4
if you want to promotion.
Like a Instagram account, telegram channels, YouTube channel...
โก @Priya_i
Like a Instagram account, telegram channels, YouTube channel...
โก @Priya_i
๐IT learning courses
๐All programing courses
๐Abdul bari courses
๐Ashok IT
๐Linux
๐Networking
๐Design patterns
๐Donet
๐Docker
๐Entity framework
๐Node.js
๐ASP. Net
๐Aps. Net cro
๐java
๐JavaScript
๐full stack developer
Tutorials + Books + Courses + Trainings + Workshops + Educational Resources
๐นData science
๐นPython
๐นArtificial Intelligence
๐นAWS Certified
๐นCloud
๐นBIG DATA
๐นData Analytics
๐นBI
๐นGoogle Cloud Platform
๐นIT Training
๐นMBA
๐นMachine Learning
๐นDeep Learning
๐นEthical Hacking
๐นSPSS
๐นStatistics
๐นData Base
๐นLearning language resources English , ๐ซ๐ท
๐๐๐๐๐ ๐๐๐๐๐๐๐๐ ๐๐๐ ๐๐๐๐๐๐
โก๏ธ Reconnaissance and Footprinting
โก๏ธ Network Scanning
โก๏ธ Enumeration
โก๏ธ Firewalls HIDs Honeypot
โก๏ธ Malware and Threats
โก๏ธ Mobile Platform
โก๏ธ Pentesting
โก๏ธ Sql Injection
โก๏ธ System Hacking
โก๏ธ Web Application
โก๏ธ Wireless Network
โก๏ธ Cloud Computing
โก๏ธ Web Server
โก๏ธ Social Engineering
โก๏ธ Session Hijacking
โก๏ธ Sniffing
โก๏ธ BufferOverflow
โก๏ธ Cryptography
โก๏ธ Denial Of Service
All courses (70 rupees)
Lifetime access
Contact:- @meterials_available
๐All programing courses
๐Abdul bari courses
๐Ashok IT
๐Linux
๐Networking
๐Design patterns
๐Donet
๐Docker
๐Entity framework
๐Node.js
๐ASP. Net
๐Aps. Net cro
๐java
๐JavaScript
๐full stack developer
Tutorials + Books + Courses + Trainings + Workshops + Educational Resources
๐นData science
๐นPython
๐นArtificial Intelligence
๐นAWS Certified
๐นCloud
๐นBIG DATA
๐นData Analytics
๐นBI
๐นGoogle Cloud Platform
๐นIT Training
๐นMBA
๐นMachine Learning
๐นDeep Learning
๐นEthical Hacking
๐นSPSS
๐นStatistics
๐นData Base
๐นLearning language resources English , ๐ซ๐ท
๐๐๐๐๐ ๐๐๐๐๐๐๐๐ ๐๐๐ ๐๐๐๐๐๐
โก๏ธ Reconnaissance and Footprinting
โก๏ธ Network Scanning
โก๏ธ Enumeration
โก๏ธ Firewalls HIDs Honeypot
โก๏ธ Malware and Threats
โก๏ธ Mobile Platform
โก๏ธ Pentesting
โก๏ธ Sql Injection
โก๏ธ System Hacking
โก๏ธ Web Application
โก๏ธ Wireless Network
โก๏ธ Cloud Computing
โก๏ธ Web Server
โก๏ธ Social Engineering
โก๏ธ Session Hijacking
โก๏ธ Sniffing
โก๏ธ BufferOverflow
โก๏ธ Cryptography
โก๏ธ Denial Of Service
All courses (70 rupees)
Lifetime access
Contact:- @meterials_available
๐9โค1
โถACCENTURE HIRING IS BACK
Batch upto 2024
Accenture Sending Exam Shortlisting Mails
Role : Packaged App Development Associate (PADA)
โช๏ธ Qualification: B.E/B.Tech/M.E/M.Tech, MCA, and M.Sc
โช๏ธ Batch : 2021/2022/2023 & 2024
Apply Link For (PADA)
http://www.itjobs.services
โโโโโโโโโโโโโ
Role: System and Application Services Associate (SASA)
โช๏ธ Qualification: B.Sc., BCA, BBA, B.A, B.Com
โช๏ธ Batch : 2021/2022/2023 & 2024
Apply Link For (SASA)
http://www.itjobs.services
MUST Apply
Batch upto 2024
Accenture Sending Exam Shortlisting Mails
Role : Packaged App Development Associate (PADA)
โช๏ธ Qualification: B.E/B.Tech/M.E/M.Tech, MCA, and M.Sc
โช๏ธ Batch : 2021/2022/2023 & 2024
Apply Link For (PADA)
http://www.itjobs.services
โโโโโโโโโโโโโ
Role: System and Application Services Associate (SASA)
โช๏ธ Qualification: B.Sc., BCA, BBA, B.A, B.Com
โช๏ธ Batch : 2021/2022/2023 & 2024
Apply Link For (SASA)
http://www.itjobs.services
MUST Apply
๐5
๐ฏSalesforce hiring for Interns
Office - Flexible
locations:- India - Hyderabad
time type:- Full time
End Date: January 25, 2025 (1 day left to apply)
job requisition id:- JR280041
Apply Link : www.itjobs.services
Office - Flexible
locations:- India - Hyderabad
time type:- Full time
End Date: January 25, 2025 (1 day left to apply)
job requisition id:- JR280041
Apply Link : www.itjobs.services
๐1