ch
Feedback
Coder Baba

Coder Baba

前往频道在 Telegram

Everything about programming for beginners. 1 and only official telegram channel of CODERBABA India. Content: .NET Developer, Programming (ASP. NET, VB. NET, C#, SQL Server), & Projects follow me https://linktr.ee/coderbaba *Programming *Coding *Note

显示更多
2 312
订阅者
-124 小时
-67
-3030
帖子存档
+3
1.png2.66 KB

photo content
+6

____________________||——————————————————————||___________________________ Beginners course for ASP .NET Students. Who are interested Pls join our online classes from 28th Aug 2022. Details: 1. Online classes only. 2. Daily 1 hour class. 3. Duration: 35 days. 4. Fee Rs.999 5. We will provide Notes also. if you interested message me on Instagram @coderbaba

wipro Interview Questions asked 1.Introduction 2.why Wipro 3. Why non IT it IT 4. fastest skill learnt in short time 5. How can you make strangers to friends so quickly? 6. Explain a situation that you made a mistake and solved it after realising it. 7. As a team member how you solve the problems in a team 8. biggest responsibility of team leader 9. Biggest achievement in your life. 10. Any backlogs 11. Relocate 12. Bond awareness 13. Family background 14. Gap in education 15. Are you a open minded?? 16. Any questions for me..I'm done my side.!!!!

IBM INTERVIEW EXPERIENCE : My interview experience: -Show id proof -Introduce yourself -Tell about your projects -Role and responsibility in project -What languages do u know? -What is constructor in python -Diff between list and tuple -Why did u choose flask framework over django? -Difficulties faced while making project -Name three subjects that you studied in college -Asked about relocate and rotational shift - Difference between c and c++ -Any other language you known Subscribe https://www.youtube.com/coderbaba

NTT DATA Interview Experience 1) Introduce youself? 2) Tell me about your college! 3) Rate youself on the scale of 1–5(C knowlege) 4) write a number pattern generation program! 5) It’s ok! What is a pointer? Types? 6) Tell me about your mini project 7) Have you planned you major project? 8) Gave me program and asked me to find the o/p! 9) Let me test your analytical and logical skills! Gave me a puzzle 10) What is an operating system? Uses? 11) What is Kernel? 12) What is processor and Describe its operation? 13) What is a circuit?( ECE) 14) Why should we hire you being very poor in technical? subscribe https://www.youtube.com/coderbaba

EPAM Interview Experience - 2022 1. Tell me about yourself. 2. Can you tell us about the last project you worked on? 3. Tell us about a time something went wrong in a project you were managing. 4. How do you prioritize tasks in a project? 5. What was your most successful project? 6. What’s your experience with budget management? 7. How would you describe a project plan? 8. How would you create an environment of 9. What tools do you use to plan a project? 10. Describe your experience in this industry. 11. One of your team members is asking for more time 12. How would you deal with a difficult stakeholder? follow @coder_baba

TECH MAHINDRA Interview - 2022 Online TR : Explain the Project ! Tell me about your family ! Why I have to pay for you? Why IT ? (As I am from ECE) Asked like " I have only one job offer , can you sacrifice it to your friend rather than to you?" Online HR : Tell me about yourself and about project apart from the technical part What do you know about Tech Mahindra? Are you willing to accept the 2 years service agreement? Can you work for more hours? Ready to relocate? At present any Offers? follow @coder_baba

9-If Retry Count > 3 then (Invalid credential Attempts) User Account will be locked automatically and returns "Your account has been locked by invalid credential attempts". 10-If Email Id and Password matched against Database then Retry count = 0 (Clears previous invalid attempts) returns "Logged Successfully" If Role is Admin then Populate Admin Form 11-else If Role is Employee then Populate Employee Form.

Advanced Login System Create Stored Procedures in MS SQL Server 2012 1- create a stored procedure with name "spAuthentication" Go to, DBLoginSystem ->> Programmability ->> Stored Procedures Right Click and Create new Stored Procedure 2-You will see pre-defined template as shown below.Just delete everthing in pre-defined template, copy the follwing script and paste it. 3-SQL Script: Store Procedure Authentication ——————————— USE [DBLoginSystem] GO /****** Object: StoredProcedure [dbo].[spAuthentication] Script Date: 01-12-2018 8.58.15 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE PROCEDURE [dbo].[spAuthentication] (@Email varchar(50), @Password varchar(50), @Result varchar(100) OUTPUT, @Role varchar(50) OUTPUT, @userName varchar(50) OUTPUT) AS BEGIN DECLARE @isActivated bit, @isReAttempLoked bit, @Count int, @RetryCount int, @RoleId int, @UserInfo varchar(50); SET NOCOUNT ON; IF EXISTS (SELECT * FROM Users WHERE Email = @Email) BEGIN --select @Result = 'Valid Credential'; SELECT @isActivated = isActivated, @RoleID = RoleID, @UserInfo = UserName FROM Users WHERE Email = @Email IF (@isActivated = 0) BEGIN SELECT @Result = 'Your Account is locked by Admin.', @Role = '', @userName = ''; END ELSE BEGIN --select @Result = 'Unlocked'; SELECT @isReAttempLoked = isLocked FROM Users WHERE Email = @Email IF (@isReAttempLoked = 1) BEGIN SELECT @Result = 'Account has been locked by invalid credential attempt.', @Role = '', @userName = ''; END ELSE BEGIN SELECT @Count = COUNT(Email) FROM Users WHERE ([Email] = @Email) AND [Password] = @Password IF (@Count = 1) BEGIN -- Reset RetryAttempts UPDATE Users SET RetryAttempts = 0, LastLogin = GETDATE() WHERE Email = @Email SELECT @Result = 'Logged Successfully!', @Role = (SELECT RoleName FROM Roles WHERE RoleID = @RoleID), @userName = @UserInfo; END ELSE BEGIN -- If a match is not found SELECT @RetryCount = ISNULL(RetryAttempts, 0) FROM Users WHERE Email = @Email SET @RetryCount = @RetryCount + 1 IF (@RetryCount <= 3) BEGIN -- If re-try attempts are not completed UPDATE Users SET RetryAttempts = @RetryCount WHERE Email = @Email SELECT @Result = 'Invalid Password, No of attemps ' + CONVERT(varchar(50), @RetryCount) + ' out of 3.', @Role = '', @userName = ''; END ELSE BEGIN -- If re-try attempts are completed UPDATE Users SET RetryAttempts = @RetryCount, IsLocked = 1, LockedDateTime = GETDATE() WHERE Email = @Email SELECT @Result = 'Your account is locked.', @Role = '', @userName = ''; END END END END END ELSE BEGIN SELECT @Result = 'Invalid email Id.', @Role = '', @userName = ''; END END GO —————————————————————————-Subscribe @coderbaba 4- run script 5-Check Email against database if false returns "Invalid Email Id". 6-If user account is blocked then it returns "Your account has been blocked by Admin. Please contact Administrator". 7-If user account is locked due to invalid credential attempts then it returns "Account has been locked by invalid credential attempts." 8-If Email Id and Password not matched against Database then Retry count increase by 1

AnimatedSticker.tgs0.25 KB

👆👆

Top 40 SASS & LESS Interview Questions & Answers.pdf5.28 KB

What is Deep Learning.pdf3.45 KB

What is Artificial Intelligence.pdf3.66 KB

👆 Data Structures notes 👆

photo content
+8

-: Top 50 Java interview questions :- #1) What is JAVA? #2) What are the features of JAVA? #3) How does Java enable high performance? #4) Name the Java IDE’s? #5) What do you mean by Constructor? #6) What is meant by the Local variable and the Instance variable? #7) What is a Class? #8) What is an Object? #9)What are the OOPs concepts? #10) What is Inheritance? #11) What is Encapsulation? 12) What is Polymorphism? #13) What is meant by Method Overriding? #14) What is meant by Overloading? #15) What is meant by Interface? #16) What is meant by Abstract class? #17) Difference between Array and Array List. #18) Difference between String, String Builder, and String Buffer. #19) Explain about Public and Private access specifiers. #20) Difference between Default and Protected access specifiers. #21) Difference between HashMap and HashTable. #22) Difference between HashSet and TreeSet. #23) Difference between Abstract class and Interface. #24) What is the meaning of Collections in Java? #25) What are all the Classes and Interfaces that are available in the collections? 26) What is meant by Ordered and Sorted in collections? 27) Explain the different lists available in the collection. 28) Explain about Set and their types in a collection. 29) Explain about Map and its types. 30) Explain the Priority Queue. 31) What is meant by Exception? 32) What are the types of Exceptions? 33) What are the different ways to handle exceptions? 34) What are the advantages of Exception handling? 35) What are the Exception handling keywords in Java? 36) Explain about Exception Propagation. #37) What is the final keyword in Java? 38) What is a Thread? 39) How do you make a thread in Java? 40) Explain about join () method. 41) What does the yield method of the Thread class do? 42) Explain about wait () method. #43) Difference between notify() method and notifyAll() method in Java. #44) How to stop a thread in java? Explain about sleep () method in a thread? #45) When to use the Runnable interface Vs Thread class in Java? 46) Difference between start() and run() method of thread class. 47) What is Multi-threading? 48) Explain the thread life cycle in Java. 49) What is Synchronization? 50) What is the disadvantage of Synchronization?

C Programming Interview Questions ----------------------------------------- Q #1) What are the key features in the C programming language? Q #2) What are the basic data types associated with C? Q #3) What is the description for syntax errors? Q #4) What is the process to create increment and decrement statement in C? Q #5) What are reserved words with a programming language? Q #6) What is the explanation for the dangling pointer in C? Q #7) Describe static function with its usage? Q #8) What is the difference between abs() and fabs() functions? Q #9) Describe Wild Pointers in C? Q #10) What is the difference between ++a and a++? Q #11) Describe the difference between = and == symbols in C programming? Q #12) What is the explanation for prototype function in C? Q #13) What is the explanation for the cyclic nature of data types in C? Q #14) Describe the header file and its usage in C programming? Q #15) There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affects when debugging? Q #16) What are the general description for loop statements and available loop types in C? Q #17) What is a nested loop? Q #18) What is the general form of function in C? Q #19) What is a pointer on a pointer in C programming language? Q #20) What are the valid places to have keyword “Break”? Q #21) What is the behavioral difference when the header file is included in double-quotes (“”) and angular braces (<>)? Q #22) What is a sequential access file? Q #23) What is the method to save data in a stack data structure type? Q #24) What is the significance of C program algorithms? Q #25) What is the correct code to have the following output in C using nested for loop? Q #26) Explain the use of function toupper() with an example code? Q #27) What is the code in a while loop that returns the output of the given code? Q #28) Select the incorrect operator form in the following list(== , <> , >= , <=) and what is the reason for the answer? Q #29) Is it possible to use curly brackets ({}) to enclose a single line code in C program? Q #30) Describe the modifier in C? Q #31) What are the modifiers available in C programming language? Q #32) What is the process to generate random numbers in C programming language? Q #33) Describe the newline escape sequence with a sample program? Q #34) Is that possible to store 32768 in an int data type variable? Q #35) Is there any possibility to create a customized header file with C programming language? Q #36) Describe dynamic data structure in C programming language? Q #37) Is that possible to add pointers to each other? Q #38) What is indirection? Q #39) What are the ways to a null pointer that can be used in the C programming language? Q #40) What is the explanation for modular programming? follow @Coderbaba

JavaScript Interview Questions for Freshers 1. What are the different data types present in javascript? 2. Explain Hoisting in JavaScript. 3. Why do we use the word “debugger” in JavaScript? 4. Difference between “ == “ and “ === “ operators. 5. Difference between var and let keyword in JavaScript. 6. Explain Implicit Type Coercion in JavaScript. 7. Is JavaScript a statically typed or a dynamically typed language? 8. What is NaN property in JavaScript? 9. Explain passed by value and passed by reference. 10. What is an Immediately Invoked Function in JavaScript? 11. What do you mean by strict mode in JavaScript and characteristics of JavaScript strict-mode? 12. Explain Higher Order Functions in JavaScript. 13. Explain “this” keyword. 14. What do you mean by Self Invoking Functions? 15. Explain call(), apply() and, bind() methods. 16. What is the difference between exec () and test () methods in JavaScript? 17. What is currying in JavaScript? 18. What are some advantages of using External JavaScript? 19. Explain Scope and Scope Chain in JavaScript. 20. Explain Closures in JavaScript. 21. Mention some advantages of JavaScript. 22. What are object prototypes? 23. What are callbacks? 24. What are the types of errors in JavaScript? 25. What is memorization? 26. What is recursion in a programming language? 27. What is the use of a constructor function in JavaScript? 28. What is DOM? 29. Which method is used to retrieve a character from a certain index? 30. What do you mean by BOM?