Posts

Showing posts from March, 2018

English Course (Day 2)

In our last session we had learnt about "simple Present tense".I hope that will have helped you.So here we are going to start  our 2nd session "simple past tense". As we had planned we have to segregate it into 2 parts.Then only we can able to learn this concept clearly.So here we go 1.Answer sentence 2.Question sentence 1.Answer Sentence We can further classify this as 2 parts. i)Positive sentence ii)Negative sentence           i).Positive Sentence                In positive sentence we can directly use the past form of the verb.We don't need to get                         confused as like simple Present.So we need to know the past form of verbs are essential.             (e.g)              I worked       ...

English course (Day1)

As I had told  in my last article ,we have to classify each tense as 2 types of sentences.Then only we can understand the usages clearly.So in this article I'm going to take first part "Simple Present". We have to classify this as 2 parts as below, 1.Answer sentence 2.Question sentence 1.Answer sentence                   We can further classify this as 2 parts.                         i)Positive sentence                         ii)Negative sentence   i)Positive sentence *I/WE/YOU/THEY + simple verb (e.g) #I/WE/YOU/THEY + work *HE/SHE/IT+verb with 's' form (e.g) #HE/SHE/IT+works #HE/SHE/IT+ studies #life changes everyday. ii).Negative sentences *I/WE/YOU/THEY + don't (e.g) #I/WE/YOU/THEY + don't work *HE/SHE/IT+doesn't (e.g) #HE/SHE/IT+doesn't work #Time doesn't w...

Ways for Learning English Grammar

We have 3 main categories in English as like 1.Present 2.Past 3.Future Each of the above further classified into 4 sub categories as like 1.Simple 2.Continuous 3.Perfect 4.Perfect continuous Obviously we have 12 varieties of tenses in English. If we allocate 15 days to complete this, we may complete almost near. But we need to understand the uses of the each is essentially. So take 1 part per day.We have to focus on 3 main areas namely, *Positive sentence *Negative sentence *Question making We must concentrate these 3 areas vividly for get a good fluency. For instance I give a sample strategy for this, Take simple Present today. What are the things we have to focus here, *Positive (e.g) I /we/you/They wake up early every day. He/She/It wakes up early every day *Negative I /we/you/They do not wake up early every day. He/She/It does not wake up early every day *Question(Yes/No) Do I /we/you/They wake up early every day? Does He/She/It wake up early every day? ...

Find the procedures which have the specific text in sql

The below code will display all the procedures which have the specific text.Here i have used the text "how are you". SELECT OBJECT_NAME(id)     FROM SYSCOMMENTS     WHERE text LIKE '% how are you %'     AND OBJECTPROPERTY(id, 'IsProcedure') = 1     GROUP BY OBJECT_NAME(id)

Bootstrap tab change event using Jquery

In this lesson we are going to learn about the Change event of  "bootstrap tab" which is useful to load dynamic data instead of loading iterative loops for certain time intervals.We may reduce this by using tabs if we have . If you are using Bootstrap with Jquery then it will definitely be useful . Jquery $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) { alert('Hello,I"m changing'); }); HTML <div class="tab" role="tabpanel"> <ul class="nav nav-tabs" role="tablist"> <li role="presentation" class="active"> <a href="#1" aria-controls="1" role="tab" data-toggle="tab">Hello</a></li> <li role="presentation"><a href="#2" aria-controls="2" role="tab" data-toggle="tab">How are you?</a></li> </ul> ...

While loop in Sql

In this lesson we are going to learn,how to create while loop in sql.Loops help us to do iterative work very effectively.So we need to know about it. While Loop Syntax  while(condition   ) begin increment end Example declare @cnt int,@test int                set @ test  =10                set @cnt =2         while(@cnt <=@ test  )                begin                    select @cnt,@ test                     set @cnt =@cnt+1           end It looks very simple but often we are confusing to do it.

Loops in Jquery

In this lesson we are going to see about the basic loops available in jquery.It  is essential to know the basic control structures in any language before start. Loops normally execute based on the certain conditions.They will exit when the condition fails. 1.For Loop       var  test =[1,2,3]; for (var i=0;i<test.length;i++) { alert(test[i]); } 2.For In Loop var test =[1,2,3]; for(var i in test) { alert(test[i]); } 3.While Loop var test =[1,2,3]; var i =0; while(i<test.length) { alert(test[i]); i++; } 4.Do while Loop var test =[1,2,3]; var i =0; do { alert(test[i]); i++; }while(i<test.length); 5.Each Loop var test =[1,2,3]; $.each(test,function(index,value) { alert(value); }); These are the most common jquery loops.It will help us to do our work more effectively.I hope it will be helpful for you.