allcoding1
28K subscribers
2.21K photos
2 videos
73 files
842 links
Download Telegram
Capgemini is hiring!
Position: HR Analyst
Qualification: Bachelorโ€™s/ Masterโ€™s/ MBA
Salary: 4 - 6 LPA (Expected)
Experienc๏ปฟe: 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)
Experienc๏ปฟe: 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)
Experienc๏ปฟe: 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)
Experienc๏ปฟe: 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
๐Ÿ‘10
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
๐Ÿ‘2
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
๐Ÿ‘5๐Ÿ˜1
๐ŸŽฏ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
๐Ÿ‘3โค1๐Ÿ˜1
๐Ÿ”ฅ๐Ÿ”ฅ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
๐Ÿ‘3
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
๐Ÿ‘7
๐Ÿ‘2
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
๐Ÿ‘3
5_6282721806046467712.pdf
193.4 KB
125+ most asked python questions โœ