Menu

Friday 17 February 2023

Agile

In a team that follows agile, how would a team member know what others are working on? Select two that apply.

A.The Product Owner and the Facilitator are responsible for maintaining work transparency.

B.The team should have a daily sync-up.

C.One team member must play the role of coordinator and should share daily
status for each member.

D.They may refer to the backlog maintained in a tool (Jira, Prime, and so on).


Ans: B D


Survey Q, Non-scoring: What role are you playing in your team?



A. Product Owner/Product Specialist
B. Team Facilitator/Scrum Master/Release Train Engineer/Coach
C. Developer/Engineer/DevOps Engineer/Automation Engineer/Rel lability Engineer
D. Manual Tester/L1 support/L2 support
E. Q Visual Designer/lnteractive Designer/UI Expert
F. Support function


Ans: C


After a team member writes a piece or code, how can she ensure that It works, before checking it in?

A. Through peer reviews

B. Through functional testing.
C. Through unit testing


Ans: C


What is an efficient way to ensure that. code working as per the acceptance criteria/business requirements?


A. Through automated functional test

B. Through automated regression test

C. Through automated unit tests.

D. Through automated smoke tests.


Ans: A







Wednesday 2 March 2016

C program to swap two numbers

#include <stdio.h>
#include<conio.h>

void main()
{
   int tval , a, b;

   printf("Enter the first value :\n");
   scanf("%d", &a);
   printf("Enter the second value :\n");
   scanf("%d", &b);

   printf("Before Swapping values are\n a = %d\n b= %d\n",a,b);

   tval = a;
   a    = b;
   b    = tval;

   printf("After Swapping\na = %d\nb = %d\n",a,b);

   getch();
}

Factorial Program in C

#include <stdio.h>
#include<conio.h>
void main()
{
  int numbr, fac = 1, k ;

  printf("Enter a number \n");
  scanf("%d", &numbr);

  for (k = 1; k <= numbr; k++)
{  
   fac = fac * k;
}
  printf("Factorial of %d is  %d\n", numbr, fac);

  getch();
}

C Program for Fibonacci Series

#include<stdio.h>
#include<conio.h>
void main()
{
   int num, a = 0, b = 1, t, c;

   printf("Enter the number of terms\n");
   scanf("%d",&num);

   printf("Fibonacci series upto first %d terms :-\n",num);

   for ( c = 0 ; c < num ; c++ )
   {
      if ( c <= 1 )
         t = c;
      else
      {
         t = a + b;
         a = b;
         b = t;
      }
      printf("%d\n",t);
   }

   getch();
}

C Program to use printf statement

#include<conio.h>
#include<stdio.h>
void main()
{
 printf("Hello Everyone"); // Here we are using printf statement
getch();
}

Sunday 21 February 2016

What is SEO ?

SEO stands for Search Engine Optimization. SEO is the process or activity of optimizing website or web pages  in order to make them available at higher position in search results of search engines. Some of worlds powerful search engines are Google, Yahoo, and Bing.

Friday 12 February 2016

Java Factorial Program using Recursion

class FactorialRecusionProgramExample{

static int facto(int a){  
  if (a == 0)  
    return 1;  
  else  
    return(a * facto(a-1));  
 }  
 public static void main(String args[]){
  int i,f=1;
  int num=5;//Number for which we are calculating factorial  
  f = facto(num);  
  System.out.println("Factorial of "+num+" is: "+f);  
 }