Posts

Now is the Time to Learn Functional Programming !

Image
What is Functional Programming? Functional programming (often abbreviated FP) is the process of building software by composing pure functions, avoiding shared state, mutable data, and side-effects. Functional programming is declarative rather than imperative, and application state flows through pure functions. Contrast with object oriented programming, where application state is usually shared and collocated with methods in objects. It is a declarative programming paradigm, which means programming is done with expressions. In functional code, the output value of a function depends only on the arguments that are input to the function, so calling a function f twice with the same value for an argument x will produce the same result f(x) each time. Functional code tends to be more concise, more predictable, and easier to test than imperative or object oriented code but if you’re unfamiliar with it and the common patterns associated with it, functional code can also seem a lot more dens...

Why companies hiring Interns, build their BRAND faster?

Image
Why should company hire Intern? Increase productivity:  Speaking of additional manpower, setting up an internship program allows you to take advantage of short-term support . The extra sets of hands help your employees be more productive, prevent them from becoming overburdened by side projects, as well as free them up to accomplish more creative tasks or those where higher-level, strategic thinking or expertise is required. Take advantage of low-cost labor:  Interns are an inexpensive resource. Their salaries are significantly lower than staff employees,  and  you aren't obligated to pay unemployment or a severance package should you not hire them on full time. Moreover, while their wage requirements are modest, they're among the most highly motivated members of the workforce. Benefit your small business:  When looking for full time work, the top talent often go for big-name businesses. But when seeking internships,  learning  is the l...

Test Your SQL Basics - Part_3

Manipulating Data Questions 1. What all operations can MERGE statement perform in SQL? INSERT DELETE GROUP BY None of the above 2.Which of following commands is a DDL (Data Definition Language) command but is often considered along with DML commands? DELETE INSERT TRUNCATE None of the above 3. What among the following is a TRUNCATE statement equivalent to? (Choose the most suitable answer) To a DELETE statement To an UPDATE statement A DELETE statement without a WHERE clause None of the above 4.Which of the following situations indicate that a DML operation has taken place? When new rows are added to a table When two queries are combined When a table is truncated None of the above 5.What is true about the keyword VALUES in INSERT statements? VALUES can add multiple rows at a time during the INSERT VALUES can add only 100 rows at a time during the INSERT VALUES is mandatory to be used if we use the keyword INSERT VALUES add only one row at a time 6. Which of the fol...