Тёмный
Coding Cha Kida
Coding Cha Kida
Coding Cha Kida
Подписаться
Welcome to "Coding Cha Kida," your coding adventure hub! 🚀 Whether you're a coding enthusiast or a curious beginner, we're here to make coding accessible and enjoyable.

About Us:
Coding Cha Kida simplifies coding concepts for all learners in a dynamic community.

What to Expect:

🌐 Tutorials: Step-by-step guides covering various programming languages and tools for all skill levels.

💻 Projects: Experience coding magic with hands-on projects, fostering creativity and practical insights.

🌟 Challenges: Sharpen problem-solving skills with engaging exercises, taking your skills to the next level.

🔧 Tips and Tricks: Stay ahead with time-saving shortcuts, best practices, and updates in the dynamic world of programming.

Interested in sharing your unique coding perspective? We welcome collaborations and guest appearances.

#CodingChaKida #CodeWithPassion #LearnToCode #CodingCommunity #ProgrammingJourney
Комментарии
@nausheenshaik5025
@nausheenshaik5025 5 дней назад
. Choose 5 and 15, the cost = ceil[(5+15)/(15-5+ 1)] = ceil[20/11] = 2, arr = [6, 20], total_cost = 6 + 2=8. it should be 5 and 16 then answer will be 8
@RixtronixLAB
@RixtronixLAB Месяц назад
Nice video, thanks :)
@codingchakida021
@codingchakida021 27 дней назад
Glad you liked it!
@kingslayer7018
@kingslayer7018 Месяц назад
Bro Kitna MCQ and Code Ata Hai Aur Code Kis Topic pe ata Hai Like Java Or DSA Or DBMS
@codingchakida021
@codingchakida021 Месяц назад
kitne hey pta nhi. but questions asked on sql joins, subquery and constraint. java inheritans function overloading and overiding, super keyword and only 2 codes on java basic arrays, string or list
@kingslayer7018
@kingslayer7018 Месяц назад
@@codingchakida021Bro Make Video On Ques Asked In Pre training Assement
@saisagar8669
@saisagar8669 Месяц назад
Hi bro,Infosys pre training me java handson ka important topics batao
@codingchakida021
@codingchakida021 Месяц назад
according to assessment i think basic of java and oops concept.
@kingslayer7018
@kingslayer7018 Месяц назад
@@codingchakida021 Bro Means Basic Mcq Hai kya assessment Me Like Theory Questions 25 Mcq Hai Shayad And 2 Java Codes For Run
@codingchakida021
@codingchakida021 Месяц назад
Theory or some code snippets mcq on inheritance, overriding, overloading, constructor and super keyword. also sql mcq are there.
@saisagar8669
@saisagar8669 Месяц назад
@@codingchakida021 hands on code kis topic se banta hi
@kingslayer7018
@kingslayer7018 Месяц назад
@@codingchakida021 Bro And What about DSA By Java Please Tell
@KishoreKumar-nk8vt
@KishoreKumar-nk8vt Месяц назад
Is this pre-training competency assessment????
@codingchakida021
@codingchakida021 Месяц назад
yes
@monilhedaoo7061
@monilhedaoo7061 Месяц назад
Hello bro can you please tell us where to practice this type of question for infosys competency exam ??
@Duke.astaroth
@Duke.astaroth Месяц назад
Bhaiya abhi tak result ke regarding koi update mila he apko?
@codingchakida021
@codingchakida021 Месяц назад
I think after submitting an assessment within 15 days the result will be out.
@Duke.astaroth
@Duke.astaroth Месяц назад
@@codingchakida021 thank you for the update.
@sak_eth
@sak_eth 2 месяца назад
My solution was this, with time complexity of O(arr.length + query.length) : import java.util.*; class Solution{ public static int[] kthOccurence(int[] arr, int X, int query[]) { int[] ans = new int[query.length]; HashMap<Integer, Integer> map = new HashMap<>(); int count = 0; for(int i = 0; i < arr.length; i++) { if(arr[i] == X){ count++; map.put(count, i); } } for(int i = 0; i < query.length; i++) { if(map.containsKey(query[i])){ ans[i] = map.get(query[i])+1; } else { ans[i] = -1; } } return ans; } public static void main(String[] args){ int[] arr = {1, 2, 20, 8, 8, 1, 2, 5, 8, 0}; int[] query = {100, 4, 2}; System.out.println(Arrays.toString(kthOccurence(arr, 8, query))); } }
@prabalsahu2286
@prabalsahu2286 2 месяца назад
Bhai iska result aaya kya
@codingchakida021
@codingchakida021 2 месяца назад
Abhi tak to nhi aaya
@ARJUNSHARMA-qx8ws
@ARJUNSHARMA-qx8ws 2 месяца назад
Wipro training assignment?? Kb ka assignment
@codingchakida021
@codingchakida021 2 месяца назад
Abhi Jo khatam hua 10 days ki training uska assessment hai
@izziechaconas9742
@izziechaconas9742 4 месяца назад
Promo`SM
@swapnil72
@swapnil72 5 месяцев назад
is this for backend?
@devdeva7580
@devdeva7580 5 месяцев назад
Bro upload new coding questions
@perfect.clicks
@perfect.clicks 5 месяцев назад
You just copied the code template. Not the code solution
@codingchakida021
@codingchakida021 5 месяцев назад
Tell me what is meant by template and code solution according to you ??
@perfect.clicks
@perfect.clicks 5 месяцев назад
Don't waste people's time
@codingchakida021
@codingchakida021 5 месяцев назад
😮😮
@nareshboddupalli4429
@nareshboddupalli4429 6 месяцев назад
Does anyone received the update from IBM after completion of the coding assessment? what's the recruitment process for the role of Software developer at Kochi, If anyone would know please do share with me?
@AdibPeerzade
@AdibPeerzade 4 месяца назад
you gon any mail from IBM after coding assessment?
@75rahulyadav65
@75rahulyadav65 6 месяцев назад
SQL vala bhi solved kar do na
@M11-z5e
@M11-z5e 6 месяцев назад
import java.util.*; public class DNS{ public static List<Integer> getMinTime(int cache_size, int cache_time, int server_time, List<String> urls){ List<Integer> timeTaken = new ArrayList<Integer>(); Queue<String> queue = new LinkedList<>(); for(String url:urls){ if(queue.contains(url)){ timeTaken.add(cache_size); } else{ if(queue.size() >= cache_size){ queue.poll(); } timeTaken.add(server_time); queue.add(url); } } return timeTaken; } public static void main(String args[]){ int cache_size = 2; int cache_time = 2; int server_time = 3; int n = 5; List<String> urls = List.of("a","b","a","c","a"); System.out.println(getMinTime(cache_size,cache_time,server_time,urls)); } }
@devikan8145
@devikan8145 6 месяцев назад
Hi ,bro can u post the entire solution either in your drive or in description so that it is convenient for us to learn
@speciallyunicorn5009
@speciallyunicorn5009 6 месяцев назад
Will the question change for every individual? Did you qualify the code assessment?
@sagarrathod5214
@sagarrathod5214 6 месяцев назад
Hi thank you bro all cases run
@hajeeramohamad7641
@hajeeramohamad7641 6 месяцев назад
What is the question? It would be useful if you can show full problem statement so that we can understand the solution
@codingchakida021
@codingchakida021 6 месяцев назад
Check description
@Mani_Devil
@Mani_Devil 6 месяцев назад
Hello can u tell me how much time this exam was?
@ashishtiwari1052
@ashishtiwari1052 6 месяцев назад
Thankyou Very Much 😇 all test cases passed
@Deadmenwalkgaming990
@Deadmenwalkgaming990 6 месяцев назад
Bhai sun code editor me List<Integer> arr hai not int[]arr
@codingchakida021
@codingchakida021 6 месяцев назад
ohh i see but in function description they are saying int arr[n]
@Deadmenwalkgaming990
@Deadmenwalkgaming990 6 месяцев назад
@@codingchakida021 but if u take int [] n then editor doesn't accept that show it will must be list
@codingchakida021
@codingchakida021 6 месяцев назад
absolutely right but logic are same you just have make some changes insted of use arr[i] you have to use arr.get(i) method @@Deadmenwalkgaming990
@Deadmenwalkgaming990
@Deadmenwalkgaming990 6 месяцев назад
@@codingchakida021 can u provide some changes include List<Integer> please
@Turkdizieng
@Turkdizieng 6 месяцев назад
Today night i have an exam can you please help me sir?
@bhushansonawane5915
@bhushansonawane5915 6 месяцев назад
Brother please solve new data engineer coding assessment If you want i can provide you questions 👍
@Turkdizieng
@Turkdizieng 6 месяцев назад
Yes please help me brother i have an exam tomorrow
@khanhero8053
@khanhero8053 6 месяцев назад
I tried running this code but it's going into an infinite loop, I checked the code multiple times but it's same. Can you please add the corrected code in the description/comment section?
@codingchakida021
@codingchakida021 6 месяцев назад
no its working fine. may be it goes in infinite loop for some test cases. i have writen this code according to sample test cases.
@manojreddy3466
@manojreddy3466 6 месяцев назад
yes the code not even running properly and giving infinite loop in output fix it
@codingchakida021
@codingchakida021 6 месяцев назад
@@manojreddy3466 please. Share testcases pictures with me on telegram
@benacq4567
@benacq4567 5 месяцев назад
Hey could you please share the testcase that was running into an infinite loop?
@Deadmenwalkgaming990
@Deadmenwalkgaming990 6 месяцев назад
Output
@Deadmenwalkgaming990
@Deadmenwalkgaming990 6 месяцев назад
Output please mention
@vendrajagadeesh-ke8vc
@vendrajagadeesh-ke8vc 6 месяцев назад
can you i give full code in description is very helpful to us it wil reduce chance to get erorrs
@vendrajagadeesh-ke8vc
@vendrajagadeesh-ke8vc 6 месяцев назад
can you i give full code in description is very helpful to us it wil reduce chance to get erorrs
@sanapatil1947
@sanapatil1947 6 месяцев назад
It giving me error
@codingchakida021
@codingchakida021 6 месяцев назад
Please write code properly don't do any spelling mistake and write only necessary part.👍 Good luck 🎉
@shivanipawar6394
@shivanipawar6394 6 месяцев назад
Tomorrow is my test..
@shivanipawar6394
@shivanipawar6394 6 месяцев назад
Can u help me sir?
@dineshbabu9701
@dineshbabu9701 6 месяцев назад
I passed only 5 test cases and Completed 1 full sql query . If any Next Process Update?
@surendharl2352
@surendharl2352 6 месяцев назад
Camera on or off bro
@MayankRaj-u8f
@MayankRaj-u8f 6 месяцев назад
Did u get any next step mail after coding round??
@ashishtiwari1052
@ashishtiwari1052 6 месяцев назад
Camera on ​@@surendharl2352
@Deadmenwalkgaming990
@Deadmenwalkgaming990 6 месяцев назад
Output
@Jeevanwesly3866
@Jeevanwesly3866 6 месяцев назад
They are giving list of lists in the public static section not like string as input List<String> tablecontent< List <String>text......like this
@codingchakida021
@codingchakida021 6 месяцев назад
Ohhh Thanks Actually I don't have any ss of input format so I written like this.
@Jeevanwesly3866
@Jeevanwesly3866 6 месяцев назад
@@codingchakida021 ok thank you Bro...
@Jeevanwesly3866
@Jeevanwesly3866 6 месяцев назад
Hello bro.. This is back end developer exam question aa?
@codingchakida021
@codingchakida021 6 месяцев назад
Yes
@Jeevanwesly3866
@Jeevanwesly3866 6 месяцев назад
@@codingchakida021 Thank you Bro
@Jeevanwesly3866
@Jeevanwesly3866 6 месяцев назад
Only one question Bro? What about second question ?
@TheNightfury16
@TheNightfury16 6 месяцев назад
sql query
@SukanyaChintala-p5r
@SukanyaChintala-p5r 6 месяцев назад
What is the last step
@SukanyaChintala-p5r
@SukanyaChintala-p5r 6 месяцев назад
What is the last line
@codingchakida021
@codingchakida021 6 месяцев назад
Thank you for your comment. I've noticed there's a problem with the end screen now. This was the last lines : - public static void main(String args[]) { int n = 5; List<Integer> potential = new ArrayList<Integer>(List.of(1,3,2,4,5)); long k = 2; int result = getPotentialOfWinner(n, potential, k); System.out.println(result); }
@SukanyaChintala-p5r
@SukanyaChintala-p5r 6 месяцев назад
Thank you
@mp41music7
@mp41music7 6 месяцев назад
Out of 2 questions i am able to complete 1 that is SQL question and half coding questions is there any chance of getting further information
@shreyakondalkar-ls1ff
@shreyakondalkar-ls1ff 6 месяцев назад
Get any reply
@mp41music7
@mp41music7 6 месяцев назад
Not now from IBM
@beastman1927
@beastman1927 6 месяцев назад
Please give new question asked now in IBM
@Srini772
@Srini772 7 месяцев назад
Hii bro can you please give the code in comment section
@souravkashyap5366
@souravkashyap5366 7 месяцев назад
Hi , is this for a backend developer role ? and after clearing both coding and SQL test how many days does it usually take to receive email regarding next process
@MayankRaj-u8f
@MayankRaj-u8f 6 месяцев назад
Did u get the next step mail.... I also done the coding round on 12 march but till date I didn't get any mail for next step. Plz reply how much time it will take?
@onej3799
@onej3799 7 месяцев назад
hi, can you explain line 12 - 14 please?
@codingchakida021
@codingchakida021 7 месяцев назад
In this program the hacker starts hacking from the kth index. If the kth index element is negative then start from the previous element. I have written k-1 because arrays indexing starts from 0 not 1 . This if condition executed when kth element is negative and assigns previous element index to start variable.
@onej3799
@onej3799 7 месяцев назад
@@codingchakida021 now I got it. Thank you very much :)
@onej3799
@onej3799 7 месяцев назад
hi, can you please provide the question too?
@codingchakida021
@codingchakida021 7 месяцев назад
hey i have updated question in description 👍
@abbithaayyappan908
@abbithaayyappan908 7 месяцев назад
i got 7/15 test cases passed ,it will be selected or not any one guess?? Bro
@sravanisravs1212
@sravanisravs1212 7 месяцев назад
Upload codes for ibm aws full stack developer
@codingchakida021
@codingchakida021 7 месяцев назад
if you have questions pls share on grp
@shashwatsahu5639
@shashwatsahu5639 7 месяцев назад
Yes bro i want that plzz share
@PashupatiBansode
@PashupatiBansode 7 месяцев назад
thanks