Deloitte Coding Questions and Answers 2023-24

Deloitte Coding Questions and Answers 2023-24

Prep Insta

11 месяцев назад

22,810 Просмотров

Deloitte Coding Questions and Answers 2023-24

Deloitte Online Course: https://bit.ly/Deloitte-Online-Course
Use "YOUTUBE" Coupon code for the maximum discount. (Lowest Prices Ever)

Deloitte Placement Papers and Previous Year Papers: https://prepinsta.com/deloitte/
Deloitte Coding: https://prepinsta.com/deloitte/coding-questions-and-answers/

For Updates on Placements Join :

1. Instagram - https://prepinsta.com/instagram/
2. WhatsApp - https://prepinsta.com/whatsapp/
3. Telegram - https://prepinsta.com/telegram/
4. LinkedIn - https://in.linkedin.com/school/prepinsta
5. Discord - https://prepinsta.com/discord/

Follow our Mentors -
1.Atulya Kaushik - https://www.instagram.com/atulya.kaus...
2.Manish Agarwal - https://www.instagram.com/1manish_aga...
3.Aashay Mishra - https://www.instagram.com/_aashaymishra/

Тэги:

#deloitte #deloittecoding #deloittecodingquestions #deloittequestions #deloittepreparation #deloitte2023and2024 #deloitteoncampus
Ссылки и html тэги не поддерживаются


Комментарии:

@Manu-jn6lh
@Manu-jn6lh - 28.10.2023 05:18

Great video! I would recommend getting a microphone, because sometimes it was difficult to hear/understand what you were saying.

Ответить
@user-jq2bj8mi9q
@user-jq2bj8mi9q - 04.10.2023 11:26

import java.util.*;

public class class_monitor {
public static void main(String[] args) {
try (Scanner s = new Scanner(System.in)) {
int N = s.nextInt();
int a[] = new int[N];
for(int i=0;i<N;i++){
a[i]=s.nextInt();
}
int c=0;
int p=a[0];

for(int i=1;i<N;i++){
if(p>a[i]) c++;
p=a[i];
}
System.out.println(c);
}
}
}

Ответить
@dpcreations2776
@dpcreations2776 - 03.09.2023 08:22

If you don't mind please do videos on English communication skills ❤❤

Ответить
@dpcreations2776
@dpcreations2776 - 03.09.2023 08:19

Tq for your supporting

Ответить
@SirFarkade
@SirFarkade - 27.08.2023 10:08

Thank You for such freemium content!

Ответить
@shashwatsandilya6225
@shashwatsandilya6225 - 26.08.2023 20:44

The compiler was not good taking lot of time

Ответить
@mr_mnc8533
@mr_mnc8533 - 26.08.2023 18:47

n=int(input())
ranks=list(map(int,input().split()))
cuts = sum(ranks[i+1] < ranks[i] for i in range(n-1))
print(cuts)

if you fancy one-liners here is one😁

Ответить
@staywithmeforever
@staywithmeforever - 26.08.2023 18:37

price of prime?

Ответить
@varunyadav3946
@varunyadav3946 - 26.08.2023 18:19

I am in cbit and I got placed in Deloitte this year .. I got the corona virus question and another question.. another question was finding max number of possible pairs .. reply if you want the answer 😅

Ответить
@lokesh2003
@lokesh2003 - 26.08.2023 18:01

how much time did u actually took to solve this 2 questions and also how is your approach?

Ответить
@naiwritmullick9918
@naiwritmullick9918 - 26.08.2023 17:24

2nd question is basically finding the elements greater than all its prior elements. Comparing the local maxima with the next number ensures that. Well explained!!!

Ответить
@csit-a-07-aniketnayek65
@csit-a-07-aniketnayek65 - 26.08.2023 17:18

Great explanation

Ответить
@shivampandey1421
@shivampandey1421 - 26.08.2023 17:13

In 2 q the no they cut are 4,3,2 and 1 is the least rank so this will remain as the least rank in array,and will not be updated further, therfore the count comes 3, as minimum is updated 3 time for 4,3,2

Ответить