allcoding1_official
101K subscribers
775 photos
2 videos
73 files
798 links
Download Telegram
Check out these free resources from Microsoft:

1. [Azure]
@itjobsservices

2. [Microsoft Cloud Blog]
@itjobsservices

3. [Visual Studio Code]
@itjobsservices

4. [Microsoft DevBlogs]
@itjobsservices

5. [Microsoft Developer]
@itjobsservices

6. [Microsoft Learn]
@itjobsservices

7. [MSDN Profile]
@itjobsservices

8. [Technet Profile]
@itjobsservices

9. [Microsoft Startups]
@itjobsservices

10.[TechCommunity]
@itjobsservices
๐Ÿ‘8
Cisco Hiring Software Development, Test and Automation Engineer

Graduation Year: 2022 / 2023 / 2024

Salary: 15 LPA
Location: Bangalore

Apply Now:- https://jobs.cisco.com/jobs/ProjectDetail/Software-Development-Test-and-Automation-Engineer-Wireless-Meraki/1431162
๐Ÿ‘2
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
๐Ÿ‘5โค1
๐€๐–๐’ ๐…๐‘๐„๐„ ๐‚๐ž๐ซ๐ญ๐ข๐Ÿ๐ข๐œ๐š๐ญ๐ข๐จ๐ง ๐‚๐จ๐ฎ๐ซ๐ฌ๐ž

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
ANZ is hiring Software Engineer

2022, 2023, 2024 gards eligible
Location: Bangalore

Apply now :-
https://careers.anz.com/job/Bengaluru-Software-Engineer/1059263066/
โค1๐Ÿ‘1
Wipro exam questions send
โค2๐Ÿ‘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
๐Ÿ‘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
๐Ÿ‘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
๐Ÿ‘3
4) D
5) B
6) C
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();
}
}
โค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();
}
}
๐Ÿ‘4
if you want to promotion.

Like a Instagram account, telegram channels, YouTube channel...

โžก @Priya_i
โ–ถ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
๐Ÿ‘6
๐ŸŽฏ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
๐Ÿ‘1
W117