allcoding1
28.9K subscribers
2.19K photos
2 videos
70 files
817 links
Download Telegram
Capgemini is hiring!
Position: HR Analyst
Qualification: Bachelor’s/ Master’s/ MBA
Salary: 4 - 6 LPA (Expected)
Experience: Freshers/ Experienced
Location: Bangalore; Kolkata, India

📌Apply Now: https://careers.capgemini.com/job/Bangalore-HR-Operational-Excellence-Analyst-A/1134863701/

https://careers.capgemini.com/job/Kolkata-HR-Global-Shared-Services-Analyst-A/1153641201/

JPMorgan is hiring!
Position: Business Analyst
Qualification: Bachelor’s/ Master’s Degree
Salary: 7 - 10 LPA (Expected)
Experience: Freshers/ Experienced
Location: Bangalore, India

📌Apply Now: https://jpmc.fa.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1001/job/210587305?utm_medium=jobboard&utm_source=LinkedIn

𝗚𝗲𝗻𝗽𝗮𝗰𝘁 𝗥𝗲𝗰𝗿𝘂𝗶𝘁𝗺𝗲𝗻𝘁 𝗗𝗿𝗶𝘃𝗲!
Position: Associate, Data Analyst
Qualification: Bachelor’s/ Master’s Degree
Salary: 5 - 10 LPA (Expected)
Experience: Freshers/ Experienced
Location: Bangalore, India

📌Apply Now: https://genpact.taleo.net/careersection/sgy_external_career_section/jobdetail.ftl?job=ANA015927&tz=GMT%2B00%3A00&tzname=UTC

Moody’s is hiring!
Position: Data Analyst
Qualification: Bachelor’s/ Master’s Degree
Salary: Up to 6.8 LPA (Expected)
Experience: Freshers (0 - 2 Years)
Location: Bangalore, India

📌Apply Now: https://careers.moodys.com/financial-data-analyst/job/28786321

𝐅𝐥𝐢𝐩𝐤𝐚𝐫𝐭 𝐈𝐧𝐭𝐞𝐫𝐧𝐬𝐡𝐢𝐩 𝐏𝐫𝐨𝐠𝐫𝐚𝐦!
Position: Intern
Qualifications: Bachelor’s/ Master’s degree
Salary: ₹42,954 Per Month (Expected)
Experience: Freshers
Location: Bangalore, India

📌Apply Now: https://www.linkedin.com/jobs/view/4120519442



Honeywell Hiring !!
Role - C++ Developer
Exp - fresher

Link - https://careers.honeywell.com/us/en/job/HONEUSREQ475604EXTERNALENUS/C-Developer


Gartner is hiring!
Position: Associate Software Engineer
Qualifications: Graduate or Postgraduate degree
Experience: 0 - 9 (Months)
Location: Gurgaon, India

📌Apply Now: https://jobs.gartner.com/jobs/job/96838-associate-software-engineer/

Tech Mahindra hiring for 2024 passout batch.

BE/BTech/Msc and MCA are eligible.

Last date of registration is January 14th.

Link : https://registration.techmahindra.com/

Company Name : Deloitte
Role : Analyst Trainee - via NLA
Batch : 2025 passouts
BE/BTech/ME/MTech/MCA and MSc

CTC : 4 LPA

Link : https://usrecruiting.deloitte.com/national-level-assessment-deloitte-us-india-offices#subpage/gateway2


📌Diebold Nixdorf is hiring Associate Software Engineer

Experience: 0-2 yrs

Expected Salary: 6-12 LPA

💻Apply Link: https://eeug.fa.us6.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX/job/14293

https://www.linkedin.com/posts/mitrahsoft_softwaredevelopers-softwareengineers-maduraijobs-activity-7283447614811860992-5H5s/

Tamil Candidates are preferred

https://app.pyjamahr.com/careers?company=ProcDNA%2520Analytics%2520Pvt%2520Ltd&job_id=180988&company_uuid=F7515E3CB7&utm_medium=internal&shared_at=1736241409742

https://deloittehacksplosion.hirepro.in/#details

2025 and 2026 batch

https://www.linkedin.com/posts/sukant-singh-807921120_backend-intern-activity-7283470732905402368-UGo1?utm_source=share&utm_medium=member_android

https://www.linkedin.com/posts/shardul-deshpande-01_qualcomm-internship-summer2025-activity-7284024100916809730-O3-6?utm_source=share&utm_medium=member_desktop

Summer 2025 Internship Opportunity 🚀

The Chipset Power Team at Qualcomm is hiring! We’re looking for two MS or PhD students in CS, CE, or EE (graduating by 2026) with a strong understanding of computer architecture and working knowledge of Python.

Join us to work on cutting-edge technologies and make an impact in the semiconductor industry. If this sounds like you, or someone you know, reach out or share this post!

https://www.masycoda.com/jobs/interns-for-6-months/

https://cutshort.io/job/Software-Developer-Intern-Grad-2025-Pune-Hummingbird-Web-Solutions-Private-Limited-iWNQ486r?utm_source=linkedin-feed&utm_medium=xml&utm_content=job-posting&applicationsource=linkedin-feed

2025 Batch
Wipro exam questions send
Forwarded from allcoding1_official
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
Forwarded from allcoding1_official
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
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
🎯Software Dev Engineer, Amazon University Talent Acquisition


Location:- IND, KA, Bengaluru
Job role:- Software Development
BASIC QUALIFICATIONS
- Bachelor's degree or equivalent

Apply Now:- www.itjobs.services
🔥🔥MSI Thin 15 Intel Core i5 12th Gen 12450H - (16 GB/512 GB SSD/Windows 11 Home/4 GB Graphics/NVIDIA GeForce RTX 3050/144 Hz)

🎁 Deal Price : ₹45,790

Buy Here : https://fkrt.co/0AshyW

💥 Bank Offer : ₹6,200 Instant discount On HDFC Credit Card EMI Txn

⚡️⚡️1,000 Off With Using 100 SuperCoins
TCS NQT Mass Hiring for Freshers:

Graduation Year: 2025

Eligibility: BTech / BE / MTech / ME / MCA / MSc / MS

Job Roles:
Ninja - 3.36 LPA
Digital - 7 LPA
Prime - 9 LPA

Apply Link: https://www.tcs.com/careers/india/tcs-fresher-hiring-nqt-batch-2025



Registration End Date: 23rd March
Test Date: 15th March onwards
Zoho Off Campus Hiring Announced For Freshers and Exp as Software Developer

✓ Apply Link:
https://careers.zohocorp.com/forms/fcc89b5ebd373d598e0224d10f2199d1df76b48507184e42d200f0fd7de96aff

✓ Job Role: Software Developer

✓ Experience: 0 to 3 Year

✓Last Date: 7 March
5_6282721806046467712.pdf
193.4 KB
125+ most asked python questions